Skip to content

Commit d0cf9fc

Browse files
committed
Merge branch 'main' into feat/merge-main-updates-into-alpha
2 parents 4d51cf4 + 3cc99a3 commit d0cf9fc

14 files changed

+190
-183
lines changed

.github/workflows/playwright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: pnpm playwright install --with-deps
2727
- name: Run Playwright tests
2828
run: pnpm playwright test
29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
if: always()
3131
with:
3232
name: playwright-report

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Run typecheck
3030
run: pnpm typecheck
3131
- name: Code coverage
32+
uses: codecov/codecov-action@v5
3233
env:
3334
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
34-
run: pnpm codecov
3535
- name: Prepare new release
3636
run: pnpm semantic-release --dry-run

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Run tests
3030
run: pnpm test-ci
3131
- name: Code coverage
32+
uses: codecov/codecov-action@v5
3233
env:
3334
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
34-
run: pnpm codecov
3535
- name: Release
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# [3.10.0](https://github.com/cchanxzy/react-currency-input-field/compare/v3.9.2...v3.10.0) (2025-02-22)
2+
3+
4+
### Features
5+
6+
* intlConfig support all NumberFormatOptions ([#386](https://github.com/cchanxzy/react-currency-input-field/issues/386)) ([0b84349](https://github.com/cchanxzy/react-currency-input-field/commit/0b8434938769109a9073eec840d08a48e03e000c))
7+
8+
## [3.9.2](https://github.com/cchanxzy/react-currency-input-field/compare/v3.9.1...v3.9.2) (2025-02-22)
9+
10+
11+
### Bug Fixes
12+
13+
* handle cases where decimalSeparator is empty ([#385](https://github.com/cchanxzy/react-currency-input-field/issues/385)) ([656e5c2](https://github.com/cchanxzy/react-currency-input-field/commit/656e5c2e1407a36ecf26d5fc3c7e8f0037436ef6))
14+
15+
## [3.9.1](https://github.com/cchanxzy/react-currency-input-field/compare/v3.9.0...v3.9.1) (2025-02-22)
16+
17+
18+
### Bug Fixes
19+
20+
* add react 19 as peer dependency ([396d57b](https://github.com/cchanxzy/react-currency-input-field/commit/396d57b638c6419c4997e267f176a7d0b5c6bd92)), closes [#380](https://github.com/cchanxzy/react-currency-input-field/issues/380)
21+
22+
123
# [4.0.0-alpha.2](https://github.com/cchanxzy/react-currency-input-field/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2024-11-12)
224

325

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"gh-predeploy": "parcel build src/examples/index.html --dist-dir demo/examples --public-url ./",
3131
"gh-deploy": "pnpm gh-predeploy && gh-pages -d demo/examples",
3232
"ci": "pnpm && pnpm build",
33-
"codecov": "codecov",
3433
"semantic-release": "semantic-release"
3534
},
3635
"repository": {
@@ -57,7 +56,7 @@
5756
"devDependencies": {
5857
"@commitlint/cli": "^18.4.3",
5958
"@commitlint/config-conventional": "^18.4.3",
60-
"@playwright/test": "^1.40.1",
59+
"@playwright/test": "^1.50.1",
6160
"@semantic-release/changelog": "^6.0.3",
6261
"@semantic-release/git": "^10.0.1",
6362
"@testing-library/dom": "^9.3.3",
@@ -70,7 +69,6 @@
7069
"@types/react-dom": "^18.2.18",
7170
"@typescript-eslint/eslint-plugin": "^6.16.0",
7271
"@typescript-eslint/parser": "^6.16.0",
73-
"codecov": "^3.8.3",
7472
"cross-env": "^7.0.3",
7573
"esbuild": "^0.24.0",
7674
"eslint": "^8.56.0",
@@ -97,7 +95,7 @@
9795
"typescript": "^5.3.3"
9896
},
9997
"peerDependencies": {
100-
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
98+
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
10199
},
102100
"dependencies": {},
103101
"targets": {

0 commit comments

Comments
 (0)