Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.2.0](https://github.com/StackOneHQ/react-hub/compare/v1.1.1...v1.2.0) (2025-01-04)


### Features

* add React 19 support to peerDependencies ([#XX](https://github.com/StackOneHQ/react-hub/issues/XX)) - Added support for React 19 in peer dependencies to enable installation in projects using React 19+
Copy link

Copilot AI Aug 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog entry contains placeholder issue numbers ([#XX]) that should be replaced with actual issue or PR numbers before merging.

Suggested change
* add React 19 support to peerDependencies ([#XX](https://github.com/StackOneHQ/react-hub/issues/XX)) - Added support for React 19 in peer dependencies to enable installation in projects using React 19+
* add React 19 support to peerDependencies ([#23](https://github.com/StackOneHQ/react-hub/issues/23)) - Added support for React 19 in peer dependencies to enable installation in projects using React 19+

Copilot uses AI. Check for mistakes.
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Changelog Template Text Left In Issue Links

The CHANGELOG.md file contains unreplaced placeholder text [#XX] and issues/XX within a GitHub issue link. This template text was accidentally committed instead of the actual issue number, resulting in a broken link.

Fix in Cursor Fix in Web


## [1.1.1](https://github.com/StackOneHQ/react-hub/compare/v1.1.0...v1.1.1) (2024-10-31)


Expand Down
68 changes: 19 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackone/react-hub",
"version": "1.1.1",
"version": "1.2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"author": "StackOne",
Expand All @@ -26,7 +26,7 @@
"@rollup/plugin-terser": "^0.1.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/react": "^18.0.25",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"babel-plugin-add-module-exports": "^1.0.4",
Expand All @@ -36,7 +36,8 @@
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^3.2.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
Expand All @@ -48,7 +49,8 @@
"react-script-hook": "^1.7.2"
},
"peerDependencies": {
"react": "^16.8.6 || 17 - 18"
"react": "^16.8.6 || 17 - 18 || ^19.0.0",
"react-dom": "^16.8.6 || 17 - 18 || ^19.0.0"
},
"files": [
"dist"
Expand Down
Loading