Skip to content

Commit 8868617

Browse files
authored
Merge pull request #1 from Xarlizard/v1.0.1-update
bumped versions: Axios (0.21.0 -> 1.10.0) & React (16.8.0 -> 19.1.0)
2 parents ff0fd72 + a653c0a commit 8868617

File tree

3 files changed

+55
-29
lines changed

3 files changed

+55
-29
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.1] - 2025-07-11
9+
10+
### Changed
11+
12+
- Updated minimum Axios version from `>=0.21.0` to `^1.10.0` for better security and performance
13+
- Updated minimum React version from `>=16.8.0` to `^19.1.0` for latest features and improvements
14+
- Added Axios as both dependency and peerDependency for optimal user experience
15+
- Improved dependency management to prevent version conflicts
16+
17+
### Fixed
18+
19+
- Resolved potential React hook conflicts by optimizing dependency structure
20+
- Enhanced npm linking compatibility for local development
21+
822
## [1.0.0] - 2025-07-11
923

1024
### Added

package-lock.json

Lines changed: 33 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-api-forge",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A flexible and robust React hook factory for creating API hooks with consistent patterns",
55
"type": "module",
66
"main": "dist/index.js",
@@ -68,9 +68,12 @@
6868
"url": "https://github.com/xarlizard"
6969
},
7070
"license": "MIT",
71+
"dependencies": {
72+
"axios": "^1.10.0"
73+
},
7174
"peerDependencies": {
72-
"axios": ">=0.21.0",
73-
"react": ">=16.8.0"
75+
"axios": "^1.10.0",
76+
"react": "^19.1.0"
7477
},
7578
"devDependencies": {
7679
"@rollup/plugin-typescript": "^11.0.0",
@@ -83,9 +86,7 @@
8386
"rollup": "^3.0.0",
8487
"ts-jest": "^29.4.0",
8588
"tslib": "^2.0.0",
86-
"typescript": "^5.0.0"
87-
},
88-
"dependencies": {
89-
"axios": ">=0.21.0"
89+
"typescript": "^5.0.0",
90+
"react": "^19.1.0"
9091
}
9192
}

0 commit comments

Comments
 (0)