Skip to content

Commit

Permalink
Merge branch 'main' into fix-fields-when-using-item-view-field-mode-read
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown authored Oct 11, 2021
2 parents 6190cea + 1285f54 commit ef94031
Show file tree
Hide file tree
Showing 10 changed files with 447 additions and 20 deletions.
14 changes: 1 addition & 13 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,13 @@ yarn publish-changed

## GitHub tags

Publish all new tags to GitHub:

```sh
git push --tags
```

Checkout merge commit as a result of the `Version Packages` PR:

```sh
git checkout sha123
```

Create git tag relevant to release date:

```sh
git tag -a "YYYY-MM-DD" -m "YYYY-MM-DD"
```

Push tag to GitHub:
Publish all new tags (releases plus release date version) to GitHub:

```sh
git push --tags
Expand Down
4 changes: 3 additions & 1 deletion docs/components/docs/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ export function DocsNavigation() {
<SubHeading>Config</SubHeading>
<NavItem href="/docs/apis/config">Config API</NavItem>
<NavItem href="/docs/apis/schema">Schema API</NavItem>
<NavItem href="/docs/apis/fields">Fields API</NavItem>
<NavItem href="/docs/apis/fields">
Fields API <Badge look="success">Updated</Badge>
</NavItem>
<NavItem href="/docs/apis/access-control">
Access Control API <Badge look="success">Updated</Badge>
</NavItem>
Expand Down
2 changes: 2 additions & 0 deletions docs/pages/docs/apis/fields.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { InlineCode } from '../../../components/primitives/Code';

# Fields API

?> We recently improved this API. If you were using it prior to October 5th 2021, [read this guide](/releases/2021-10-05#upgrade-guide) for details on how to upgrade.

The `fields` option of a [list configuration](./schema) defines the names, types, and configuration of the fields in the list.
This configuration option takes an object with field names as keys, and configured field types as values.

Expand Down
8 changes: 8 additions & 0 deletions docs/pages/docs/examples.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,14 @@ export default function Docs() {
Adds a custom Navigation component to the Admin UI. Builds on the Task Manager starter
project.
</Well>
<Well
grad="grad2"
heading="REST API endpoint"
href="https://github.com/keystonejs/keystone/tree/main/examples/rest-api"
>
Demonstrates how to create REST endpoints by extending Keystone's express app and using
the Query API to execute queries against the schema.
</Well>
</div>

<Type as="h2" look="heading30" margin="2rem 0 1rem 0" id="deployment-projects">
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/docs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function Docs() {
color: 'inherit',
}}
>
Learn how Keystone’s leading a new paradigm generation of content management tools.
Learn how Keystone’s leading a new generation of content management tools.
</Type>
</a>
</Link>
Expand Down
Loading

0 comments on commit ef94031

Please sign in to comment.