forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added content related to the recent release (keystonejs#7530)
- Loading branch information
Showing
3 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { Markdown, getStaticProps } from '../../components/Markdown'; | ||
import { Emoji } from '../../components/primitives/Emoji'; | ||
import { Stack } from '../../components/primitives/Stack'; | ||
|
||
# Release: 13th May 2022 | ||
|
||
Maintenance release: | ||
|
||
```json | ||
"@keystone-6/core": "1.1.1" | ||
"@keystone-6/fields-document": "2.0.1" | ||
``` | ||
|
||
## Core changes <Emoji symbol="⚙️" alt="Gear" /> | ||
|
||
- Fixed decimal `validation.min` not being respected and `validation.max` being used as the min if provided. | ||
|
||
## Admin UI improvements <Emoji symbol="✨" alt="Sparkles" /> | ||
|
||
- Fixed the **JSON field** not showing any formatting when the field mode is **read-only** | ||
- Updated the **list page** to show the **reset to default button** when any sorting, or other field value filters are provided | ||
- Updated the styling for the **relationship select** to be less confusing when the field mode is **read-only** | ||
- Improvements to the **document editor toolbar**: | ||
- the toolbar is now hidden when the field mode is read-only | ||
- fixed a z-index issue | ||
- Fixed **read only** view for **segmented control** display mode in the **select** field. When a segmented-control select field is in read mode, the values no longer appear editable. | ||
|
||
## Dependencies <Emoji symbol="⬆️" alt="Up arrow" /> | ||
|
||
- Upgrade react-day-picker to v8 | ||
|
||
## Community Contributors <Emoji symbol="💙" alt="Blue heart" /> | ||
|
||
- Thanks [@moselhy](https://github.com/moselhy)! - Fixed React key warning when showing GraphQL errors | ||
- Thanks [@MurzNN](https://github.com/murznn)! - Added sandbox configs for all examples, so now all our examples can be launched on the codesandbox.io service. Give it a try in our [blog example](https://github.com/keystonejs/keystone/tree/main/examples/blog#online-sandox) 🚀 | ||
|
||
## Complete Changelog <Emoji symbol="📜" alt="Scroll" /> | ||
|
||
You can also view the [verbose release notes](https://github.com/keystonejs/keystone/pull/7419) for this release on Github. | ||
|
||
export default ({ children, ...props }) => ( | ||
<Markdown | ||
description="Improvements to decimal validation and Admin UI read-only fields." | ||
{...props} | ||
> | ||
{children} | ||
</Markdown> | ||
); | ||
export { getStaticProps }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters