raviger 5.0.0-2 → 5.1.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.
- package/CHANGELOG.md +7 -1
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
-
## [5.
|
|
7
|
+
## [5.1.0] - 20205-09-30
|
|
8
|
+
### Added
|
|
9
|
+
- `<Link>` props for `NavigateOptions`
|
|
10
|
+
|
|
11
|
+
## [5.0.0] - 2025-06-29
|
|
8
12
|
### Added
|
|
9
13
|
- Added support for `useRoutes` to take an array to specify route matching priority
|
|
14
|
+
- Support for React 19
|
|
10
15
|
### Changed
|
|
11
16
|
- **BREAKING**: changed parameters on `useQueryParams` setter options from `replace, replaceHistory` to `overwrite, replace` to keep consistency with `replace` on other navigation functions.
|
|
12
17
|
- Added support for underscore `_` in path part matchers
|
|
18
|
+
- Removed support for Node versions older than 20
|
|
13
19
|
|
|
14
20
|
## [4.2.1] - 2025-04-08
|
|
15
21
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raviger",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "React routing with hooks",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
"navigation",
|
|
12
12
|
"navigator"
|
|
13
13
|
],
|
|
14
|
-
"repository":
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/kyeotic/raviger.git"
|
|
17
|
+
},
|
|
15
18
|
"author": "Tim Kye <tyrsius@gmail.com>",
|
|
16
19
|
"license": "MIT",
|
|
17
20
|
"private": false,
|