Skip to content

Commit c16a5f3

Browse files
committed
fix: report the pinned adapter dependency versions
1 parent 5ee9f4f commit c16a5f3

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

adapters/html-css/PROFILE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Every condition outside this list fails export or synchronization with a `Fideli
1717

1818
The HTML document declares `data-nuif-profile="nuif-html-css-0"` and `data-nuif-document`. Mapped entity elements declare `data-nuif-id`, `data-nuif-kind` and their profile fields. A single `style[data-nuif-styles]` block contains real CSS declarations for token custom properties, fixed sizing and stack layout.
1919

20-
Tree-sitter 0.26.10 validates the outer HTML with `tree-sitter-html` 0.23.2 and the injected stylesheet with `tree-sitter-css` 0.25.0. Import retains byte ranges for every editable scalar. Input is UTF-8 and capped at 1 MiB before parsing.
20+
Tree-sitter 0.27.0 validates the outer HTML with `tree-sitter-html` 0.23.2 and the injected stylesheet with `tree-sitter-css` 0.25.0. Import retains byte ranges for every editable scalar. Input is UTF-8 and capped at 1 MiB before parsing.
2121

2222
Unmarked comments, elements and CSS declarations are outside the semantic projection. Import ignores them and synchronization preserves them byte-for-byte. They are not promoted to NUIF entities and no semantic claim is made about them.
2323

crates/nuif-cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ fn export_canva_plan(
807807
output: &str,
808808
report_path: Option<&str>,
809809
) -> Result<(), CliError> {
810-
let plan = match plan_canva_import(document, "2.12.0") {
810+
let plan = match plan_canva_import(document, "2.13.0") {
811811
Ok(plan) => plan,
812812
Err(error) => return canva_adapter_failure(&error, report_path),
813813
};

crates/nuif-html/src/bin/html-sync-profile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fn run() -> Result<(), String> {
7171
},
7272
"profile": {
7373
"name": nuif_html::PROFILE_NAME,
74-
"tree_sitter": "0.26.10",
74+
"tree_sitter": "0.27.0",
7575
"tree_sitter_html": "0.23.2",
7676
"tree_sitter_css": "0.25.0",
7777
"source_limit_bytes": nuif_html::MAX_SOURCE_BYTES,

crates/nuif-testing/src/bin/html-sync-v0.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fn run() -> Result<(), String> {
7979
},
8080
"profile": {
8181
"name": nuif_html::V0_PROFILE_NAME,
82-
"tree_sitter": "0.26.10",
82+
"tree_sitter": "0.27.0",
8383
"tree_sitter_html": "0.23.2",
8484
"tree_sitter_css": "0.25.0",
8585
"source_limit_bytes": nuif_html::MAX_SOURCE_BYTES,

research/roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Full-v0 source follow-on: `nuif-html-css-v0` retains 181 model correspondences f
2424

2525
Web accessibility projection: `nuif-web-accessibility-0` lowers a bounded
2626
ten-role, Boolean-state and five-relationship subset to inert native HTML/ARIA.
27-
The exact Playwright 1.62.1 Chromium, Firefox and WebKit engines expose all eleven
27+
The exact Playwright 1.63.0 Chromium, Firefox and WebKit engines expose all eleven
2828
fixture entities with matching computed role/name/state and identical bounded
2929
ARIA snapshots on the recorded macOS/arm64 run. Host versions and differences
3030
remain separate from semantic loss; native APIs and interaction behavior are

0 commit comments

Comments
 (0)