Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/fix-consent-flush-and-double-pageview.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/necessary-consent-always-granted.md

This file was deleted.

10 changes: 10 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
11 changes: 11 additions & 0 deletions packages/next/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/next/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
Expand Down
Loading