Skip to content

chore(deps): update dependency prettier to v3.9.6 - #1321

Merged
keithamus merged 1 commit into
mainfrom
renovate/minor-3.9-dependencies
Jul 27, 2026
Merged

chore(deps): update dependency prettier to v3.9.6#1321
keithamus merged 1 commit into
mainfrom
renovate/minor-3.9-dependencies

Conversation

@renovate

@renovate renovate Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
prettier (source) 3.8.53.9.6 age confidence

Release Notes

prettier/prettier (prettier)

v3.9.6

Compare Source

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 9am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from keithamus as a code owner July 27, 2026 08:31
@github-actions

Copy link
Copy Markdown

⚪ CI skipped

No build-relevant files changed.

Job Result
Build & Test (win32-x64, win32-arm64, linux-x64, linux-arm64, darwin-x64, darwin-arm64) ⚪ skipped
Build & Test (default features) ⚪ skipped
Build & Test (nightly) ⚪ skipped
Build each library ⚪ skipped
Build benches ⚪ skipped
Acceptance Tests ⚪ skipped
Fuzz Corpus Replay ✅ success

@keithamus
keithamus merged commit b3671a1 into main Jul 27, 2026
14 checks passed
@keithamus
keithamus deleted the renovate/minor-3.9-dependencies branch July 27, 2026 09:35
github-actions Bot pushed a commit that referenced this pull request Jul 27, 2026
## [0.0.29] - 2026-07-27

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
@keithamus keithamus mentioned this pull request Jul 27, 2026
github-actions Bot pushed a commit that referenced this pull request Jul 27, 2026
## [0.0.29] - 2026-07-27

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 1, 2026
## [0.0.29] - 2026-08-01

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 1, 2026
## [0.0.29] - 2026-08-01

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 2, 2026
## [0.0.29] - 2026-08-02

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 2, 2026
## [0.0.29] - 2026-08-02

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 3, 2026
## [0.0.29] - 2026-08-03

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 3, 2026
## [0.0.29] - 2026-08-03

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 4, 2026
## [0.0.29] - 2026-08-04

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 4, 2026
## [0.0.29] - 2026-08-04

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 4, 2026
## [0.0.29] - 2026-08-04

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 4, 2026
## [0.0.29] - 2026-08-04

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 5, 2026
## [0.0.29] - 2026-08-05

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 5, 2026
## [0.0.29] - 2026-08-05

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 8, 2026
## [0.0.29] - 2026-08-08

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 8, 2026
## [0.0.29] - 2026-08-08

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 9, 2026
## [0.0.29] - 2026-08-09

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 9, 2026
## [0.0.29] - 2026-08-09

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 9, 2026
## [0.0.29] - 2026-08-09

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))
- Csskit_spec_generator: Read & emit commit sha when generating individual specs (#1383) ([#1383](#1383))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))
- css_ast: Delete dead macro code (#1376) ([#1376](#1376))
- css_parse/css_ast: Ensure ComponentValue(s) are visitable nodes (#1377) ([#1377](#1377))
- css_ast: Implement RotateStyleValue (#1378) ([#1378](#1378))
- css_ast: Implement nav-* style values (#1379) ([#1379](#1379))
- css_ast: Implement voice-pitch/voice-range, with semitones, fixing frequency (#1380) ([#1380](#1380))
- css_ast: Implement remaining background properties (#1381) ([#1381](#1381))
- css_ast: Implement offset style value (#1382) ([#1382](#1382))
- css_ast: IMplement font-variant-alternates style value (#1384) ([#1384](#1384))
- css_ast: Implement mask-border style value (#1385) ([#1385](#1385))
- css_ast: Implement border-image style value (#1386) ([#1386](#1386))
- csskit_proc_macro: Don't eagerly optimise alternates (#1387) ([#1387](#1387))
- css_ast: Implement FontVariantStyleValue (#1388) ([#1388](#1388))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 9, 2026
## [0.0.29] - 2026-08-09

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))
- Csskit_spec_generator: Read & emit commit sha when generating individual specs (#1383) ([#1383](#1383))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))
- css_ast: Delete dead macro code (#1376) ([#1376](#1376))
- css_parse/css_ast: Ensure ComponentValue(s) are visitable nodes (#1377) ([#1377](#1377))
- css_ast: Implement RotateStyleValue (#1378) ([#1378](#1378))
- css_ast: Implement nav-* style values (#1379) ([#1379](#1379))
- css_ast: Implement voice-pitch/voice-range, with semitones, fixing frequency (#1380) ([#1380](#1380))
- css_ast: Implement remaining background properties (#1381) ([#1381](#1381))
- css_ast: Implement offset style value (#1382) ([#1382](#1382))
- css_ast: IMplement font-variant-alternates style value (#1384) ([#1384](#1384))
- css_ast: Implement mask-border style value (#1385) ([#1385](#1385))
- css_ast: Implement border-image style value (#1386) ([#1386](#1386))
- csskit_proc_macro: Don't eagerly optimise alternates (#1387) ([#1387](#1387))
- css_ast: Implement FontVariantStyleValue (#1388) ([#1388](#1388))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
github-actions Bot pushed a commit that referenced this pull request Aug 14, 2026
## [0.0.29] - 2026-08-14

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))
- Csskit_spec_generator: Read & emit commit sha when generating individual specs (#1383) ([#1383](#1383))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))
- css_ast: Delete dead macro code (#1376) ([#1376](#1376))
- css_parse/css_ast: Ensure ComponentValue(s) are visitable nodes (#1377) ([#1377](#1377))
- css_ast: Implement RotateStyleValue (#1378) ([#1378](#1378))
- css_ast: Implement nav-* style values (#1379) ([#1379](#1379))
- css_ast: Implement voice-pitch/voice-range, with semitones, fixing frequency (#1380) ([#1380](#1380))
- css_ast: Implement remaining background properties (#1381) ([#1381](#1381))
- css_ast: Implement offset style value (#1382) ([#1382](#1382))
- css_ast: IMplement font-variant-alternates style value (#1384) ([#1384](#1384))
- css_ast: Implement mask-border style value (#1385) ([#1385](#1385))
- css_ast: Implement border-image style value (#1386) ([#1386](#1386))
- csskit_proc_macro: Don't eagerly optimise alternates (#1387) ([#1387](#1387))
- css_ast: Implement FontVariantStyleValue (#1388) ([#1388](#1388))
- css_ast: Add revert-rule keyword (#1393) ([#1393](#1393))
- css_ast: Add missing pseudo elements from various specs (#1394) ([#1394](#1394))
- css_ast: Implement -webkit-animation style value (#1396) ([#1396](#1396))
- css_ast: ...actually implement -webkit-animation (#1397) ([#1397](#1397))
- css_ast: Group -webkit-animation properties (#1398) ([#1398](#1398))
- css_ast: Implement font shorthand (#1399) ([#1399](#1399))
- css_ast: Implement @font-face style values (#1403) ([#1403](#1403))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))
- csskit_source_finder: Ignore types inside test modules (#1400) ([#1400](#1400))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
- chore(deps): update dependencies (patch) (#1389) ([#1389](#1389))

[forcebuild]
github-actions Bot pushed a commit that referenced this pull request Aug 14, 2026
## [0.0.29] - 2026-08-14

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331) ([#1331](#1331))
- Default debug builds to line-tables-only (#1333) ([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335) ([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339) ([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms (#1368) ([#1368](#1368))
- Csskit_spec_generator: Read & emit commit sha when generating individual specs (#1383) ([#1383](#1383))

### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder, size tests (#1323) ([#1323](#1323))

### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311) ([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322) ([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc` (#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327) ([#1327](#1327))
- Fix clippy errors (#1329) ([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334) ([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator (#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342) ([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343) ([#1343](#1343))
- css_ast: Implement calc-size() function (#1344) ([#1344](#1344))
- css_ast: Implement Autospace (#1345) ([#1345](#1345))
- css_ast: Implement TextEdge (#1346) ([#1346](#1346))
- css_ast: Implement ContentLevel (#1347) ([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based allocations, drop bumpalo (#1348) ([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat) (#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350) ([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351) ([#1351](#1351))
- css_ast: Implement fade() function (#1352) ([#1352](#1352))
- css_ast: Implement mask-layer() (#1353) ([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354) ([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355) ([#1355](#1355))
- css_ast: Implement @scope rule (#1356) ([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357) ([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue (#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359) ([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360) ([#1360](#1360))
- css_ast: Implement Syntax (#1361) ([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362) ([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364) ([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367) ([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts (#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370) ([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371) ([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372) ([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373) ([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374) ([#1374](#1374))
- css_ast: Delete dead macro code (#1376) ([#1376](#1376))
- css_parse/css_ast: Ensure ComponentValue(s) are visitable nodes (#1377) ([#1377](#1377))
- css_ast: Implement RotateStyleValue (#1378) ([#1378](#1378))
- css_ast: Implement nav-* style values (#1379) ([#1379](#1379))
- css_ast: Implement voice-pitch/voice-range, with semitones, fixing frequency (#1380) ([#1380](#1380))
- css_ast: Implement remaining background properties (#1381) ([#1381](#1381))
- css_ast: Implement offset style value (#1382) ([#1382](#1382))
- css_ast: IMplement font-variant-alternates style value (#1384) ([#1384](#1384))
- css_ast: Implement mask-border style value (#1385) ([#1385](#1385))
- css_ast: Implement border-image style value (#1386) ([#1386](#1386))
- csskit_proc_macro: Don't eagerly optimise alternates (#1387) ([#1387](#1387))
- css_ast: Implement FontVariantStyleValue (#1388) ([#1388](#1388))
- css_ast: Add revert-rule keyword (#1393) ([#1393](#1393))
- css_ast: Add missing pseudo elements from various specs (#1394) ([#1394](#1394))
- css_ast: Implement -webkit-animation style value (#1396) ([#1396](#1396))
- css_ast: ...actually implement -webkit-animation (#1397) ([#1397](#1397))
- css_ast: Group -webkit-animation properties (#1398) ([#1398](#1398))
- css_ast: Implement font shorthand (#1399) ([#1399](#1399))
- css_ast: Implement @font-face style values (#1403) ([#1403](#1403))

### Css_parse
- css_parse: Implement an Arena allocated String (#1324) ([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365) ([#1365](#1365))

### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list of sized types (#1363) ([#1363](#1363))
- csskit_source_finder: Ignore types inside test modules (#1400) ([#1400](#1400))

### Csskit
- chore(deps): update dependencies (patch) (#1312) ([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330) ([#1330](#1330))
- csskit: Clean up imports with preludes (#1366) ([#1366](#1366))

### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375) ([#1375](#1375))

### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341) ([#1341](#1341))

### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318) ([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313) ([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320) ([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321) ([#1321](#1321))
- chore(deps): update dependencies (patch) (#1389) ([#1389](#1389))
keithamus added a commit that referenced this pull request Aug 14, 2026
## [0.0.29] - 2026-08-14

### Other Changes
- Csskit_spec_generator: Move out of crates/ into tools/ (#1331)
([#1331](#1331))
- Default debug builds to line-tables-only (#1333)
([#1333](#1333))
- Chore(deps): update dependencies (patch) (#1335)
([#1335](#1335))
- Fuzz: Use css_parse sepcified allocator (#1339)
([#1339](#1339))
- Csskit_spec_generator: Pass workspace_root to generate_property_atoms
(#1368) ([#1368](#1368))
- Csskit_spec_generator: Read & emit commit sha when generating
individual specs (#1383)
([#1383](#1383))


### Chromashift
- css_parse/css_ast: Use a #[node] tag to simplify csskit_source_finder,
size tests (#1323) ([#1323](#1323))


### Css_ast
- Regenerate css_ast/src/values from csswg drafts (#1311)
([#1311](#1311))
- chore(deps): update dependency rust to v1.97.1 (#1322)
([#1322](#1322))
- css_parse: Re-export `Arena` as Bumpalo, rename `bump` to `alloc`
(#1326) ([#1326](#1326))
- csskit_arena: Introduce csskit_arena (#1327)
([#1327](#1327))
- Fix clippy errors (#1329)
([#1329](#1329))
- css_ast: repr(C) all nodes, introduce stable-type-layout. (#1334)
([#1334](#1334))
- css_parse/css_ast/csskit_wasm: Make csskit_arena default allocator
(#1340) ([#1340](#1340))
- css_ast: Implement ray() function (#1342)
([#1342](#1342))
- css_ast: Implement palette-mix() function (#1343)
([#1343](#1343))
- css_ast: Implement calc-size() function (#1344)
([#1344](#1344))
- css_ast: Implement Autospace (#1345)
([#1345](#1345))
- css_ast: Implement TextEdge (#1346)
([#1346](#1346))
- css_ast: Implement ContentLevel (#1347)
([#1347](#1347))
- csskit_arena/css_parse/css_lexer/css_ast: Implement chunk based
allocations, drop bumpalo (#1348)
([#1348](#1348))
- css_ast: Implement [Auto]Line(Width|Style|Color)(List|OrRepeat)
(#1349) ([#1349](#1349))
- css_ast: Implement SingleAnimation (#1350)
([#1350](#1350))
- css_ast: Implement CSS 4 images functions (#1351)
([#1351](#1351))
- css_ast: Implement fade() function (#1352)
([#1352](#1352))
- css_ast: Implement mask-layer() (#1353)
([#1353](#1353))
- css_ast: Implement TimelineRangeCenterSubject (#1354)
([#1354](#1354))
- css_ast: Implement remaining todo media features (#1355)
([#1355](#1355))
- css_ast: Implement @scope rule (#1356)
([#1356](#1356))
- css_ast: Implement @color-profile rule (#1357)
([#1357](#1357))
- css_ast: Implement IntegerOrInfinite, uncomment RangeStyleValue
(#1358) ([#1358](#1358))
- css_ast: Implement @font-feature-values (#1359)
([#1359](#1359))
- css_ast: Implement @font-palette-values (#1360)
([#1360](#1360))
- css_ast: Implement Syntax (#1361)
([#1361](#1361))
- css_ast: Implement tree counting functions, NumericValue<T> (#1362)
([#1362](#1362))
- css_ast: Drop Todo, clean up imports (#1364)
([#1364](#1364))
- csskit_ast: Unflag stable_type_layout from test. (#1367)
([#1367](#1367))
- Regenerate css_ast/src/values & css_feature_data from csswg drafts
(#1369) ([#1369](#1369))
- css_ast: Generate Value<> slots for all keywords (#1370)
([#1370](#1370))
- css_ast: Fix errors in MathML tags (#1371)
([#1371](#1371))
- css_ast: Add new pseudo classes from various specs (#1372)
([#1372](#1372))
- css_ast/csskit_ast: Optimise NodeId code (#1373)
([#1373](#1373))
- css_ast: Fix panic in unexpected_pseudo_class diagnostic (#1374)
([#1374](#1374))
- css_ast: Delete dead macro code (#1376)
([#1376](#1376))
- css_parse/css_ast: Ensure ComponentValue(s) are visitable nodes
(#1377) ([#1377](#1377))
- css_ast: Implement RotateStyleValue (#1378)
([#1378](#1378))
- css_ast: Implement nav-* style values (#1379)
([#1379](#1379))
- css_ast: Implement voice-pitch/voice-range, with semitones, fixing
frequency (#1380) ([#1380](#1380))
- css_ast: Implement remaining background properties (#1381)
([#1381](#1381))
- css_ast: Implement offset style value (#1382)
([#1382](#1382))
- css_ast: IMplement font-variant-alternates style value (#1384)
([#1384](#1384))
- css_ast: Implement mask-border style value (#1385)
([#1385](#1385))
- css_ast: Implement border-image style value (#1386)
([#1386](#1386))
- csskit_proc_macro: Don't eagerly optimise alternates (#1387)
([#1387](#1387))
- css_ast: Implement FontVariantStyleValue (#1388)
([#1388](#1388))
- css_ast: Add revert-rule keyword (#1393)
([#1393](#1393))
- css_ast: Add missing pseudo elements from various specs (#1394)
([#1394](#1394))
- css_ast: Implement -webkit-animation style value (#1396)
([#1396](#1396))
- css_ast: ...actually implement -webkit-animation (#1397)
([#1397](#1397))
- css_ast: Group -webkit-animation properties (#1398)
([#1398](#1398))
- css_ast: Implement font shorthand (#1399)
([#1399](#1399))
- css_ast: Implement @font-face style values (#1403)
([#1403](#1403))


### Css_parse
- css_parse: Implement an Arena allocated String (#1324)
([#1324](#1324))
- css_parse/csskit/csskit_transform: Use css_parse::String where
possible (#1325) ([#1325](#1325))
- css_parse: Clean up imports with preludes (#1365)
([#1365](#1365))


### Css_value_definition_parser
- csskit_source_finder/css_value_definition_parser: Autogeenerate list
of sized types (#1363)
([#1363](#1363))
- csskit_source_finder: Ignore types inside test modules (#1400)
([#1400](#1400))


### Csskit
- chore(deps): update dependencies (patch) (#1312)
([#1312](#1312))
- csskit-wasm: Fix wasm-opt errors (#1330)
([#1330](#1330))
- csskit: Clean up imports with preludes (#1366)
([#1366](#1366))


### Csskit_arena
- csskit_arena: Add with_initial_capacity (#1375)
([#1375](#1375))


### Csskit_lsp
- csskit_lsp: Don't create new Arenas for each LineIndex (#1341)
([#1341](#1341))


### Csskit_vscode
- chore(deps): update dependency oxlint to v1.73.0 (#1318)
([#1318](#1318))
- chore(deps): update dependency @vscode/test-electron to v3.1.0 (#1313)
([#1313](#1313))
- chore(deps): update dependency oxlint to v1.75.0 (#1320)
([#1320](#1320))
- chore(deps): update dependency prettier to v3.9.6 (#1321)
([#1321](#1321))
- chore(deps): update dependencies (patch) (#1389)
([#1389](#1389))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant