@wordpress/route 0.16.0 → 0.17.0

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 +11 -0
  2. package/package.json +4 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ <!-- Learn how to maintain this file at https://github.com/WordPress/gutenberg/tree/HEAD/packages#maintaining-changelogs. -->
2
+
3
+ ## Unreleased
4
+
5
+ ## 0.17.0 (2026-07-14)
6
+
7
+ ### Enhancements
8
+
9
+ - Widen React peer dependency ranges to `^18 || ^19` to support both React 18 and React 19 environments ([#80024](https://github.com/WordPress/gutenberg/pull/80024)).
10
+
11
+ ## 0.16.0 (2026-07-01)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/route",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "Routing utilities for WordPress admin interfaces.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -44,13 +44,13 @@
44
44
  "dependencies": {
45
45
  "@tanstack/history": "^1.133.28",
46
46
  "@tanstack/react-router": "^1.120.5",
47
- "@wordpress/private-apis": "^1.50.0"
47
+ "@wordpress/private-apis": "^1.51.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "react": "^18.0.0"
50
+ "react": "^18 || ^19"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "fee6e24e8e63d36f6bbcf487c193461e9bd79753"
55
+ "gitHead": "e9a74f9c14095a34398ecd4d1f7a908e55051205"
56
56
  }