Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump react-admin from 4.7.4 to 5.3.2 in /ui #555

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 4, 2024

Bumps react-admin from 4.7.4 to 5.3.2.

Release notes

Sourced from react-admin's releases.

5.3.2

  • Fix undo logic not working when doing multiple deletions one by one (#10296) (fzaninotto)
  • Fix DateInput ignores the timezone when given (#10311) (fzaninotto)
  • Fix DateInput messes up dates in some timezones (#10299) (djhi)
  • Fix <Edit> ignores mutation meta when updating the getOne cache (#10314) (fzaninotto)
  • Fix ReferenceField link is wrong when the record is not yet loaded (#10309) (fzaninotto)
  • Fix <SimpleList> throws an error when no data in standalone mode (#10313) (fzaninotto)
  • Fix: Remove deprecated 'initialValue' from sanitizeInputRestProps (#10221) (afilp)
  • [Doc] Add Eicrud dataprovider to the docs (#10316) (danyalutsevich)
  • [Doc] Update <StackedFilters> documentation for defaultValue (#10319) (erwanMarmelab)
  • [Doc] Fix Supabase API handler example in NextJS tutorial (#10310) (Ariyn)
  • [Doc] Fix links to react-dropzone doc pages (#10312) (slax57)
  • [Doc] Fix typo in TabbedForm and TabbedShowLayout (#10308) (highwide)
  • [Demo] Leverage canAccess in CRM demo (#10300) (djhi)

5.3.1

  • Fix smart count for no results message (#10295) (thibault-barrat)
  • Fix double decoding of ids in URLs (#10293) (djhi)
  • Fix no results message has untranslated resource name (#10291) (fzaninotto)
  • Fix <AutocompleteInput> displays 'Create' option for choices that already exist when createLabel is provided (#10288) (slax57)
  • [Doc] Fix Authorization link in Authentication page (#10303) (djhi)
  • [Doc] Remove outdated warning about <SimpleFormIterator> cloning its children (#10302) (slax57)
  • [Doc] fix example in README (#10298) (antoinefricker)
  • [Doc] Document react-hook-form limitation preventing using dynamically added inputs in <ArrayInput> with shouldUnregister (#10271) (djhi)

5.3.0

  • Make authentication check pessimistic
    • Disable data provider calls in CRUD controllers while the auth check is pending (#10238) (djhi)
    • Disable rendering of CRUD views while the auth check is pending (#10258) (djhi)
    • Make <Authenticated> component blocking (#10251) (fzaninotto)
  • Add Access Control
    • Introduce useCanAccess, useCanAccessResources, and useCanAccessCallback hooks (#10222) (djhi)
    • Introduce <CanAccess> and <AccessDenied> components (#10222) (djhi)
    • Add access control check in page controllers (list, show, edit, create) (#10247) (djhi)
    • Add access control to views and action buttons (#10225) (djhi)
    • Add access control to <Datagrid rowClick> (#10227) (djhi)
    • Add access control to <DeleteButton> (#10226) (djhi)
    • Add access control to the / route and introduce <NavigateToFirstResource> (#10255) (djhi)
    • Avoid unnecessary rerenders with canAccess hooks when there is no authProvider (#10200) (djhi)
    • Make authProvider.getPermissions optional (#10257) (djhi)
    • Update Simple example to leverage access control (#10278) (slax57)
  • Add support for embedding and prefetching data to reduce API queries (#10270) (fzaninotto)
  • Add per-resource success notifications ("3 posts deleted" instead of "3 elements deleted") (#10203) (fzaninotto)
  • Add support for <Edit emptyWhileLoading> (#10230) (erwanMarmelab)
  • Fix redirection to first route prevents going back in history (#10267) (aqeebpathan)
  • Fix useAuthState may logout even though logoutOfFailure is false (#10280) (fzaninotto)
  • [TypeScript] Make records paths inferred from type compatible with react-hook-form (#10279) (djhi)
  • [Doc] Warn about <AutoSave> incompatibility with warnWhenUnsavedChanges (#10277) (djhi)
  • [Doc] Update mentions of Azure Active Directory to Microsoft Entra ID (#10276) (djhi)
  • [Doc] Rewrite access control documentation (#10250) (fzaninotto)

... (truncated)

Changelog

Sourced from react-admin's changelog.

5.3.2

  • Fix undo logic not working when doing multiple deletions one by one (#10296) (fzaninotto)
  • Fix DateInput ignores the timezone when given (#10311) (fzaninotto)
  • Fix DateInput messes up dates in some timezones (#10299) (djhi)
  • Fix <Edit> ignores mutation meta when updating the getOne cache (#10314) (fzaninotto)
  • Fix ReferenceField link is wrong when the record is not yet loaded (#10309) (fzaninotto)
  • Fix <SimpleList> throws an error when no data in standalone mode (#10313) (fzaninotto)
  • Fix: Remove deprecated 'initialValue' from sanitizeInputRestProps (#10221) (afilp)
  • [Doc] Add Eicrud dataprovider to the docs (#10316) (danyalutsevich)
  • [Doc] Update <StackedFilters> documentation for defaultValue (#10319) (erwanMarmelab)
  • [Doc] Fix Supabase API handler example in NextJS tutorial (#10310) (Ariyn)
  • [Doc] Fix links to react-dropzone doc pages (#10312) (slax57)
  • [Doc] Fix typo in TabbedForm and TabbedShowLayout (#10308) (highwide)
  • [Demo] Leverage canAccess in CRM demo (#10300) (djhi)

5.3.1

  • Fix smart count for no results message (#10295) (thibault-barrat)
  • Fix double decoding of ids in URLs (#10293) (djhi)
  • Fix no results message has untranslated resource name (#10291) (fzaninotto)
  • Fix <AutocompleteInput> displays 'Create' option for choices that already exist when createLabel is provided (#10288) (slax57)
  • [Doc] Fix Authorization link in Authentication page (#10303) (djhi)
  • [Doc] Remove outdated warning about <SimpleFormIterator> cloning its children (#10302) (slax57)
  • [Doc] fix example in README (#10298) (antoinefricker)
  • [Doc] Document react-hook-form limitation preventing using dynamically added inputs in <ArrayInput> with shouldUnregister (#10271) (djhi)

5.3.0

  • Make authentication check pessimistic
    • Disable data provider calls in CRUD controllers while the auth check is pending (#10238) (djhi)
    • Disable rendering of CRUD views while the auth check is pending (#10258) (djhi)
    • Make <Authenticated> component blocking (#10251) (fzaninotto)
  • Add Access Control
    • Introduce useCanAccess, useCanAccessResources, and useCanAccessCallback hooks (#10222) (djhi)
    • Introduce <CanAccess> and <AccessDenied> components (#10222) (djhi)
    • Add access control check in page controllers (list, show, edit, create) (#10247) (djhi)
    • Add access control to views and action buttons (#10225) (djhi)
    • Add access control to <Datagrid rowClick> (#10227) (djhi)
    • Add access control to <DeleteButton> (#10226) (djhi)
    • Add access control to the / route and introduce <NavigateToFirstResource> (#10255) (djhi)
    • Avoid unnecessary rerenders with canAccess hooks when there is no authProvider (#10200) (djhi)
    • Make authProvider.getPermissions optional (#10257) (djhi)
    • Update Simple example to leverage access control (#10278) (slax57)
  • Add support for embedding and prefetching data to reduce API queries (#10270) (fzaninotto)
  • Add per-resource success notifications ("3 posts deleted" instead of "3 elements deleted") (#10203) (fzaninotto)
  • Add support for <Edit emptyWhileLoading> (#10230) (erwanMarmelab)
  • Fix redirection to first route prevents going back in history (#10267) (aqeebpathan)
  • Fix useAuthState may logout even though logoutOfFailure is false (#10280) (fzaninotto)
  • [TypeScript] Make records paths inferred from type compatible with react-hook-form (#10279) (djhi)

... (truncated)

Upgrade guide

Sourced from react-admin's upgrade guide.


layout: default title: "Upgrading to v5"

Upgrading to v5

React-admin v5 mostly focuses on removing deprecated features and upgrading dependencies. This makes the upgrade process easier than previous versions. However, there are still some breaking changes you should be aware of.

... (truncated)

Commits
  • 48e3638 v5.3.2
  • 75402b4 changelog for 5.3.2
  • 6b48c32 Merge pull request #10319 from marmelab/documentation/stackedFilters-defaultV...
  • f7b3c47 [no ci] Update docs/StackedFilters.md
  • 57cbd0e Remove erroneous changelog
  • b8c2804 [Doc] Update \<StackedFilters> documentation for defaultValue
  • a2d44da Merge pull request #10316 from danyalutsevich/master
  • 8650632 Update DataProviderList.md
  • a635318 Delete docs/img/eicrud.svg
  • ede325f Update DataProviderList.md
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by slax57, a new releaser for react-admin since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [react-admin](https://github.com/marmelab/react-admin) from 4.7.4 to 5.3.2.
- [Release notes](https://github.com/marmelab/react-admin/releases)
- [Changelog](https://github.com/marmelab/react-admin/blob/master/CHANGELOG.md)
- [Upgrade guide](https://github.com/marmelab/react-admin/blob/master/docs/Upgrade.md)
- [Commits](marmelab/react-admin@v4.7.4...v5.3.2)

---
updated-dependencies:
- dependency-name: react-admin
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 4, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 11, 2024

Superseded by #561.

@dependabot dependabot bot closed this Nov 11, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ui/react-admin-5.3.2 branch November 11, 2024 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants