Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #6100

Merged
merged 1 commit into from
Jul 27, 2021
Merged

Version Packages #6100

merged 1 commit into from
Jul 27, 2021

Conversation

keystonejs-release-bot
Copy link
Collaborator

@keystonejs-release-bot keystonejs-release-bot commented Jul 13, 2021

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

@keystone-next/auth@30.0.0

Major Changes

Patch Changes

@keystone-next/fields@13.0.0

Major Changes

  • #6105 e5f61ad50 Thanks @mitchellhamilton! - Removed unnecessary descriptions on GraphQL types.

  • #6165 e4e6cf9b5 Thanks @mitchellhamilton! - Added ui.searchFields option to lists to allow searching by multiple fields in the Admin UI (the only current usage of this is in the select used in relationship fields) and to replace the usage of the search GraphQL argument which will be removed soon and should be replaced by using contains filters directly.

Patch Changes

@keystone-next/keystone@23.0.0

Major Changes

  • #6153 7716315ea Thanks @mitchellhamilton! - Removed implicit chunking from the lists API so that the lists API is a direct translation of the GraphQL API

  • #6105 e5f61ad50 Thanks @mitchellhamilton! - Removed unnecessary descriptions on GraphQL types.

  • #6165 e4e6cf9b5 Thanks @mitchellhamilton! - Added ui.searchFields option to lists to allow searching by multiple fields in the Admin UI (the only current usage of this is in the select used in relationship fields) and to replace the usage of the search GraphQL argument which will be removed soon and should be replaced by using contains filters directly.

Minor Changes

  • #6111 9e2deac5f Thanks @gwyneplaine! - Added the ability to customise the Navigation component in the Admin UI, and provided helper components to do so.

Patch Changes

  • #6104 3f03b8c1f Thanks @timleslie! - Cosmetic changes to the core code in preparation for improvements to the error handling logic.

  • #6126 ea0712aa2 Thanks @borisno2! - Added / to list.path on HomePage ListCard to better allow custom basePath.

  • #6192 93f1e5d30 Thanks @JedWatson! - Added an optional /_healthcheck endpoint to Keystone's express server.

    You can enable it by setting config.server.healthCheck: true

    By default it will respond with { status: 'pass', timestamp: Date.now() }

    You can also specify a custom path and JSON data:

    config({
      server: {
        healthCheck: {
          path: '/my-health-check',
          data: { status: 'healthy' },
        },
      },
    });

    Or use a function for the data config to return real-time information:

    config({
      server: {
        healthCheck: {
          path: '/my-health-check',
          data: () => ({
            status: 'healthy',
            timestamp: Date.now(),
            uptime: process.uptime(),
          }),
        },
      },
    });
  • #6180 a11e54d69 Thanks @mitchellhamilton! - Fixed issues with React hooks dependency arrays

  • #6116 dd7e811e7 Thanks @timleslie! - Updated unique filter checking code to ensure it is always run before using the unique input filter.

  • #6139 587a8d0b0 Thanks @timleslie! - Refactored mutation validation handling into a single location.

  • #6119 597edbdd8 Thanks @timleslie! - Split the default value loop from the field-type input resolver loop to allow for more fine-grained error handling.

  • #6144 1172e1853 Thanks @gautamsi! - Changed symlink generation to use relative path instead of absolute. Solves running project in docker when mapping volume.

  • #6096 fbe698461 Thanks @renovate! - Updated Prisma dependencies to 2.27.0.

  • #6123 32e9879db Thanks @timleslie! - Simplified the internal implementation of nested mutations.

  • Updated dependencies [93f1e5d30, a11e54d69, e5f61ad50, 9e2deac5f, e4e6cf9b5, 2ef6fe82c]:

    • @keystone-next/types@23.0.0
    • @keystone-ui/tooltip@4.0.1
    • @keystone-next/fields@13.0.0
    • @keystone-next/admin-ui-utils@5.0.5
    • @keystone-next/utils@1.0.3

@keystone-next/types@23.0.0

Major Changes

  • #6165 e4e6cf9b5 Thanks @mitchellhamilton! - Added ui.searchFields option to lists to allow searching by multiple fields in the Admin UI (the only current usage of this is in the select used in relationship fields) and to replace the usage of the search GraphQL argument which will be removed soon and should be replaced by using contains filters directly.

Minor Changes

  • #6111 9e2deac5f Thanks @gwyneplaine! - Add Admin UI specific types AuthenticatedItem, VisibleLists, CreateViewFieldModes and NavigationProps to exports.

Patch Changes

  • #6192 93f1e5d30 Thanks @JedWatson! - Added an optional /_healthcheck endpoint to Keystone's express server.

    You can enable it by setting config.server.healthCheck: true

    By default it will respond with { status: 'pass', timestamp: Date.now() }

    You can also specify a custom path and JSON data:

    config({
      server: {
        healthCheck: {
          path: '/my-health-check',
          data: { status: 'healthy' },
        },
      },
    });

    Or use a function for the data config to return real-time information:

    config({
      server: {
        healthCheck: {
          path: '/my-health-check',
          data: () => ({
            status: 'healthy',
            timestamp: Date.now(),
            uptime: process.uptime(),
          }),
        },
      },
    });
  • Updated dependencies [a11e54d69, e5f61ad50, e4e6cf9b5, 2ef6fe82c]:

    • @keystone-next/fields@13.0.0

