@ecopages/react-router 0.2.0-alpha.30 → 0.2.0-alpha.32

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/package.json +3 -3
  2. package/CHANGELOG.md +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/react-router",
3
- "version": "0.2.0-alpha.30",
3
+ "version": "0.2.0-alpha.32",
4
4
  "description": "Client-side SPA router for EcoPages React applications",
5
5
  "keywords": [
6
6
  "ecopages",
@@ -32,8 +32,8 @@
32
32
  "directory": "packages/react-router"
33
33
  },
34
34
  "peerDependencies": {
35
- "@ecopages/core": "0.2.0-alpha.30",
36
- "@ecopages/react": "0.2.0-alpha.30"
35
+ "@ecopages/core": "0.2.0-alpha.32",
36
+ "@ecopages/react": "0.2.0-alpha.32"
37
37
  },
38
38
  "dependencies": {
39
39
  "react": "^19",
package/CHANGELOG.md DELETED
@@ -1,21 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to `@ecopages/react-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
- ### Bug Fixes
10
-
11
- - Fixed same-page hash links and Shadow DOM TOC clicks to bypass React Router interception so anchor navigation preserves the URL fragment without a document fetch.
12
- - Extended page-module extraction to honor explicit hydration markers and self-owned React page entry bundles during navigation.
13
- - Fixed current-page reloads to accept HMR module overrides so persisted-layout refreshes import the rebuilt active page entry.
14
- - Fixed React-to-browser-router handoffs, queued-click replay, and stale-navigation races during mixed-router navigations.
15
- - Standardized route payload reads, document-owner markers, rerun scripts, and current-page HMR refreshes for persisted React layouts.
16
-
17
- ### Refactoring
18
-
19
- - Routed browser handoff and current-page reloads through the shared navigation coordinator.
20
- - Removed the React router adapter `importMapKey` field so the adapter now exposes only the browser bundle import path used by both development and production hydration.
21
- - Updated package metadata for the current core, esbuild adapter, and React peer dependency surface.