@ecopages/browser-router 0.2.0-alpha.33 → 0.2.0-alpha.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@ecopages/browser-router` are documented here.
4
+
5
+ > **Note:** Changelog tracking begins at version `0.2.0`. Changes prior to this release are not recorded here but are available in the git history.
6
+
7
+ ## [UNRELEASED] — TBD
8
+
9
+ ### Features
10
+
11
+ - Added cross-router handoff hooks, configurable `<html>` attribute syncing, and public document sync helpers.
12
+
13
+ ### Bug Fixes
14
+
15
+ - Fixed navigation races, duplicate script injection, and stale cleanup during repeated page swaps.
16
+ - Fixed mixed-runtime document ownership, script reruns, persisted head scripts, and client-managed `<html>` state during browser-router navigations.
17
+ - Fixed skipped View Transition lifecycle aborts leaking as unhandled browser-router test errors.
18
+ - Fixed body morph swaps retaining stale content when pages contain duplicate `id` attributes by limiting morphdom keying to explicitly persisted nodes.
19
+ - Fixed browser-router stylesheet prefetching to warm future page CSS without injecting unused `preload` hints that trigger browser console warnings.
20
+
21
+ ### Refactoring
22
+
23
+ - Routed handoff and current-page reload behavior through the shared navigation coordinator.
24
+
25
+ ### Documentation
26
+
27
+ - Updated the README examples for the current router API.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/browser-router",
3
- "version": "0.2.0-alpha.33",
3
+ "version": "0.2.0-alpha.34",
4
4
  "description": "Client-side router for Ecopages with view transitions support",
5
5
  "keywords": [
6
6
  "ecopages",
@@ -35,7 +35,7 @@
35
35
  "morphdom": "^2.7.8"
36
36
  },
37
37
  "peerDependencies": {
38
- "@ecopages/core": "0.2.0-alpha.33"
38
+ "@ecopages/core": "0.2.0-alpha.34"
39
39
  },
40
40
  "types": "./src/index.d.ts"
41
41
  }