diff --git a/.changeset/fix-consent-flush-and-double-pageview.md b/.changeset/fix-consent-flush-and-double-pageview.md deleted file mode 100644 index 85150d1..0000000 --- a/.changeset/fix-consent-flush-and-double-pageview.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@junctionjs/core": patch -"@junctionjs/next": patch ---- - -fix(core): flush event buffer on consent change so queued events dispatch immediately - -fix(next): derive single URL dep in PageTracker to prevent double pageview on navigation diff --git a/.changeset/necessary-consent-always-granted.md b/.changeset/necessary-consent-always-granted.md deleted file mode 100644 index eddeb37..0000000 --- a/.changeset/necessary-consent-always-granted.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@junctionjs/core": patch ---- - -fix(core): pin `necessary: true` in consent state so it is always granted and cannot be overridden diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 0884613..ea6ff78 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,15 @@ # @junctionjs/core +## 0.2.1 + +### Patch Changes + +- [#9](https://github.com/tyssejc/junction/pull/9) [`79fc81d`](https://github.com/tyssejc/junction/commit/79fc81d2ffd6628e079071c6085b4c790463c494) Thanks [@tyssejc](https://github.com/tyssejc)! - fix(core): flush event buffer on consent change so queued events dispatch immediately + + fix(next): derive single URL dep in PageTracker to prevent double pageview on navigation + +- [#10](https://github.com/tyssejc/junction/pull/10) [`deb159c`](https://github.com/tyssejc/junction/commit/deb159c8535932cc128a6664ca4e90a422563d42) Thanks [@tyssejc](https://github.com/tyssejc)! - fix(core): pin `necessary: true` in consent state so it is always granted and cannot be overridden + ## 0.2.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 08ed255..57056e2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@junctionjs/core", - "version": "0.2.0", + "version": "0.2.1", "description": "Isomorphic event collector core — types, consent, validation, and runtime", "type": "module", "main": "dist/index.js", diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index 792bfb4..677bf42 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,16 @@ # @junctionjs/next +## 1.0.1 + +### Patch Changes + +- [#9](https://github.com/tyssejc/junction/pull/9) [`79fc81d`](https://github.com/tyssejc/junction/commit/79fc81d2ffd6628e079071c6085b4c790463c494) Thanks [@tyssejc](https://github.com/tyssejc)! - fix(core): flush event buffer on consent change so queued events dispatch immediately + + fix(next): derive single URL dep in PageTracker to prevent double pageview on navigation + +- Updated dependencies [[`79fc81d`](https://github.com/tyssejc/junction/commit/79fc81d2ffd6628e079071c6085b4c790463c494), [`deb159c`](https://github.com/tyssejc/junction/commit/deb159c8535932cc128a6664ca4e90a422563d42)]: + - @junctionjs/core@0.2.1 + ## 1.0.0 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 6169058..b248370 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@junctionjs/next", - "version": "1.0.0", + "version": "1.0.1", "description": "Next.js integration for Junction", "type": "module", "main": "dist/index.js", @@ -20,7 +20,7 @@ }, "peerDependencies": { "@junctionjs/client": "^0.1.2", - "@junctionjs/core": "^0.2.0", + "@junctionjs/core": "^0.2.1", "@junctionjs/debug": "^1.0.0", "next": ">=14.0.0", "react": ">=18.0.0"