Releases: marmelab/react-admin
Releases · marmelab/react-admin
v2.1.1
- Fix FormInput not passing
resource
toLabeled
inputs (djhi) - Add documentaton on how to prefill a
<Create>
form based on another record (fzaninotto) - Add polish translations (tskorupka)
- Add documentation on tabs routing (djhi)
v2.1.0
For highlights about this version, read the 2.1 release announcement post on the marmelab blog.
- [
TabbedForm
,TabbedShowLayout
] Add routing support for tab navigation dj(djhi)i - [
SimpleForm
,TabbedForm
] Add ability to customize the redux form (djhi) - [
ReferenceField
] Add optionalsortBy
prop to allow sorting by another field thanid
(ArneZsng) - [
SaveButton
,SimpleForm
,Tabbedform
] Add support for function asredirect
value (fzaninotto) - [
RichTextInput
] Add validation support (fzaninotto) - [
ReferenceInput
] Injectsort
,pagination
, andfilters
props to the child component (fzaninotto) - [
Layout
] Add ability to customize sub components (menu, appbar, notification) (fzaninotto) - [
ArrayInput
] AddallowAdd
&allowRemove
attribute, to hide + and - buttons (ashim) - [
ra-data-graphql-simple
] Fix documentation (djhi) - [
LongTextInput
] Fix UI when used inside a<TabbedForm>
(fzaninotto) - [Refactoring] Remove necessity to use CSS loader in
ra-input-rich-text
(fzaninotto) - [Refactoring] Manage form saving state inside Form components (djhi)
- [Refactoring] Migrate e2e tests to Cypress (djhi)
- [Refactoring] Move the URL parsing responsibility from View controllers to
<Resource>
(djhi) - [Dependencies] Upgrade to
material-ui
^1.0.0, upgrade examples tomaterial-ui
1.2.1 (fzaninotto) - [Dependencies] Upgrade to
prettier
1.13 (fzaninotto)
v2.0.4
- Add documentation for icon format restriction in
<MenuItemLink>
(fzaninotto) - Add
required
to thecurrenSort
propType in<Datagrid>
, to avoid unexpected errors (alexicum) - Add Portuguese translation (marquesgabriel)
- Add Ukrainian translation (koresar)
- Add documentation about custom path as the
redirect
prop on Create/Edit (djhi) - Add mention of
react-admin-color-input
andreact-admin-date-inputs
in Ecosystem doc (vascofg) - Fix style overriding documentation for
<Datagrid>
(fzaninotto) - Fix broken link in
<Admin>
documentation (fzaninotto) - Fix refresh in pessimistic mode prevents server-side validation (fzaninotto)
- Fix
fullWidth
warning when using<Labeled>
(fzaninotto) - Fix
<AutocompleteInput>
when used in standalone (fzaninotto) - Fix custom route action in simple example (alexicum)
- Fix warning in Demo, in
<Link>
to filtered list (fzaninotto) - Fix edit icon in Demo, in product gridlist on smaller screens (fzaninotto)
- Fix outdated
import
in Custom Theme documentation (AkselsLedins) - Fix
WithPermissions
callingsetState
in async function (djhi) - Fix error in
jsonserver
provider on Windows (fzaninotto) - Fix outdated theming doc (fzaninotto)
- Fix multiple broken links in DataProviders doc (alireza-ahmadi)
- Fix missing resource in ArrayInput iterator (fzaninotto)
- Fix outdated mention of
aor-embedded-array
in Ecosystem doc (vascofg)
v2.0.3
- Add Russian translation package to the docs (fzaninotto)
- Add Indonesian translation package to the docs (ronadi)
- Add media to demo dashboard to make it better-looking (fzaninotto)
- Fix
<Labeled>
to correctly passe<FormControl>
props for full width and validation (djhi) - Fix
<ReferenceArrayInput>
and<ReferenceInput>
so that the label correctly adds the * when required (djhi) - Fix AutocompleteInput documentation refers to outdated mui doc (fzaninotto)
- Fix mentions of REST client in the documentation (fzaninotto)
- Fix logout button icon padding (fzaninotto)
- Fix Bulk Actions button was clickable even with no row selected (fzaninotto)
- Fix global validation on TabbedForm (fzaninotto)
- Fix link for Saga debouncing doc (dunglas)
- Fix warning in GraphQL data provider with
<ReferenceField>
(byymster)
v2.0.2
- Add Spanish translation package to the docs (JonatanSalas)
- Fix
SelectArrayInput
Chip
label should render same as selected menu item option (jeromemacias) - Fix warnings when using
CheckboxGroupInput
intoReferenceArrayInput
(jeromemacias) - Fix proptype warning in custom
Login
form (fzaninotto) - Fix override of link and cache parameter in
ra-data-graphql
(terkiterje) - Fix checkbox ripple height in
Datagrid
(cherniavskii) - Fix infinite renders on forms due to validators not using memoization (jpetitcolas)
- Fix warning in
SingleFieldList
(fzaninotto) - Fix yarn.lock to match
packages.json
(fzaninotto) - Fix select all checkbox selects rows twice (fzaninotto)
- Fix typo in Inputs documentation (afilp)
- Fix custom datagrid style fonction example (afilp)
v2.0.0
After 7 months of refactoring for better performance and easier overrides, we finally released the new major version of react-admin 🎉.
Thanks to all the contributors who made that possible!
Here are some highlights ✨:
- Upgrade to material-ui 1.0, react-router 4, React 16.3
- Use CSS-in-JS (JSS) for styling
- Undo button for edits and deletes
- Bulk actions
- Render props
- GraphQL as a first class citizen
- Embedded arrays
- Improved permissions handling
- Side effect support in custom actions
- Easier custom inputs
- Easier dependent inputs
- Asynchronous i18n
- Extra props passed transparently
- More implementation examples
For more details, read the release announcement blog post on the marmelab blog and the 2.0.0 milestone.
There are many more features in 2.0, as well as all bug fixes from 1.x.
This new release is not backwards compatible with 1.x. Please refer to the Upgrade guide for directions on upgrading your code.
v1.4.1
- Add
addLabel
default prop in custom Field documentation (jorrit) - Add Catalan translation (fzaninotto)
- Add
aor-cli
package to Ecosystem documentaiton (aymendhaya) - Add DynamoDb to RestClients (yonahforst)
- Update redux-form to 7.1.X (mauchede)
- Update link to GraphQL client (romainquellec)
- Fix
NumberInput
returns String value (fzaninotto) - Fix boolean input label color does not use theme (fzaninotto)
- Fix login layout in IE 11 (pavyarov)
- Fix tutorial usage of ReferenceInput for Create (djhi)
- Fix
GET_MANY_REFERENCE
example inRestClients
documentation (Kiailandi) - Fix custom layout documentation (djhi)
- Fix
AutocompleteInput
(djhi)
v1.4.0
- Add
options
support inDisabledInput
(afilp) - Add Slovak translation (zavadpe)
- Add a FAQ entry about unique child key in datagrid (djhi)
- Add documentation about
dateInput
and timezones (alexisjanvier) - Update example about
addUploadCapabilities
(alexisjanvier) - Update extraction of status for
AUTH_ERROR
in the documentation (zifnab87) - Update documentation and examples to use standard es6 (djhi)
- Update
CreateEdit
documentation fornumber
validation (afilp) - Fix validation custom messages so that those without translation don't add warnings (djhi)
- Fix children are filtered when mapping on them (djhi)
- Fix redirection to correct page after
Delete
(alexisjanvier) - Fix warnings in React 16 (djhi)
- Fix
Edit
view refresh does not cancel changes (djhi) - Fix form default values can't be changed once mounted (djhi)
- Fix link color in reference field (djhi)
- Fix and cleanup example app code (djhi)
- Fix default value for filter when source is a path with dot (djhi)
- Fix
WithPermissionsFilteredChildren
should not put regular children in state (djhi) - Fix
SimpleShowLayout
should handle null children (afilp) - Fix Handle element cannot be fetched error (alexisjanvier)
- Fix
List
default pagination to avoid displayingNaN
(afilp) - Fix
SelectArrayInput
(djhi) - Fix
setState
typo inSelectArrayInput
(natrim) - Fix example validation (alauper)
- Fix outdated
RefreshButton
usage (alexisjanvier) - Fix custom routes handling (djhi)
- Fix typo in example (clementtalleu)
v1.3.4
- Add Croatian translation (ariskemper)
- Add Indonesian translation (ronadi)
- Add Arabic translation (aymendhaya)
- Add Finnish translation (Joni-Aaltonen)
- Fix spelling of Labeled in documentation (jyash97)
- Fix documentation for Writing Actions (danyalaytekin)
- Fix check that window exists before checking for devToolsExtension (twDuke)
- Fix missing key warning for SaveButton (MadalenaGoncalves)
- Fix RestClient example in documentation (alexanderankin)
- Fix documentation menu on mobile (djhi)
- Add shadow under doc menu bar on mobile (djhi)
- Fix SelectArrayInput by upgrade material-ui-chip-input (djhi)
- Fix Bottom Toolbars on mobile (djhi)
- Fix documentation, Prop name is validate not validation (alauper)
- Fix AutocompleteInput does not render text for existing value on initial render (hasghari)
- Fix BooleanInput warning about uncontrolled to controlled component (djhi)
- Fix title is not updated when record changes (djhi)
- Fix vertical scroll issue on page on IE11 (activist)
v1.3.3
- Add
aor-xmysql
to the list of REST clients (soaserele) - Add Slovenian translation (ariskemper)
- Fix wrong code sample in Translations docs (fzaninotto)
- Add
getResources
function to allow ressource injection in custom components (fzaninotto) - Fix typo in Actions documentation (xiaomingplus)
- Add mention of
ra-component-factory
to the list of related packages (zifnab87) - Fix exception when using React 16 and hot reloading (natrim)
- Fix custom menu documentation (fzaninotto)
- Fix installation documentation (faviouz)
- Fix typo in English translations (netsgnut)
- Add a link to the updated Hebrew translations (motro)
- Fix linting problems (fzaninotto)
- Fix missing import in
<List>
documentation (clementtalleu) - Fix Refresh button does not refresh data in
<ReferenceManyField>
(fzaninotto) - Fix
refreshView
is undefined when using custom actions in list (natrim)