@keystone-next/testing@1.1.0

Minor Changes

  • #6193 14cb7c5c4 Thanks @timleslie! - Added an app value to the TestArgs type to provide direct access to the Express application from test runners.

Patch Changes

@keystone-ui/tooltip@4.0.1

Patch Changes

@keystone-next/admin-ui-utils@5.0.5

Patch Changes

@keystone-next/cloudinary@6.0.5

Patch Changes

@keystone-next/fields-document@7.0.3

Patch Changes

@keystone-next/utils@1.0.3

Patch Changes

@keystone-next/example-custom-admin-ui-logo@1.0.0

Major Changes

Patch Changes

@keystone-next/example-assets-cloud@1.0.3

Patch Changes

@keystone-next/example-assets-local@1.0.3

Patch Changes

@keystone-next/example-auth@4.0.5

Patch Changes

@keystone-next/examples-app-basic@4.0.5

Patch Changes

@keystone-next/example-ecommerce@4.0.6

Patch Changes

@keystone-next/example-embedded-nextjs@3.0.5

Patch Changes

keystone-next-app@1.0.5

Patch Changes

@keystone-next/example-playground@1.0.4

Patch Changes

@keystone-next/example-roles@4.0.5

Patch Changes

@keystone-next/example-sandbox@3.0.5

Patch Changes

@keystone-next/example-blog@2.0.5

Patch Changes

@keystone-next/example-custom-field@0.0.2

Patch Changes

@keystone-next/example-custom-field-view@1.0.1

Patch Changes

@keystone-next/example-default-values@1.0.5

Patch Changes

@keystone-next/example-document-field@1.1.1

Patch Changes

@keystone-next/example-extend-graphql-schema@1.0.5

Patch Changes

@keystone-next/example-json-field@4.0.6

Patch Changes

@keystone-next/example-task-manager@4.0.5

Patch Changes

@keystone-next/example-testing@0.0.5

Patch Changes

@keystone-next/example-virtual-field@0.1.3

Patch Changes

@keystone-next/example-with-auth@2.0.6

Patch Changes

@keystone-next/admin-ui-tests@0.0.3

Patch Changes

@keystone-next/api-tests-legacy@11.0.6

Patch Changes

@keystone-next/benchmarks-legacy@7.0.6

Patch Changes

@keystone-next/test-projects-basic@0.0.2

Patch Changes

@vercel
Copy link

vercel bot commented Jul 13, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/keystonejs/keystone-next-docs/ApyPCtFnuZht1guukaUB6eVggpNT
✅ Preview: https://keystone-next-docs-git-changeset-release-master-keystonejs.vercel.app

@vercel vercel bot temporarily deployed to Preview July 13, 2021 23:34 Inactive
@codesandbox-ci
Copy link

codesandbox-ci bot commented Jul 13, 2021

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

@vercel vercel bot temporarily deployed to Preview July 13, 2021 23:48 Inactive
@vercel vercel bot temporarily deployed to Preview July 14, 2021 23:01 Inactive
@vercel vercel bot temporarily deployed to Preview July 15, 2021 00:36 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 00:13 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 00:27 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 00:39 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 01:05 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 04:15 Inactive
@vercel vercel bot temporarily deployed to Preview July 16, 2021 05:17 Inactive
@vercel vercel bot temporarily deployed to Preview July 18, 2021 22:25 Inactive
@vercel vercel bot temporarily deployed to Preview July 18, 2021 22:46 Inactive
@vercel vercel bot temporarily deployed to Preview July 19, 2021 01:53 Inactive
@vercel vercel bot temporarily deployed to Preview July 19, 2021 03:35 Inactive
@vercel vercel bot temporarily deployed to Preview July 23, 2021 01:11 Inactive
@vercel vercel bot temporarily deployed to Preview July 25, 2021 23:04 Inactive
@vercel vercel bot temporarily deployed to Preview July 25, 2021 23:14 Inactive
@vercel vercel bot temporarily deployed to Preview July 25, 2021 23:39 Inactive
@bladey bladey requested a review from timleslie July 26, 2021 01:20
@vercel vercel bot temporarily deployed to Preview July 26, 2021 05:14 Inactive
@vercel vercel bot temporarily deployed to Preview July 26, 2021 05:40 Inactive
@vercel vercel bot temporarily deployed to Preview July 26, 2021 06:11 Inactive
@vercel vercel bot temporarily deployed to Preview July 26, 2021 22:29 Inactive
@vercel vercel bot temporarily deployed to Preview July 26, 2021 23:43 Inactive
@vercel vercel bot temporarily deployed to Preview July 26, 2021 23:55 Inactive
@vercel vercel bot temporarily deployed to Preview July 27, 2021 02:32 Inactive
@vercel vercel bot temporarily deployed to Preview July 27, 2021 02:52 Inactive
Copy link
Contributor

@timleslie timleslie left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚢

@bladey bladey merged commit 151d31d into master Jul 27, 2021
@bladey bladey deleted the changeset-release/master branch July 27, 2021 03:20
Nikitoring pushed a commit to Nikitoring/keystone that referenced this pull request Sep 14, 2021
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants