Releases: mattmilburn/strapi-plugin-menus
Releases · mattmilburn/strapi-plugin-menus
v1.6.1
v1.6.0
💅🏻 Enhancements
- Dev tools for
eslint
,prettier
,jest
, and pre-commit actions. - Documentation plugin support.
🐛 Bug fixes
- Fix issue where time field values were saving incorrectly.
⚙️ Chore
- Sync Strapi core components.
- Bump versions for Strapi packages to use minimum version
4.13.1
. - Bump versions for Strapi design-system packages to use minimum version
1.9.0
. - Bump versions for node
engines
to>=16.0.0 <=20.x.x
. - Bump versions for various React packages.
- Replace
request
andaxios
usage withuseFetchClient
hook. - Install
husky
andlint-staged
to enable pre-commit actions. - Add
lint
,format
, andtest
scripts in package.json. - Minor refactoring to satisfy eslint and prettier rules.
v1.5.0
⚙️ Chore
- Sync core components from latest Strapi version
- Bump React dependency version to
^17.0.0 || ^18.0.0
- Bump minimum Strapi dependencies version to
4.11.0
NOTE: If you continue to have issues with React 18 support, try using the following in your
package.json
:"resolutions": { "react": "^18.0.0", },
Release v1.4.3
💅🏻 Enhancements
- Clone
useLazyComponents
hook from Strapi core.
🐛 Bug fixes
- Implement
useLazyComponents
inFormLayout
component to help render custom fields.
Release v1.4.2
🐛 Bug fixes
- Fix
useEffect
in list view where there was not an implicit return value, which was crashing the app during a route change.
⚙️ Chore
- Update sanitization method for
date
,datetime
, andtime
values.
Release v1.4.1
🐛 Bug fixes
- Fix bug with URL regex not allowing
-
characters in the query string.
Release v1.4.0
🐛 Bug fixes
- Use full model UID in route definitions.
- Create NotFound page component for router fallback.
- Fix nested population logic to enable custom REST filters.
⚙️ Chore
- Pin styled-components dependency to version
5.3.3
per Strapi Marketplace guidelines. - Bump Strapi peer dependencies to version
^4.9.0
. - Bump Strapi design system peer dependencies to version
^1.6.6
.
v1.3.1
🐛 Bug fixes
- Fix index view pagination which was failing to define total count of entires to
PaginationFooter
.
v1.3.0
Upgrading to this version of the plugin requires Strapi v4.6x, which introduced reordering for hasMany
relations.
💅🏻 Enhancements
- Implement drag and drop reordering for
hasMany
relations.
⚙️ Chore
- Bump peer dependencies for Strapi to v4.6.0.
- Bump peer dependencies for Strapi design system to v1.5.0.
- Sync core relation components with v4.6 plugin relation components.
- Update
MAINTAINING.md
documentation.