Skip to content

Commit 50cd486

Browse files
committed
Merge remote-tracking branch 'origin/master' into eslint-no-extraneous-dependencies
2 parents e87b44d + d260152 commit 50cd486

File tree

23 files changed

+114
-97
lines changed

23 files changed

+114
-97
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 5.7.3
4+
5+
* Fix `<ShowGuesser>` print incorrect code for reference arrays ([#10682](https://github.com/marmelab/react-admin/pull/10682)) ([djhi](https://github.com/djhi))
6+
* Fix `<RichTextField>` should render `emptyText` when value is an empty string ([#10670](https://github.com/marmelab/react-admin/pull/10670)) ([slax57](https://github.com/slax57))
7+
* Fix TS error when using `EditGuesser` in module's default export ([#10669](https://github.com/marmelab/react-admin/pull/10669)) ([slax57](https://github.com/slax57))
8+
* Fix `useInput` default value overrides `null` ([#10665](https://github.com/marmelab/react-admin/pull/10665)) ([djhi](https://github.com/djhi))
9+
* [Doc] Fix `useNotify` custom notification with close example ([#10683](https://github.com/marmelab/react-admin/pull/10683)) ([djhi](https://github.com/djhi))
10+
* [doc] Add `AutoPersistInStore` doc page ([#10681](https://github.com/marmelab/react-admin/pull/10681)) ([erwanMarmelab](https://github.com/erwanMarmelab))
11+
* [Doc] Fix docs anchors ([#10675](https://github.com/marmelab/react-admin/pull/10675)) ([WiXSL](https://github.com/WiXSL))
12+
* [Doc] Fix Dialog Forms examples regarding `hasCreate` ([#10671](https://github.com/marmelab/react-admin/pull/10671)) ([slax57](https://github.com/slax57))
13+
* [Doc] Explain how React admin handles empty values ([#10666](https://github.com/marmelab/react-admin/pull/10666)) ([djhi](https://github.com/djhi))
14+
* [Doc] Update NextJS integration ([#10664](https://github.com/marmelab/react-admin/pull/10664)) ([djhi](https://github.com/djhi))
15+
* [Doc] Document how to setup Remix for production debugging ([#10663](https://github.com/marmelab/react-admin/pull/10663)) ([djhi](https://github.com/djhi))
16+
* [Demo] Use Echarts instead of rechart ([#10677](https://github.com/marmelab/react-admin/pull/10677)) ([fzaninotto](https://github.com/fzaninotto))
17+
* [Demo] Fix order chart currency ([#10668](https://github.com/marmelab/react-admin/pull/10668)) ([fzaninotto](https://github.com/fzaninotto))
18+
* Bump vite from 5.4.16 to 5.4.17 ([#10659](https://github.com/marmelab/react-admin/pull/10659)) ([dependabot[bot]](https://github.com/apps/dependabot))
19+
320
## 5.7.2
421

522
* Fix `<FilterLiveForm>` compatibility with react-hook-form 7.55.0 ([#10657](https://github.com/marmelab/react-admin/pull/10657)) ([slax57](https://github.com/slax57))

docs/useNotify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ export const CheckForApplicationUpdate = () => {
240240
const notify = useNotify();
241241

242242
const onNewVersionAvailable = () => {
243-
// autoHideDuration is set to 0 to disable the auto hide feature
244-
notify(<ApplicationUpdateNotification />, { autoHideDuration: 0 });
243+
// autoHideDuration is set to null to disable the auto hide feature
244+
notify(<ApplicationUpdateNotification />, { autoHideDuration: null });
245245
};
246246

247247
useCheckForApplicationUpdate({ onNewVersionAvailable, ...rest });

examples/data-generator/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-generator-retail",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"homepage": "https://github.com/marmelab/react-admin/tree/master/examples/data-generator",
55
"bugs": "https://github.com/marmelab/react-admin/issues",
66
"license": "MIT",
@@ -19,7 +19,7 @@
1919
},
2020
"devDependencies": {
2121
"cross-env": "^5.2.0",
22-
"ra-core": "^5.7.2",
22+
"ra-core": "^5.7.3",
2323
"rimraf": "^3.0.2",
2424
"typescript": "^5.1.3"
2525
},

examples/simple/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -16,13 +16,13 @@
1616
"@tanstack/react-query-devtools": "^5.21.7",
1717
"jsonexport": "^3.2.0",
1818
"lodash": "~4.17.5",
19-
"ra-data-fakerest": "^5.7.2",
20-
"ra-i18n-polyglot": "^5.7.2",
21-
"ra-input-rich-text": "^5.7.2",
22-
"ra-language-english": "^5.7.2",
23-
"ra-language-french": "^5.7.2",
19+
"ra-data-fakerest": "^5.7.3",
20+
"ra-i18n-polyglot": "^5.7.3",
21+
"ra-input-rich-text": "^5.7.3",
22+
"ra-language-english": "^5.7.3",
23+
"ra-language-french": "^5.7.3",
2424
"react": "^18.3.1",
25-
"react-admin": "^5.7.2",
25+
"react-admin": "^5.7.3",
2626
"react-dom": "^18.3.1",
2727
"react-hook-form": "^7.53.0",
2828
"react-router": "^6.28.1",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.5.1",
33
"packages": ["examples/data-generator", "examples/simple", "packages/*"],
4-
"version": "5.7.2",
4+
"version": "5.7.3",
55
"npmClient": "yarn"
66
}

packages/create-react-admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-react-admin",
33
"description": "A CLI to quickly start a new react-admin project",
4-
"version": "5.7.2",
4+
"version": "5.7.3",
55
"license": "MIT",
66
"bin": "lib/cli.js",
77
"type": "module",

packages/ra-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ra-core",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"description": "Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React",
55
"files": [
66
"*.md",

packages/ra-data-fakerest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ra-data-fakerest",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"description": "JSON Server data provider for react-admin",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -43,7 +43,7 @@
4343
"@types/jest": "^29.5.2",
4444
"cross-env": "^5.2.0",
4545
"expect": "^27.4.6",
46-
"ra-core": "^5.7.2",
46+
"ra-core": "^5.7.3",
4747
"rimraf": "^3.0.2",
4848
"typescript": "^5.1.3"
4949
},

packages/ra-data-graphql-simple/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ra-data-graphql-simple",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"description": "A GraphQL simple data provider for react-admin",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -37,7 +37,7 @@
3737
"graphql-ast-types-browser": "~1.0.2",
3838
"lodash": "~4.17.5",
3939
"pluralize": "~7.0.0",
40-
"ra-data-graphql": "^5.7.2"
40+
"ra-data-graphql": "^5.7.3"
4141
},
4242
"peerDependencies": {
4343
"graphql": "^15.6.0",

packages/ra-data-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ra-data-graphql",
3-
"version": "5.7.2",
3+
"version": "5.7.3",
44
"description": "A GraphQL data provider for react-admin",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

0 commit comments

Comments
 (0)