Skip to content

Commit a2bd3eb

Browse files
Removed .only on a core test (#4243)
One of the `core` tests was accidentally left as `.only`, undoing that as well as bumping most of the minor and patch package updates - Updated `StringField.test.jsx` to remove a `.only` - Centralized `esbuild` down to the main `package.json` - Updated the `CHANGELOG.md` accordingly
1 parent 659798f commit a2bd3eb

File tree

17 files changed

+12
-29
lines changed

17 files changed

+12
-29
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ should change the heading of the (upcoming) version to include a major version b
1616
1717
-->
1818

19+
# 5.19.2
20+
21+
## @rjsf/core
22+
23+
- Removed `.only` on tests that was accidentally added in `5.19.0`
24+
1925
# 5.19.1
2026

2127
## Dev / docs / playground
@@ -24,11 +30,11 @@ should change the heading of the (upcoming) version to include a major version b
2430

2531
# 5.19.0
2632

27-
##@rjsf/antd
33+
## @rjsf/antd
2834

2935
- Updated `AltDateWidget` to use the new `dateRangeOptions()` function in `utils` to support relative Years and reversing the order of the Year choices
3036

31-
##@rjsf/chakra-ui
37+
## @rjsf/chakra-ui
3238

3339
- Updated `AltDateWidget` to use the new `dateRangeOptions()` function in `utils` to support relative Years and reversing the order of the Year choices
3440

package-lock.json

Lines changed: 1 addition & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"lint": "eslint './packages/**/*.{ts,tsx}' --quiet",
1414
"cs-check": "lerna run cs-check",
1515
"cs-format": "lerna run cs-format",
16+
"clean-build": "rimraf packages/*/tsconfig.tsbuildinfo && rimraf packages/*/lib && rimraf packages/*/dist && npm run build",
1617
"build": "lerna run --stream build",
1718
"build-serial": "lerna run --concurrency 1 --stream build",
1819
"start": "echo 'use \"npm run build\" from main directory and then \"npm start\" in the playground package'",
@@ -43,6 +44,7 @@
4344
"@typescript-eslint/eslint-plugin": "^5.62.0",
4445
"@typescript-eslint/parser": "^5.62.0",
4546
"cross-env": "^7.0.3",
47+
"esbuild": "^0.18.20",
4648
"eslint": "^8.56.0",
4749
"eslint-config-prettier": "^8.10.0",
4850
"eslint-plugin-import": "^2.29.1",

packages/antd/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
"atob": "^2.1.2",
7171
"babel-jest": "^29.7.0",
7272
"dayjs": "^1.11.10",
73-
"esbuild": "^0.18.20",
7473
"eslint": "^8.56.0",
7574
"jest": "^29.7.0",
7675
"jest-environment-jsdom": "^29.7.0",

packages/bootstrap-4/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"@types/react-dom": "^18.2.19",
5959
"@types/react-test-renderer": "^18.0.7",
6060
"babel-jest": "^29.7.0",
61-
"esbuild": "^0.18.20",
6261
"eslint": "^8.56.0",
6362
"jest": "^29.7.0",
6463
"jest-environment-jsdom": "^29.7.0",

packages/chakra-ui/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
"@types/react-test-renderer": "^18.0.7",
7979
"babel-jest": "^29.7.0",
8080
"chakra-react-select": "^3.3.9",
81-
"esbuild": "^0.18.20",
8281
"eslint": "^8.56.0",
8382
"framer-motion": "^5.6.0",
8483
"jest": "^29.7.0",

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"atob": "^2.1.2",
6868
"babel-jest": "^29.7.0",
6969
"chai": "^3.5.0",
70-
"esbuild": "^0.18.20",
7170
"eslint": "^8.56.0",
7271
"html": "^1.0.0",
7372
"jest": "^29.7.0",

packages/core/test/StringField.test.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ describe('StringField', () => {
13361336
});
13371337
});
13381338

1339-
describe.only('AltDateTimeWidget with yearsRange option', () => {
1339+
describe('AltDateTimeWidget with yearsRange option', () => {
13401340
it('should render a date field with years range from 1980-1985', () => {
13411341
const uiSchema = { 'ui:widget': 'alt-datetime', 'ui:options': { yearsRange: [1980, 1985] } };
13421342
const { node } = createFormComponent({

packages/fluent-ui/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"@types/react-dom": "^18.2.19",
5757
"@types/react-test-renderer": "^18.0.7",
5858
"babel-jest": "^29.7.0",
59-
"esbuild": "^0.18.20",
6059
"eslint": "^8.56.0",
6160
"jest": "^29.7.0",
6261
"jest-environment-jsdom": "^29.7.0",

packages/fluentui-rc/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
"@types/react-dom": "^18.2.19",
6262
"@types/react-test-renderer": "^18.0.7",
6363
"babel-jest": "^29.7.0",
64-
"esbuild": "^0.18.20",
6564
"eslint": "^8.56.0",
6665
"jest": "^29.7.0",
6766
"jest-environment-jsdom": "^29.7.0",

0 commit comments

Comments
 (0)