diff --git a/.changeset/chubby-pianos-heal.md b/.changeset/chubby-pianos-heal.md deleted file mode 100644 index 286ef3f04..000000000 --- a/.changeset/chubby-pianos-heal.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@stackflow/react": minor ---- - -`StructuredActivityComponentType` is added. - -Structured activity components are components modeling activity view while exposing major features of an activity. -Allowing developers easily customize user experience of an activity view, it even allow stackflow to perform various kinds of optimizations. diff --git a/.changeset/crazy-rats-accept.md b/.changeset/crazy-rats-accept.md deleted file mode 100644 index faf2d7e24..000000000 --- a/.changeset/crazy-rats-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackflow/core": minor ---- - -Expose events used to build a stack via `Stack.events` diff --git a/.changeset/gold-groups-own.md b/.changeset/gold-groups-own.md deleted file mode 100644 index e986eee12..000000000 --- a/.changeset/gold-groups-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackflow/plugin-preload": patch ---- - -Sync with type constraint changes in stackflow/react diff --git a/.changeset/new-pandas-return.md b/.changeset/new-pandas-return.md deleted file mode 100644 index 4f69a1de2..000000000 --- a/.changeset/new-pandas-return.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackflow/plugin-history-sync": minor ---- - -Add `defaultHistory` route option to pre-seed stack for better deep link experiences diff --git a/.changeset/sad-adults-prove.md b/.changeset/sad-adults-prove.md deleted file mode 100644 index 830ff1f21..000000000 --- a/.changeset/sad-adults-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackflow/plugin-history-sync": minor ---- - -Expose stack initialization process status for users to disable logging or fetching while initialization transition diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 11957c325..747ed9174 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @stackflow/core +## 1.3.0 + +### Minor Changes + +- 83ee5ed: Expose events used to build a stack via `Stack.events` + ## 1.2.0 ### Minor Changes diff --git a/core/package.json b/core/package.json index 92dc7fa85..4d7b02b3a 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/core", - "version": "1.2.0", + "version": "1.3.0", "repository": { "type": "git", "url": "https://github.com/daangn/stackflow.git", diff --git a/extensions/plugin-history-sync/CHANGELOG.md b/extensions/plugin-history-sync/CHANGELOG.md index 3435db616..6e443338c 100644 --- a/extensions/plugin-history-sync/CHANGELOG.md +++ b/extensions/plugin-history-sync/CHANGELOG.md @@ -1,5 +1,12 @@ # @stackflow/plugin-history-sync +## 1.8.0 + +### Minor Changes + +- f298988: Add `defaultHistory` route option to pre-seed stack for better deep link experiences +- 83ee5ed: Expose stack initialization process status for users to disable logging or fetching while initialization transition + ## 1.7.1 ### Patch Changes diff --git a/extensions/plugin-history-sync/package.json b/extensions/plugin-history-sync/package.json index 86ceeb74c..b6a6aeddb 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.7.1", + "version": "1.8.0", "repository": { "type": "git", "url": "https://github.com/daangn/stackflow.git", @@ -49,9 +49,9 @@ "devDependencies": { "@graphql-tools/schema": "^10.0.5", "@stackflow/config": "^1.2.1", - "@stackflow/core": "^1.1.1", + "@stackflow/core": "^1.3.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/react": "^1.4.2", + "@stackflow/react": "^1.7.0", "@swc/core": "^1.6.6", "@swc/jest": "^0.2.36", "@types/jest": "^29.5.12", diff --git a/extensions/plugin-preload/CHANGELOG.md b/extensions/plugin-preload/CHANGELOG.md index 5dbea0447..6595bbc07 100644 --- a/extensions/plugin-preload/CHANGELOG.md +++ b/extensions/plugin-preload/CHANGELOG.md @@ -1,5 +1,11 @@ # @stackflow/plugin-preload +## 1.4.4 + +### Patch Changes + +- f298988: Sync with type constraint changes in stackflow/react + ## 1.4.3 ## 1.4.3-canary.0 diff --git a/extensions/plugin-preload/package.json b/extensions/plugin-preload/package.json index b0dd566b2..acf3c3989 100644 --- a/extensions/plugin-preload/package.json +++ b/extensions/plugin-preload/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/plugin-preload", - "version": "1.4.3", + "version": "1.4.4", "repository": { "type": "git", "url": "https://github.com/daangn/stackflow.git", @@ -31,10 +31,10 @@ "typecheck": "tsc --noEmit" }, "devDependencies": { - "@stackflow/core": "^1.1.0", + "@stackflow/core": "^1.3.0", "@stackflow/esbuild-config": "^1.0.3", - "@stackflow/plugin-history-sync": "^1.7.0", - "@stackflow/react": "^1.4.0", + "@stackflow/plugin-history-sync": "^1.8.0", + "@stackflow/react": "^1.7.0", "@types/react": "^18.3.3", "esbuild": "^0.23.0", "react": "^18.3.1", diff --git a/integrations/react/CHANGELOG.md b/integrations/react/CHANGELOG.md index b59eab346..9c853e1b9 100644 --- a/integrations/react/CHANGELOG.md +++ b/integrations/react/CHANGELOG.md @@ -1,5 +1,14 @@ # @stackflow/react +## 1.7.0 + +### Minor Changes + +- f298988: `StructuredActivityComponentType` is added. + + Structured activity components are components modeling activity view while exposing major features of an activity. + Allowing developers easily customize user experience of an activity view, it even allow stackflow to perform various kinds of optimizations. + ## 1.6.0 ### Minor Changes diff --git a/integrations/react/package.json b/integrations/react/package.json index 1ce14ba6b..cb3daacd7 100644 --- a/integrations/react/package.json +++ b/integrations/react/package.json @@ -1,6 +1,6 @@ { "name": "@stackflow/react", - "version": "1.6.0", + "version": "1.7.0", "repository": { "type": "git", "url": "https://github.com/daangn/stackflow.git", @@ -45,7 +45,7 @@ }, "devDependencies": { "@stackflow/config": "^1.2.1", - "@stackflow/core": "^1.2.0", + "@stackflow/core": "^1.3.0", "@stackflow/esbuild-config": "^1.0.3", "@types/react": "^18.3.3", "esbuild": "^0.23.0", diff --git a/yarn.lock b/yarn.lock index 222dabf65..98cce742a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5139,7 +5139,7 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/core@npm:^1.1.0, @stackflow/core@npm:^1.1.1, @stackflow/core@npm:^1.2.0, @stackflow/core@workspace:core": +"@stackflow/core@npm:^1.1.0, @stackflow/core@npm:^1.1.1, @stackflow/core@npm:^1.2.0, @stackflow/core@npm:^1.3.0, @stackflow/core@workspace:core": version: 0.0.0-use.local resolution: "@stackflow/core@workspace:core" dependencies: @@ -5347,15 +5347,15 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/plugin-history-sync@npm:^1.7.0, @stackflow/plugin-history-sync@npm:^1.7.1, @stackflow/plugin-history-sync@workspace:extensions/plugin-history-sync": +"@stackflow/plugin-history-sync@npm:^1.7.0, @stackflow/plugin-history-sync@npm:^1.7.1, @stackflow/plugin-history-sync@npm:^1.8.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:^1.2.1" - "@stackflow/core": "npm:^1.1.1" + "@stackflow/core": "npm:^1.3.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/react": "npm:^1.4.2" + "@stackflow/react": "npm:^1.7.0" "@swc/core": "npm:^1.6.6" "@swc/jest": "npm:^0.2.36" "@types/jest": "npm:^29.5.12" @@ -5405,10 +5405,10 @@ __metadata: version: 0.0.0-use.local resolution: "@stackflow/plugin-preload@workspace:extensions/plugin-preload" dependencies: - "@stackflow/core": "npm:^1.1.0" + "@stackflow/core": "npm:^1.3.0" "@stackflow/esbuild-config": "npm:^1.0.3" - "@stackflow/plugin-history-sync": "npm:^1.7.0" - "@stackflow/react": "npm:^1.4.0" + "@stackflow/plugin-history-sync": "npm:^1.8.0" + "@stackflow/react": "npm:^1.7.0" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0" react: "npm:^18.3.1" @@ -5498,12 +5498,12 @@ __metadata: languageName: unknown linkType: soft -"@stackflow/react@npm:^1.3.2, @stackflow/react@npm:^1.4.0, @stackflow/react@npm:^1.4.2, @stackflow/react@npm:^1.5.0, @stackflow/react@npm:^1.6.0, @stackflow/react@workspace:integrations/react": +"@stackflow/react@npm:^1.3.2, @stackflow/react@npm:^1.4.0, @stackflow/react@npm:^1.4.2, @stackflow/react@npm:^1.5.0, @stackflow/react@npm:^1.6.0, @stackflow/react@npm:^1.7.0, @stackflow/react@workspace:integrations/react": version: 0.0.0-use.local resolution: "@stackflow/react@workspace:integrations/react" dependencies: "@stackflow/config": "npm:^1.2.1" - "@stackflow/core": "npm:^1.2.0" + "@stackflow/core": "npm:^1.3.0" "@stackflow/esbuild-config": "npm:^1.0.3" "@types/react": "npm:^18.3.3" esbuild: "npm:^0.23.0"