From f0db9472d238ce3eb15b7da46bfd46edb9972296 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 14:51:28 +0000 Subject: [PATCH] Version Packages --- .../fep-2548-create-load-distinction.md | 17 --- .changeset/tidy-bats-context.md | 5 - core/CHANGELOG.md | 18 +++ core/package.json | 2 +- demo/CHANGELOG.md | 15 ++ demo/package.json | 18 +-- docs/CHANGELOG.md | 13 ++ docs/components/ChangelogContent.mdx | 28 ++++ docs/package.json | 14 +- extensions/link/CHANGELOG.md | 7 + extensions/link/package.json | 10 +- extensions/plugin-basic-ui/CHANGELOG.md | 8 ++ extensions/plugin-basic-ui/package.json | 10 +- extensions/plugin-blocker/CHANGELOG.md | 7 + extensions/plugin-blocker/package.json | 10 +- extensions/plugin-devtools/CHANGELOG.md | 7 + extensions/plugin-devtools/package.json | 6 +- .../plugin-google-analytics-4/CHANGELOG.md | 7 + .../plugin-google-analytics-4/package.json | 8 +- extensions/plugin-history-sync/CHANGELOG.md | 11 ++ extensions/plugin-history-sync/package.json | 10 +- extensions/plugin-lifecycle/CHANGELOG.md | 7 + extensions/plugin-lifecycle/package.json | 10 +- extensions/plugin-renderer-basic/CHANGELOG.md | 7 + extensions/plugin-renderer-basic/package.json | 8 +- extensions/plugin-renderer-web/CHANGELOG.md | 7 + extensions/plugin-renderer-web/package.json | 8 +- extensions/plugin-sentry/CHANGELOG.md | 7 + extensions/plugin-sentry/package.json | 6 +- .../plugin-stack-depth-change/CHANGELOG.md | 7 + .../plugin-stack-depth-change/package.json | 6 +- extensions/react-ui-core/CHANGELOG.md | 7 + extensions/react-ui-core/package.json | 8 +- integrations/react/CHANGELOG.md | 7 + integrations/react/package.json | 6 +- yarn.lock | 128 +++++++++--------- 36 files changed, 304 insertions(+), 156 deletions(-) delete mode 100644 .changeset/fep-2548-create-load-distinction.md delete mode 100644 .changeset/tidy-bats-context.md diff --git a/.changeset/fep-2548-create-load-distinction.md b/.changeset/fep-2548-create-load-distinction.md deleted file mode 100644 index a5b280fcf..000000000 --- a/.changeset/fep-2548-create-load-distinction.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -"@stackflow/core": major ---- - -Distinguish how a stack is initialized — created fresh (`create`) or restored from a snapshot (`load`) — and add the surface a snapshot round-trip needs: `StackSnapshot`, `actions.captureSnapshot()`, the `provideSnapshot` / `onLoadError` plugin hooks, and `initInfo` on `onInit`. Runtime behavior is unchanged when no snapshot is provided; the breaks are type-level only — the `StackflowPluginHook` → `StackflowPluginInitHook` rename, plus new required members on `StackflowActions` and on the `onInit` / `overrideInitialEvents` hook signatures — hence the major. - -**Added** - -- `StackSnapshot` (with the `SnapshotEvent` / `NavigationEvent` unions) — a plain-data record of the events a stack recorded at runtime — plus `SnapshotLoadError`. -- `actions.captureSnapshot()` to export that record, and the `provideSnapshot` / `onLoadError` plugin hooks to supply a snapshot at creation time and route a failed load. -- `initInfo: { kind: "create" | "load" }` on `onInit`; `overrideInitialEvents` now runs on the load path too and receives the same `initInfo`. - -**Changed** - -- Renamed the `StackflowPluginHook` type to `StackflowPluginInitHook`. -- `StackflowActions` now requires `captureSnapshot`, the `onInit` / `overrideInitialEvents` hook arguments now require `initInfo`, and `overrideInitialEvents`' parameter widens from `(PushedEvent | StepPushedEvent)[]` to `SnapshotEvent[]` — hand-written mocks and wrap-and-forward plugins must adopt these. -- `validateEvents` now also rejects a `Replaced` that names an unregistered activity (does not fire in config-first usage). diff --git a/.changeset/tidy-bats-context.md b/.changeset/tidy-bats-context.md deleted file mode 100644 index aae5fac4c..000000000 --- a/.changeset/tidy-bats-context.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackflow/plugin-history-sync": minor ---- - -Pass `initialContext` to route `defaultHistory` callbacks so the initial stack can depend on request-specific context. diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 4bf84ae10..d7a390af7 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,23 @@ # @stackflow/core +## 3.0.0 + +### Major Changes + +- f0fc1fb: Distinguish how a stack is initialized — created fresh (`create`) or restored from a snapshot (`load`) — and add the surface a snapshot round-trip needs: `StackSnapshot`, `actions.captureSnapshot()`, the `provideSnapshot` / `onLoadError` plugin hooks, and `initInfo` on `onInit`. Runtime behavior is unchanged when no snapshot is provided; the breaks are type-level only — the `StackflowPluginHook` → `StackflowPluginInitHook` rename, plus new required members on `StackflowActions` and on the `onInit` / `overrideInitialEvents` hook signatures — hence the major. + + **Added** + + - `StackSnapshot` (with the `SnapshotEvent` / `NavigationEvent` unions) — a plain-data record of the events a stack recorded at runtime — plus `SnapshotLoadError`. + - `actions.captureSnapshot()` to export that record, and the `provideSnapshot` / `onLoadError` plugin hooks to supply a snapshot at creation time and route a failed load. + - `initInfo: { kind: "create" | "load" }` on `onInit`; `overrideInitialEvents` now runs on the load path too and receives the same `initInfo`. + + **Changed** + + - Renamed the `StackflowPluginHook` type to `StackflowPluginInitHook`. + - `StackflowActions` now requires `captureSnapshot`, the `onInit` / `overrideInitialEvents` hook arguments now require `initInfo`, and `overrideInitialEvents`' parameter widens from `(PushedEvent | StepPushedEvent)[]` to `SnapshotEvent[]` — hand-written mocks and wrap-and-forward plugins must adopt these. + - `validateEvents` now also rejects a `Replaced` that names an unregistered activity (does not fire in config-first usage). + ## 2.0.1 ### Patch Changes diff --git a/core/package.json b/core/package.json index c411e11a6..78c00301a 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/core", - "version": "2.0.1", + "version": "3.0.0", "repository": { "type": "git", "url": "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/daangn/stackflow.git", diff --git a/demo/CHANGELOG.md b/demo/CHANGELOG.md index c606e76be..820839ff5 100644 --- a/demo/CHANGELOG.md +++ b/demo/CHANGELOG.md @@ -1,5 +1,20 @@ # @stackflow/demo +## 1.4.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] +- Updated dependencies [fd33557] + - @stackflow/core@3.0.0 + - @stackflow/plugin-history-sync@1.12.0 + - @stackflow/link@2.0.1 + - @stackflow/plugin-basic-ui@1.18.3 + - @stackflow/plugin-devtools@0.1.13 + - @stackflow/plugin-renderer-basic@1.1.15 + - @stackflow/plugin-stack-depth-change@1.1.7 + - @stackflow/react@2.1.2 + ## 1.4.1 ### Patch Changes diff --git a/demo/package.json b/demo/package.json index bd7071e26..4839aee91 100644 --- a/demo/package.json +++ b/demo/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/demo", - "version": "1.4.1", + "version": "1.4.2", "private": true, "license": "MIT", "type": "module", @@ -33,14 +33,14 @@ "@seed-design/design-token": "^1.0.3", "@seed-design/stylesheet": "^1.0.4", "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.0", - "@stackflow/link": "^2.0.0", - "@stackflow/plugin-basic-ui": "^1.18.2", - "@stackflow/plugin-devtools": "^0.1.12", - "@stackflow/plugin-history-sync": "^1.11.0", - "@stackflow/plugin-renderer-basic": "^1.1.14", - "@stackflow/plugin-stack-depth-change": "^1.1.6", - "@stackflow/react": "^2.0.0", + "@stackflow/core": "^3.0.0", + "@stackflow/link": "^2.0.1", + "@stackflow/plugin-basic-ui": "^1.18.3", + "@stackflow/plugin-devtools": "^0.1.13", + "@stackflow/plugin-history-sync": "^1.12.0", + "@stackflow/plugin-renderer-basic": "^1.1.15", + "@stackflow/plugin-stack-depth-change": "^1.1.7", + "@stackflow/react": "^2.1.2", "lorem-ipsum": "^2.0.8", "lz-string": "^1.5.0", "normalize.css": "^8.0.1", diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fd0e20b84..d7188a191 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,18 @@ # @stackflow/docs +## 2.1.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] +- Updated dependencies [fd33557] + - @stackflow/core@3.0.0 + - @stackflow/plugin-history-sync@1.12.0 + - @stackflow/demo@1.4.2 + - @stackflow/plugin-basic-ui@1.18.3 + - @stackflow/plugin-renderer-basic@1.1.15 + - @stackflow/react@2.1.2 + ## 2.1.1 ### Patch Changes diff --git a/docs/components/ChangelogContent.mdx b/docs/components/ChangelogContent.mdx index fd3b72acc..9eef7687f 100644 --- a/docs/components/ChangelogContent.mdx +++ b/docs/components/ChangelogContent.mdx @@ -1,3 +1,31 @@ +## 2026.07.11 + +Distinguish how a stack is initialized — created fresh (`create`) or restored from a snapshot (`load`) — and add the surface a snapshot round-trip needs: `StackSnapshot`, `actions.captureSnapshot()`, the `provideSnapshot` / `onLoadError` plugin hooks, and `initInfo` on `onInit`. Runtime behavior is unchanged when no snapshot is provided; the breaks are type-level only — the `StackflowPluginHook` → `StackflowPluginInitHook` rename, plus new required members on `StackflowActions` and on the `onInit` / `overrideInitialEvents` hook signatures — hence the major. [`f0fc1fb`](https://github.com/daangn/stackflow/commit/f0fc1fbdda3b23f7c1400f9659e45a970be1647d) + +**Added** + +- `StackSnapshot` (with the `SnapshotEvent` / `NavigationEvent` unions) — a plain-data record of the events a stack recorded at runtime — plus `SnapshotLoadError`. +- `actions.captureSnapshot()` to export that record, and the `provideSnapshot` / `onLoadError` plugin hooks to supply a snapshot at creation time and route a failed load. +- `initInfo: { kind: "create" | "load" }` on `onInit`; `overrideInitialEvents` now runs on the load path too and receives the same `initInfo`. + +**Changed** + +- Renamed the `StackflowPluginHook` type to `StackflowPluginInitHook`. +- `StackflowActions` now requires `captureSnapshot`, the `onInit` / `overrideInitialEvents` hook arguments now require `initInfo`, and `overrideInitialEvents`' parameter widens from `(PushedEvent | StepPushedEvent)[]` to `SnapshotEvent[]` — hand-written mocks and wrap-and-forward plugins must adopt these. +- `validateEvents` now also rejects a `Replaced` that names an unregistered activity (does not fire in config-first usage). + +Released packages: +- 📦 [@stackflow/core@3.0.0](https://npmjs.com/package/@stackflow/core/v/3.0.0) + +--- + +Pass `initialContext` to route `defaultHistory` callbacks so the initial stack can depend on request-specific context. [`fd33557`](https://github.com/daangn/stackflow/commit/fd33557036ef2f631ac5f895e741b7af04516ca9) + +Released packages: +- 📦 [@stackflow/plugin-history-sync@2.0.0](https://npmjs.com/package/@stackflow/plugin-history-sync/v/2.0.0) + +--- + ## 2026.07.07 Memoize the action functions returned by `useFlow` and `useStepFlow` so their references stay stable across renders. [`91c433c`](https://github.com/daangn/stackflow/commit/91c433cc2f60462c59f6e1b990bc8339d7fbbc00) diff --git a/docs/package.json b/docs/package.json index 807901a30..4a2506b56 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/docs", - "version": "2.1.1", + "version": "2.1.2", "private": true, "description": "Mobile-first stack navigator framework with Composable Plugin System", "license": "MIT", @@ -19,12 +19,12 @@ "@mdx-js/react": "^3.0.1", "@opennextjs/cloudflare": "^1.0.0-beta.3", "@seed-design/design-token": "^1.0.3", - "@stackflow/core": "^2.0.0", - "@stackflow/demo": "^1.4.1", - "@stackflow/plugin-basic-ui": "^1.18.2", - "@stackflow/plugin-history-sync": "^1.11.0", - "@stackflow/plugin-renderer-basic": "^1.1.14", - "@stackflow/react": "^2.0.0", + "@stackflow/core": "^3.0.0", + "@stackflow/demo": "^1.4.2", + "@stackflow/plugin-basic-ui": "^1.18.3", + "@stackflow/plugin-history-sync": "^1.12.0", + "@stackflow/plugin-renderer-basic": "^1.1.15", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "autoprefixer": "^10.4.20", "class-variance-authority": "^0.7.0", diff --git a/extensions/link/CHANGELOG.md b/extensions/link/CHANGELOG.md index d92be5fd6..a53238e49 100644 --- a/extensions/link/CHANGELOG.md +++ b/extensions/link/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/link +## 2.0.1 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 2.0.0 ### Major Changes diff --git a/extensions/link/package.json b/extensions/link/package.json index 18a6216e8..e95a86f08 100644 --- a/extensions/link/package.json +++ b/extensions/link/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/link", - "version": "2.0.0", + "version": "2.0.1", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -32,10 +32,10 @@ }, "devDependencies": { "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/plugin-history-sync": "^1.11.0", - "@stackflow/react": "^2.0.0", + "@stackflow/plugin-history-sync": "^1.12.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "esbuild-plugin-file-path-extensions": "^2.1.3", @@ -44,7 +44,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/plugin-history-sync": "^1.6.4-canary.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", diff --git a/extensions/plugin-basic-ui/CHANGELOG.md b/extensions/plugin-basic-ui/CHANGELOG.md index 0489b06ca..581a20877 100644 --- a/extensions/plugin-basic-ui/CHANGELOG.md +++ b/extensions/plugin-basic-ui/CHANGELOG.md @@ -1,5 +1,13 @@ # @stackflow/plugin-basic-ui +## 1.18.3 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + - @stackflow/react-ui-core@1.3.6 + ## 1.18.2 ### Patch Changes diff --git a/extensions/plugin-basic-ui/package.json b/extensions/plugin-basic-ui/package.json index f52a44a26..cb86cec1f 100644 --- a/extensions/plugin-basic-ui/package.json +++ b/extensions/plugin-basic-ui/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-basic-ui", - "version": "1.18.2", + "version": "1.18.3", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -32,7 +32,7 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@stackflow/react-ui-core": "^1.3.5", + "@stackflow/react-ui-core": "^1.3.6", "@vanilla-extract/css": "^1.15.3", "@vanilla-extract/dynamic": "^2.1.1", "@vanilla-extract/private": "^1.0.5", @@ -40,9 +40,9 @@ "clsx": "^2.1.1" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/react": "^2.0.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", @@ -50,7 +50,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/extensions/plugin-blocker/CHANGELOG.md b/extensions/plugin-blocker/CHANGELOG.md index c18d1510a..0ad11a698 100644 --- a/extensions/plugin-blocker/CHANGELOG.md +++ b/extensions/plugin-blocker/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-blocker +## 0.1.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 0.1.1 ### Patch Changes diff --git a/extensions/plugin-blocker/package.json b/extensions/plugin-blocker/package.json index f05f804b0..c08629e49 100644 --- a/extensions/plugin-blocker/package.json +++ b/extensions/plugin-blocker/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-blocker", - "version": "0.1.1", + "version": "0.1.2", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -42,10 +42,10 @@ }, "devDependencies": { "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/plugin-renderer-basic": "^1.1.14", - "@stackflow/react": "^2.0.0", + "@stackflow/plugin-renderer-basic": "^1.1.15", + "@stackflow/react": "^2.1.2", "@swc/core": "^1.6.6", "@swc/jest": "^0.2.36", "@testing-library/dom": "^10.4.0", @@ -61,7 +61,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "react": ">=16.8.0" }, diff --git a/extensions/plugin-devtools/CHANGELOG.md b/extensions/plugin-devtools/CHANGELOG.md index ff7f74fd1..63ee521ff 100644 --- a/extensions/plugin-devtools/CHANGELOG.md +++ b/extensions/plugin-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-devtools +## 0.1.13 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 0.1.12 ### Patch Changes diff --git a/extensions/plugin-devtools/package.json b/extensions/plugin-devtools/package.json index d6f70dc88..eccc5932c 100644 --- a/extensions/plugin-devtools/package.json +++ b/extensions/plugin-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-devtools", - "version": "0.1.12", + "version": "0.1.13", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -30,7 +30,7 @@ "dev": "yarn build:js --watch && yarn build:dts --watch" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", "@types/node": "^20.14.9", "esbuild": "^0.23.0", @@ -38,7 +38,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0" + "@stackflow/core": "^3.0.0" }, "publishConfig": { "access": "public" diff --git a/extensions/plugin-google-analytics-4/CHANGELOG.md b/extensions/plugin-google-analytics-4/CHANGELOG.md index 72000a366..c51da0551 100644 --- a/extensions/plugin-google-analytics-4/CHANGELOG.md +++ b/extensions/plugin-google-analytics-4/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-google-analytics-4 +## 1.1.17 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.1.16 ### Patch Changes diff --git a/extensions/plugin-google-analytics-4/package.json b/extensions/plugin-google-analytics-4/package.json index 26e66356b..feaa02d64 100644 --- a/extensions/plugin-google-analytics-4/package.json +++ b/extensions/plugin-google-analytics-4/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-google-analytics-4", - "version": "1.1.16", + "version": "1.1.17", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -35,9 +35,9 @@ "react-ga4": "^2.1.0" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/react": "^2.0.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", @@ -45,7 +45,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/extensions/plugin-history-sync/CHANGELOG.md b/extensions/plugin-history-sync/CHANGELOG.md index 371021d8e..931d60d2a 100644 --- a/extensions/plugin-history-sync/CHANGELOG.md +++ b/extensions/plugin-history-sync/CHANGELOG.md @@ -1,5 +1,16 @@ # @stackflow/plugin-history-sync +## 1.12.0 + +### Minor Changes + +- fd33557: Pass `initialContext` to route `defaultHistory` callbacks so the initial stack can depend on request-specific context. + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.11.2 ### Patch Changes diff --git a/extensions/plugin-history-sync/package.json b/extensions/plugin-history-sync/package.json index 78813f24a..699b7db59 100644 --- a/extensions/plugin-history-sync/package.json +++ b/extensions/plugin-history-sync/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-history-sync", - "version": "1.11.2", + "version": "1.12.0", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -63,10 +63,10 @@ "devDependencies": { "@graphql-tools/schema": "^10.0.5", "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.1", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/plugin-renderer-basic": "^1.1.14", - "@stackflow/react": "^2.1.0", + "@stackflow/plugin-renderer-basic": "^1.1.15", + "@stackflow/react": "^2.1.2", "@swc/core": "^1.6.6", "@swc/jest": "^0.2.36", "@testing-library/dom": "^10.4.0", @@ -91,7 +91,7 @@ }, "peerDependencies": { "@stackflow/config": "^1.1.0 || ^2.0.0", - "@stackflow/core": "^1.0.0 || ^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^1.0.0 || ^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/extensions/plugin-lifecycle/CHANGELOG.md b/extensions/plugin-lifecycle/CHANGELOG.md index 044a06cc4..76a6d5a05 100644 --- a/extensions/plugin-lifecycle/CHANGELOG.md +++ b/extensions/plugin-lifecycle/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-lifecycle +## 0.1.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 0.1.1 ### Patch Changes diff --git a/extensions/plugin-lifecycle/package.json b/extensions/plugin-lifecycle/package.json index bd92f5de9..f74e8a72e 100644 --- a/extensions/plugin-lifecycle/package.json +++ b/extensions/plugin-lifecycle/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-lifecycle", - "version": "0.1.1", + "version": "0.1.2", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -42,10 +42,10 @@ }, "devDependencies": { "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/plugin-renderer-basic": "^1.1.14", - "@stackflow/react": "^2.0.0", + "@stackflow/plugin-renderer-basic": "^1.1.15", + "@stackflow/react": "^2.1.2", "@swc/core": "^1.6.6", "@swc/jest": "^0.2.36", "@testing-library/dom": "^10.4.0", @@ -61,7 +61,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "react": ">=16.8.0" }, diff --git a/extensions/plugin-renderer-basic/CHANGELOG.md b/extensions/plugin-renderer-basic/CHANGELOG.md index d2e93e5d2..6928ce9dd 100644 --- a/extensions/plugin-renderer-basic/CHANGELOG.md +++ b/extensions/plugin-renderer-basic/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-renderer-basic +## 1.1.15 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.1.14 ### Patch Changes diff --git a/extensions/plugin-renderer-basic/package.json b/extensions/plugin-renderer-basic/package.json index 36152dc87..db97b6ae4 100644 --- a/extensions/plugin-renderer-basic/package.json +++ b/extensions/plugin-renderer-basic/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-renderer-basic", - "version": "1.1.14", + "version": "1.1.15", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -31,9 +31,9 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/react": "^2.0.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", @@ -41,7 +41,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/extensions/plugin-renderer-web/CHANGELOG.md b/extensions/plugin-renderer-web/CHANGELOG.md index 60e5a1f21..0bbf4818e 100644 --- a/extensions/plugin-renderer-web/CHANGELOG.md +++ b/extensions/plugin-renderer-web/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-renderer-web +## 1.1.15 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.1.14 ### Patch Changes diff --git a/extensions/plugin-renderer-web/package.json b/extensions/plugin-renderer-web/package.json index 81bdec7b4..e2ffa8202 100644 --- a/extensions/plugin-renderer-web/package.json +++ b/extensions/plugin-renderer-web/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-renderer-web", - "version": "1.1.14", + "version": "1.1.15", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -31,9 +31,9 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/react": "^2.0.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", @@ -41,7 +41,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/extensions/plugin-sentry/CHANGELOG.md b/extensions/plugin-sentry/CHANGELOG.md index e622d9c1d..7642eb533 100644 --- a/extensions/plugin-sentry/CHANGELOG.md +++ b/extensions/plugin-sentry/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-sentry +## 0.1.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 0.1.1 ### Patch Changes diff --git a/extensions/plugin-sentry/package.json b/extensions/plugin-sentry/package.json index b7bc50c81..2a0fa8a2e 100644 --- a/extensions/plugin-sentry/package.json +++ b/extensions/plugin-sentry/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-sentry", - "version": "0.1.1", + "version": "0.1.2", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -32,12 +32,12 @@ "peerDependencies": { "@sentry/browser": ">=8.0.0", "@sentry/core": ">=8.0.0", - "@stackflow/core": "^2.0.0" + "@stackflow/core": "^3.0.0" }, "devDependencies": { "@sentry/browser": "^10.46.0", "@sentry/core": "^10.46.0", - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", "esbuild": "^0.23.0", "typescript": "^5.5.3" diff --git a/extensions/plugin-stack-depth-change/CHANGELOG.md b/extensions/plugin-stack-depth-change/CHANGELOG.md index caaaee748..3752b3b0a 100644 --- a/extensions/plugin-stack-depth-change/CHANGELOG.md +++ b/extensions/plugin-stack-depth-change/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-stack-depth-change +## 1.1.7 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.1.6 ### Patch Changes diff --git a/extensions/plugin-stack-depth-change/package.json b/extensions/plugin-stack-depth-change/package.json index ed9ce3525..03a5379ad 100644 --- a/extensions/plugin-stack-depth-change/package.json +++ b/extensions/plugin-stack-depth-change/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-stack-depth-change", - "version": "1.1.6", + "version": "1.1.7", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -31,7 +31,7 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", "@types/node": "^20.14.9", "esbuild": "^0.23.0", @@ -39,7 +39,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0" + "@stackflow/core": "^3.0.0" }, "publishConfig": { "access": "public" diff --git a/extensions/react-ui-core/CHANGELOG.md b/extensions/react-ui-core/CHANGELOG.md index 9673cdfd6..11fd108cf 100644 --- a/extensions/react-ui-core/CHANGELOG.md +++ b/extensions/react-ui-core/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/react-ui-core +## 1.3.6 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 1.3.5 ### Patch Changes diff --git a/extensions/react-ui-core/package.json b/extensions/react-ui-core/package.json index 371195d2f..a503800fc 100644 --- a/extensions/react-ui-core/package.json +++ b/extensions/react-ui-core/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/react-ui-core", - "version": "1.3.5", + "version": "1.3.6", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -32,9 +32,9 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.2", - "@stackflow/react": "^2.0.0", + "@stackflow/react": "^2.1.2", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", @@ -42,7 +42,7 @@ "typescript": "^5.5.3" }, "peerDependencies": { - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@stackflow/react": "^2.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" diff --git a/integrations/react/CHANGELOG.md b/integrations/react/CHANGELOG.md index ffb978106..ba752f833 100644 --- a/integrations/react/CHANGELOG.md +++ b/integrations/react/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/react +## 2.1.2 + +### Patch Changes + +- Updated dependencies [f0fc1fb] + - @stackflow/core@3.0.0 + ## 2.1.1 ### Patch Changes diff --git a/integrations/react/package.json b/integrations/react/package.json index 38394cfb2..01c80ee6f 100644 --- a/integrations/react/package.json +++ b/integrations/react/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/react", - "version": "2.1.1", + "version": "2.1.2", "repository": { "type": "git", "url": "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/daangn/stackflow.git", @@ -35,7 +35,7 @@ }, "devDependencies": { "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.1", + "@stackflow/core": "^3.0.0", "@stackflow/esbuild-config": "^1.0.3", "@types/react": "^18.3.3", "esbuild": "^0.23.0", @@ -46,7 +46,7 @@ }, "peerDependencies": { "@stackflow/config": "^2.0.0", - "@stackflow/core": "^2.0.0", + "@stackflow/core": "^3.0.0", "@types/react": ">=16.8.0", "react": ">=16.8.0" }, diff --git a/yarn.lock b/yarn.lock index 99d920580..97c4648e0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5612,7 +5612,7 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/core@npm:^2.0.0, @stackflow/core@npm:^2.0.1, @stackflow/core@workspace:core": +"@stackflow/core@npm:^3.0.0, @stackflow/core@workspace:core": version: 0.0.0-use.local resolution: "@stackflow/core@workspace:core" dependencies: @@ -5630,22 +5630,22 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/demo@npm:^1.4.1, @stackflow/demo@workspace:demo": +"@stackflow/demo@npm:^1.4.2, @stackflow/demo@workspace:demo": version: 0.0.0-use.local resolution: "@stackflow/demo@workspace:demo" dependencies: "@seed-design/design-token": "npm:^1.0.3" "@seed-design/stylesheet": "npm:^1.0.4" "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/link": "npm:^2.0.0" - "@stackflow/plugin-basic-ui": "npm:^1.18.2" - "@stackflow/plugin-devtools": "npm:^0.1.12" - "@stackflow/plugin-history-sync": "npm:^1.11.0" - "@stackflow/plugin-renderer-basic": "npm:^1.1.14" - "@stackflow/plugin-stack-depth-change": "npm:^1.1.6" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/link": "npm:^2.0.1" + "@stackflow/plugin-basic-ui": "npm:^1.18.3" + "@stackflow/plugin-devtools": "npm:^0.1.13" + "@stackflow/plugin-history-sync": "npm:^1.12.0" + "@stackflow/plugin-renderer-basic": "npm:^1.1.15" + "@stackflow/plugin-stack-depth-change": "npm:^1.1.7" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" "@types/react-dom": "npm:^18.3.0" "@types/react-lazy-load-image-component": "npm:^1.6.4" @@ -5681,12 +5681,12 @@ __metadata: "@opennextjs/cloudflare": "npm:^1.0.0-beta.3" "@seed-design/design-token": "npm:^1.0.3" "@seed-design/stylesheet": "npm:^1.0.4" - "@stackflow/core": "npm:^2.0.0" - "@stackflow/demo": "npm:^1.4.1" - "@stackflow/plugin-basic-ui": "npm:^1.18.2" - "@stackflow/plugin-history-sync": "npm:^1.11.0" - "@stackflow/plugin-renderer-basic": "npm:^1.1.14" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" + "@stackflow/demo": "npm:^1.4.2" + "@stackflow/plugin-basic-ui": "npm:^1.18.3" + "@stackflow/plugin-history-sync": "npm:^1.12.0" + "@stackflow/plugin-renderer-basic": "npm:^1.1.15" + "@stackflow/react": "npm:^2.1.2" "@types/node": "npm:^22.7.5" "@types/react": "npm:^18.3.3" autoprefixer: "npm:^10.4.20" @@ -5721,15 +5721,15 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/link@npm:^2.0.0, @stackflow/link@workspace:extensions/link": +"@stackflow/link@npm:^2.0.1, @stackflow/link@workspace:extensions/link": version: 0.0.0-use.local resolution: "@stackflow/link@workspace:extensions/link" dependencies: "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/plugin-history-sync": "npm:^1.11.0" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/plugin-history-sync": "npm:^1.12.0" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" esbuild-plugin-file-path-extensions: "npm:^2.1.3" @@ -5737,7 +5737,7 @@ __metadata: rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/plugin-history-sync": ^1.6.4-canary.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" @@ -5764,14 +5764,14 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/plugin-basic-ui@npm:^1.18.2, @stackflow/plugin-basic-ui@workspace:extensions/plugin-basic-ui": +"@stackflow/plugin-basic-ui@npm:^1.18.3, @stackflow/plugin-basic-ui@workspace:extensions/plugin-basic-ui": version: 0.0.0-use.local resolution: "@stackflow/plugin-basic-ui@workspace:extensions/plugin-basic-ui" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/react": "npm:^2.0.0" - "@stackflow/react-ui-core": "npm:^1.3.5" + "@stackflow/react": "npm:^2.1.2" + "@stackflow/react-ui-core": "npm:^1.3.6" "@types/react": "npm:^18.3.3" "@vanilla-extract/css": "npm:^1.15.3" "@vanilla-extract/dynamic": "npm:^2.1.1" @@ -5783,7 +5783,7 @@ __metadata: rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" @@ -5795,10 +5795,10 @@ __metadata: resolution: "@stackflow/plugin-blocker@workspace:extensions/plugin-blocker" dependencies: "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/plugin-renderer-basic": "npm:^1.1.14" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/plugin-renderer-basic": "npm:^1.1.15" + "@stackflow/react": "npm:^2.1.2" "@swc/core": "npm:^1.6.6" "@swc/jest": "npm:^0.2.36" "@testing-library/dom": "npm:^10.4.0" @@ -5813,24 +5813,24 @@ __metadata: rimraf: "npm:^6.1.3" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 react: ">=16.8.0" languageName: unknown linkType: soft -"@stackflow/plugin-devtools@npm:^0.1.12, @stackflow/plugin-devtools@workspace:extensions/plugin-devtools": +"@stackflow/plugin-devtools@npm:^0.1.13, @stackflow/plugin-devtools@workspace:extensions/plugin-devtools": version: 0.0.0-use.local resolution: "@stackflow/plugin-devtools@workspace:extensions/plugin-devtools" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@types/node": "npm:^20.14.9" esbuild: "npm:^0.23.0" rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 languageName: unknown linkType: soft @@ -5838,9 +5838,9 @@ __metadata: version: 0.0.0-use.local resolution: "@stackflow/plugin-google-analytics-4@workspace:extensions/plugin-google-analytics-4" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" react: "npm:^18.3.1" @@ -5848,23 +5848,23 @@ __metadata: rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" languageName: unknown linkType: soft -"@stackflow/plugin-history-sync@npm:^1.11.0, @stackflow/plugin-history-sync@workspace:extensions/plugin-history-sync": +"@stackflow/plugin-history-sync@npm:^1.12.0, @stackflow/plugin-history-sync@workspace:extensions/plugin-history-sync": version: 0.0.0-use.local resolution: "@stackflow/plugin-history-sync@workspace:extensions/plugin-history-sync" dependencies: "@graphql-tools/schema": "npm:^10.0.5" "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.1" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/plugin-renderer-basic": "npm:^1.1.14" - "@stackflow/react": "npm:^2.1.0" + "@stackflow/plugin-renderer-basic": "npm:^1.1.15" + "@stackflow/react": "npm:^2.1.2" "@swc/core": "npm:^1.6.6" "@swc/jest": "npm:^0.2.36" "@testing-library/dom": "npm:^10.4.0" @@ -5892,7 +5892,7 @@ __metadata: url-pattern: "npm:^1.0.3" peerDependencies: "@stackflow/config": ^1.1.0 || ^2.0.0 - "@stackflow/core": ^1.0.0 || ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^1.0.0 || ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" @@ -5904,10 +5904,10 @@ __metadata: resolution: "@stackflow/plugin-lifecycle@workspace:extensions/plugin-lifecycle" dependencies: "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/plugin-renderer-basic": "npm:^1.1.14" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/plugin-renderer-basic": "npm:^1.1.15" + "@stackflow/react": "npm:^2.1.2" "@swc/core": "npm:^1.6.6" "@swc/jest": "npm:^0.2.36" "@testing-library/dom": "npm:^10.4.0" @@ -5922,26 +5922,26 @@ __metadata: rimraf: "npm:^6.1.3" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 react: ">=16.8.0" languageName: unknown linkType: soft -"@stackflow/plugin-renderer-basic@npm:^1.1.14, @stackflow/plugin-renderer-basic@workspace:extensions/plugin-renderer-basic": +"@stackflow/plugin-renderer-basic@npm:^1.1.15, @stackflow/plugin-renderer-basic@workspace:extensions/plugin-renderer-basic": version: 0.0.0-use.local resolution: "@stackflow/plugin-renderer-basic@workspace:extensions/plugin-renderer-basic" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" react: "npm:^18.3.1" rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" @@ -5952,16 +5952,16 @@ __metadata: version: 0.0.0-use.local resolution: "@stackflow/plugin-renderer-web@workspace:extensions/plugin-renderer-web" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" react: "npm:^18.3.1" rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" @@ -5974,58 +5974,58 @@ __metadata: dependencies: "@sentry/browser": "npm:^10.46.0" "@sentry/core": "npm:^10.46.0" - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" esbuild: "npm:^0.23.0" typescript: "npm:^5.5.3" peerDependencies: "@sentry/browser": ">=8.0.0" "@sentry/core": ">=8.0.0" - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 languageName: unknown linkType: soft -"@stackflow/plugin-stack-depth-change@npm:^1.1.6, @stackflow/plugin-stack-depth-change@workspace:extensions/plugin-stack-depth-change": +"@stackflow/plugin-stack-depth-change@npm:^1.1.7, @stackflow/plugin-stack-depth-change@workspace:extensions/plugin-stack-depth-change": version: 0.0.0-use.local resolution: "@stackflow/plugin-stack-depth-change@workspace:extensions/plugin-stack-depth-change" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@types/node": "npm:^20.14.9" esbuild: "npm:^0.23.0" rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 languageName: unknown linkType: soft -"@stackflow/react-ui-core@npm:^1.3.5, @stackflow/react-ui-core@workspace:extensions/react-ui-core": +"@stackflow/react-ui-core@npm:^1.3.6, @stackflow/react-ui-core@workspace:extensions/react-ui-core": version: 0.0.0-use.local resolution: "@stackflow/react-ui-core@workspace:extensions/react-ui-core" dependencies: - "@stackflow/core": "npm:^2.0.0" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.2" - "@stackflow/react": "npm:^2.0.0" + "@stackflow/react": "npm:^2.1.2" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" react: "npm:^18.3.1" rimraf: "npm:^3.0.2" typescript: "npm:^5.5.3" peerDependencies: - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@stackflow/react": ^2.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" languageName: unknown linkType: soft -"@stackflow/react@npm:^2.0.0, @stackflow/react@npm:^2.1.0, @stackflow/react@workspace:integrations/react": +"@stackflow/react@npm:^2.1.2, @stackflow/react@workspace:integrations/react": version: 0.0.0-use.local resolution: "@stackflow/react@workspace:integrations/react" dependencies: "@stackflow/config": "npm:^2.0.0" - "@stackflow/core": "npm:^2.0.1" + "@stackflow/core": "npm:^3.0.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" @@ -6036,7 +6036,7 @@ __metadata: typescript: "npm:^5.5.3" peerDependencies: "@stackflow/config": ^2.0.0 - "@stackflow/core": ^2.0.0 + "@stackflow/core": ^3.0.0 "@types/react": ">=16.8.0" react: ">=16.8.0" languageName: unknown