diff --git a/packages/kida/CHANGELOG.md b/packages/kida/CHANGELOG.md index 9cdd3730..eb4c1226 100644 --- a/packages/kida/CHANGELOG.md +++ b/packages/kida/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-beta.3](https://github.com/TrigenSoftware/nano_kit/compare/kida@1.0.0-beta.2...kida@1.0.0-beta.3) (2026-05-14) + +### Bug Fixes + +* avoid recomputing resolved accessors ([3f7cad4](https://github.com/TrigenSoftware/nano_kit/commit/3f7cad42051255e3ca78019565acea0be3774b72)) + ## [1.0.0-beta.2](https://github.com/TrigenSoftware/nano_kit/compare/kida@1.0.0-beta.1...kida@1.0.0-beta.2) (2026-05-09) ### Bug Fixes diff --git a/packages/kida/package.json b/packages/kida/package.json index 4e2445c6..8b51e0a4 100644 --- a/packages/kida/package.json +++ b/packages/kida/package.json @@ -1,7 +1,7 @@ { "name": "kida", "type": "module", - "version": "1.0.0-beta.2", + "version": "1.0.0-beta.3", "description": "A small state management library inspired by Nano Stores.", "author": "dangreen", "license": "MIT", diff --git a/packages/next-router/CHANGELOG.md b/packages/next-router/CHANGELOG.md index 0ef1d88f..a10eb577 100644 --- a/packages/next-router/CHANGELOG.md +++ b/packages/next-router/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.3](https://github.com/TrigenSoftware/nano_kit/compare/next-router@1.0.0-alpha.2...next-router@1.0.0-alpha.3) (2026-05-14) + +### Features + +* update server navigation API ([95f30bd](https://github.com/TrigenSoftware/nano_kit/commit/95f30bdcfec2c82a54a9ac4551321b5158525e63)) + ## [1.0.0-alpha.2](https://github.com/TrigenSoftware/nano_kit/compare/next-router@1.0.0-alpha.1...next-router@1.0.0-alpha.2) (2026-05-09) ### Bug Fixes diff --git a/packages/next-router/package.json b/packages/next-router/package.json index efa2df2e..751c25e0 100644 --- a/packages/next-router/package.json +++ b/packages/next-router/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/next-router", "type": "module", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "description": "Next.js integration for @nano_kit/router.", "author": "dangreen", "license": "MIT", diff --git a/packages/platform-web/CHANGELOG.md b/packages/platform-web/CHANGELOG.md index a2006ea1..38bb2d2c 100644 --- a/packages/platform-web/CHANGELOG.md +++ b/packages/platform-web/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/TrigenSoftware/nano_kit/compare/platform-web@1.0.0-alpha.3...platform-web@1.0.0-alpha.4) (2026-05-14) + +### Features + +* add browser locale helper ([967a12c](https://github.com/TrigenSoftware/nano_kit/commit/967a12c6a15759be9eb222862a434259ca9e0643)) +* add cookie store and locale helpers ([a6fb07d](https://github.com/TrigenSoftware/nano_kit/commit/a6fb07dc3d82790dc31796a7ed13ff0f9e118a7e)) + ## [1.0.0-alpha.3](https://github.com/TrigenSoftware/nano_kit/compare/platform-web@1.0.0-alpha.2...platform-web@1.0.0-alpha.3) (2026-05-09) ### Bug Fixes diff --git a/packages/platform-web/package.json b/packages/platform-web/package.json index 436e1be0..714fdcf4 100644 --- a/packages/platform-web/package.json +++ b/packages/platform-web/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/platform-web", "type": "module", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "Web platform adapters and reactive helpers for @nano_kit/store.", "author": "dangreen", "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e18d7d0a..f7b52b4b 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.9](https://github.com/TrigenSoftware/nano_kit/compare/react@1.0.0-alpha.8...react@1.0.0-alpha.9) (2026-05-14) + +### Features + +* simplify dehydration server API ([d833400](https://github.com/TrigenSoftware/nano_kit/commit/d8334003ad4ec217cdac42216f867b97562b36e6)) + +### Bug Fixes + +* allow dehydration context providers to override values ([af5c0ae](https://github.com/TrigenSoftware/nano_kit/commit/af5c0ae19cb0fac791ebec3ee1e4050621197234)) + ## [1.0.0-alpha.8](https://github.com/TrigenSoftware/nano_kit/compare/react@1.0.0-alpha.7...react@1.0.0-alpha.8) (2026-05-09) ### Bug Fixes diff --git a/packages/react/package.json b/packages/react/package.json index cc7a9919..e495ba88 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/react", "type": "module", - "version": "1.0.0-alpha.8", + "version": "1.0.0-alpha.9", "description": "Integrates @nano_kit/store signals and Dependency Injection with React components.", "author": "dangreen", "license": "MIT", diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 34a4fb7f..6dc2f9b7 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.11](https://github.com/TrigenSoftware/nano_kit/compare/router@1.0.0-alpha.10...router@1.0.0-alpha.11) (2026-05-14) + +### Features + +* remove virtual navigation provider helper ([b022906](https://github.com/TrigenSoftware/nano_kit/commit/b022906c6a2eea263101fb6c0942334445fc4c17)) + ## [1.0.0-alpha.10](https://github.com/TrigenSoftware/nano_kit/compare/router@1.0.0-alpha.9...router@1.0.0-alpha.10) (2026-05-09) ### Bug Fixes diff --git a/packages/router/package.json b/packages/router/package.json index 8ba51fef..c82c0066 100644 --- a/packages/router/package.json +++ b/packages/router/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/router", "type": "module", - "version": "1.0.0-alpha.10", + "version": "1.0.0-alpha.11", "description": "A small and powerful router for the @nano_kit/store state management library.", "author": "dangreen", "license": "MIT", diff --git a/packages/ssr/CHANGELOG.md b/packages/ssr/CHANGELOG.md index 9351afea..0102b594 100644 --- a/packages/ssr/CHANGELOG.md +++ b/packages/ssr/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.3](https://github.com/TrigenSoftware/nano_kit/compare/ssr@1.0.0-alpha.2...ssr@1.0.0-alpha.3) (2026-05-14) + +### Features + +* replace cookie-store with platform-web and add browserLocale renderer option ([9a088e7](https://github.com/TrigenSoftware/nano_kit/commit/9a088e7e32cb60f3798fc8158b2de50794becb0b)) + ## [1.0.0-alpha.2](https://github.com/TrigenSoftware/nano_kit/compare/ssr@1.0.0-alpha.1...ssr@1.0.0-alpha.2) (2026-05-09) ### Bug Fixes diff --git a/packages/ssr/package.json b/packages/ssr/package.json index f44c45c8..4e835c34 100644 --- a/packages/ssr/package.json +++ b/packages/ssr/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/ssr", "type": "module", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "description": "The base package for server-side rendering in Nano Kit.", "author": "dangreen", "license": "MIT", diff --git a/packages/store/CHANGELOG.md b/packages/store/CHANGELOG.md index 8e8869e4..806ac223 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-beta.6](https://github.com/TrigenSoftware/nano_kit/compare/store@1.0.0-beta.5...store@1.0.0-beta.6) (2026-05-14) + +### Bug Fixes + +* improve hydration context handling ([3942b0c](https://github.com/TrigenSoftware/nano_kit/commit/3942b0c9cb3ed2f11bb6d8c6d1343e2ae34d98b3)) + ## [1.0.0-beta.5](https://github.com/TrigenSoftware/nano_kit/compare/store@1.0.0-beta.4...store@1.0.0-beta.5) (2026-05-09) ### Bug Fixes diff --git a/packages/store/package.json b/packages/store/package.json index 4a00ac1f..1d064c3a 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/store", "type": "module", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "description": "A lightweight state management library inspired by Nano Stores.", "author": "dangreen", "license": "MIT", diff --git a/packages/svelte-kit/CHANGELOG.md b/packages/svelte-kit/CHANGELOG.md new file mode 100644 index 00000000..4c47cad1 --- /dev/null +++ b/packages/svelte-kit/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 1.0.0-alpha.0 (2026-05-14) + +### Features + +* introduce SvelteKit adapter ([56b8aee](https://github.com/TrigenSoftware/nano_kit/commit/56b8aee09d317b81264ab1f37665395ce4707fb9)) +* share server context with root hydration ([c198683](https://github.com/TrigenSoftware/nano_kit/commit/c1986834e1150b69728fe31f99663c0d3dff2d55)) + +### Bug Fixes + +* update hydration context API ([74ad537](https://github.com/TrigenSoftware/nano_kit/commit/74ad5379ba752882b24a117d2f3069919de246ef)) diff --git a/packages/svelte-router/CHANGELOG.md b/packages/svelte-router/CHANGELOG.md index 6a3a8c0a..2419cdf3 100644 --- a/packages/svelte-router/CHANGELOG.md +++ b/packages/svelte-router/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.3](https://github.com/TrigenSoftware/nano_kit/compare/svelte-router@1.0.0-alpha.2...svelte-router@1.0.0-alpha.3) (2026-05-14) + +### Bug Fixes + +* keep dynamic component props reactive ([d11e22c](https://github.com/TrigenSoftware/nano_kit/commit/d11e22c6a1330566043c1d0e2b6cc8d1120bfe96)) + ## [1.0.0-alpha.2](https://github.com/TrigenSoftware/nano_kit/compare/svelte-router@1.0.0-alpha.1...svelte-router@1.0.0-alpha.2) (2026-05-09) ### Bug Fixes diff --git a/packages/svelte-router/package.json b/packages/svelte-router/package.json index 9eb33eee..dfd3c21d 100644 --- a/packages/svelte-router/package.json +++ b/packages/svelte-router/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/svelte-router", "type": "module", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "description": "Svelte integration for @nano_kit/router with code splitting, Dependency Injection, and state management.", "author": "dangreen", "license": "MIT", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index fd11dc79..9700e7e6 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.2](https://github.com/TrigenSoftware/nano_kit/compare/svelte@1.0.0-alpha.1...svelte@1.0.0-alpha.2) (2026-05-14) + +### Bug Fixes + +* safely read parent injection context ([81b888d](https://github.com/TrigenSoftware/nano_kit/commit/81b888d4a206d652b59bd524809bcd08eb6f17f1)) + ## [1.0.0-alpha.1](https://github.com/TrigenSoftware/nano_kit/compare/svelte@1.0.0-alpha.0...svelte@1.0.0-alpha.1) (2026-05-09) ### Bug Fixes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 03591605..08525d15 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,7 +1,7 @@ { "name": "@nano_kit/svelte", "type": "module", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "description": "Integrates @nano_kit/store signals with Svelte stores.", "author": "dangreen", "license": "MIT",