Skip to content

Releases: marmelab/react-admin

5.0.3

02 Jul 08:51
Compare
Choose a tag to compare
  • Fix npm install error due to outdated peer dependencies (#9964) (fzaninotto)
  • Fix <SimpleShowLayout> uses a wrong translation key for field labels (#9966) (fzaninotto)
  • Fix ra-data-fakerest log of queries (#9960) (fzaninotto)
  • [TypeScript] Fix useGetManyReference return type (#9963) (fzaninotto)
  • [Demo] Fix ReviewList scrolls to top when editing a review (#9958) (djhi)

5.0.2

26 Jun 14:27
Compare
Choose a tag to compare
  • Fix useUpdate throws an error when record id is a valid falsy value such as zero (#9957) (djhi)
  • Fix <DatagridHeader> Tooltip when using React element as a field label (#9948) (djhi)
  • Fix Inputs used outside <Form> need a SourceContext (#9944) (adguernier)
  • Backport Changes from 4.x branch (#9949) (djhi)
  • [Doc] Fix basename usage in routing chapter (#9956) (djhi)
  • [Doc] Update tutorial for v5 (#9945) (djhi)
  • [Doc] Explain that <Form sanitizeEmptyValues> does not work on nested fields (#9950) (djhi)
  • [Dev] Fix flaky tests (#9952) (djhi)

5.0.1

20 Jun 14:35
Compare
Choose a tag to compare

5.0.0

20 Jun 08:36
Compare
Choose a tag to compare

🎉 New major release! React-admin v5 introduces new features and some breaking changes. 🚀

👉 Read the announcement blog post 👈

Here are the highlights:

🎨 UI Improvements

  • Apps now have a theme switcher and a dark theme by default (#9479)
  • Inputs now default to full width (#9704)
  • Links are now underlined (#9483)
  • List pages restore scroll position when coming back from Edit and Create views (#9774)
  • Errors in the Layout code now trigger the Error Boundary (#9799)
  • Button size can be set via props (#9735)

🏁 App Initialization

  • Simpler custom layout components just need to render their children (#9591)
  • No more props drilling for Layout, AppBar, Menu, etc (#9591)
  • useDefaultTitle() hook returns the application title from anywhere in the app (#9591)

🗄️ Data Providers

  • Data providers can now cancel queries for unmounted components (opt-in) (#9612)
  • GraphQL data providers are easier to initialize (they are now synchronous) (#9820)
  • GraphQL-Simple data provider supports Sparse Fields in queries (#9392)
  • GraphQL-Simple data provider supports updateMany and deleteMany mutations (#9393)
  • withLifecycleCallbacks now supports for wildcard and array of callbacks (#9577)
  • Middlewares are more powerful and handle errors better (#9875)

📋 List pages

  • Datagrid has rowClick enabled by default, it links to the edit or show view depending on the resource definition (#9466)
  • List bulkActionButtons is now a Datagrid prop (#9707)
  • setFilters doesn't debounce by default, so custom filters work as expected (#9682)
  • List parameters persistence in the store can be disabled (#9742)

📝 Forms & Inputs

  • Inputs no longer require to be touched to display a validation error (#9781)
  • ReferenceInputs are now smarter by default as they use the recordRepresentation (#9902)
  • Server-Side validation is now more robust (#9848)
  • warnWhenUnsavedChanges works again (#9657)
  • Smart input components like TranslatableInputs, ArrayInput, or ReferenceManyInput now compose more seamlessly thanks to a new SourceContext. There is no need for getSource in FormDataConsumer. (#9533)
  • All inputs now have a unique ID - no more duplicate ID warnings (#9788)
  • Learning Forms is facilitated by a new Form chapter in the doc (#9864)

💻 DX Improvements

  • The default Record Representation for resources is now smarter (#9650)
  • Data provider hooks like useGetOne have a smart return type based on the request state. This will force you to plan for the error case. (#9743)
  • Stricter TypeScript types will detect more errors at compile time (#9741)
  • PropTypes are gone, so there is no conflict with TypeScript types (#9851)
  • create-react-admin can run in non-interactive mode (#9544)
  • ra-data-fakerest accepts a delay parameter to simulate network delays (#9908)
  • data-generator-retail now exposes types for the generated data (#9764)

🔄 Bump dependencies

  • React-admin requires React 18 to leverage Concurrent React (#9827)
  • React-admin uses the latest version of react-router, react-query, date-fns, fakerest, etc. (#9657, #9473, #9812, #9801, #9908)
  • Internet Explorer is no longer supported (#9530)

🔄 Upgrading to v5

We've written a migration guide to help you upgrade your apps to v5. It covers all the breaking changes and how to adapt your code to the new APIs.

We estimate that a react-admin app with 50,000 lines of code will require about 2 days of work to upgrade to v5.

📜 Changelog

For a detailed changelog, see the release notes for the following pre-releases:

5.0.0-rc.1

18 Jun 10:43
Compare
Choose a tag to compare
5.0.0-rc.1 Pre-release
Pre-release

5.0.0-rc.0

17 Jun 14:54
Compare
Choose a tag to compare
5.0.0-rc.0 Pre-release
Pre-release
  • Ensure React 19 compatibility (#9919) (djhi)
  • Fix data provider queries are doubled in development when using strict mode (#9901) (djhi)
  • Fix default <Error> background in global ErrorBoundary (#9913) (fzaninotto)
  • Fix combineDataProvider throws a runtime error (#9910) (fzaninotto)
  • Fix <List> should not render <Error> component on fetch error (#9912) (fzaninotto)
  • Fix useDelete doesn't delete record if its id is zero (#9894) (adguernier)
  • Update <ArrayInput> to use SourceContext instead of cloning children (#9911) (adguernier)
  • Update <SelectArrayInput> to use default record representation when used inside <ReferenceArrayInput> (#9902) (djhi)
  • Upgrade FakeRest to 4.0 (#9908) (fzaninotto)
  • [TypeScript] Fix types of Field components (#9903) (slax57)
  • [Dev] Fix useRegisterMutationMiddleware stories (#9899) (djhi)
  • [Dev] Deduplicate yarn.lock (#9897) (fzaninotto)
  • Backport changes from master (#9923) (slax57)

4.16.19

17 Jun 08:40
v4.16.19
f655345
Compare
Choose a tag to compare

5.0.0-beta.3

03 Jun 05:52
Compare
Choose a tag to compare
5.0.0-beta.3 Pre-release
Pre-release

5.0.0-beta.2

27 May 11:23
Compare
Choose a tag to compare
5.0.0-beta.2 Pre-release
Pre-release
  • Fix middlewares do not handle optimistic cases (#9875) (djhi)
  • Fix ra-core is missing react-error-boundary dependency (#9873) (djhi)
  • Fix broken app build by downgrading query-string (#9871) (djhi)
  • Upgrade prettier to v3 (#9874) (djhi)
  • Backport changes from master to next (#9866) (djhi)

5.0.0-beta.1

22 May 13:16
Compare
Choose a tag to compare
5.0.0-beta.1 Pre-release
Pre-release