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

Update dependency @nexus/schema to v0.20.1 #54

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 3, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nexus/schema (source) 0.15.0 -> 0.20.1 age adoption passing confidence

Release Notes

graphql-nexus/schema

v0.19.2

Compare Source

Fixes
Improvements
Chores
  • 13f7423 add about section to prisma plugin docs
  • d3af607 publish canary releases on every trunk commit
  • 4296286 tutorial typo nullable schema defined (#​675)

v0.19.1

Compare Source

Fixes

v0.19.0

Compare Source

Breaking Changes
SDL file generation by default in development

#​652618521d

SDL file generation will be enabled by default in development now.

If you were enabling it manually before and outputting to project root at schema.graphql You can probably now just rely on the default.

If you were relying on the default to disable SDL file generation before then now you need to pass an explicit false:

makeSchema({
  outputs: {
    schema: false
  }
})


Highlights
Abstract types system

#​602 → 967d2df

New Abstract types system. Learn more at https://nxs.li/guides/abstract-types.


Type functions for list & nullability & .nonNull / .nullable chaining

#​538 → de832e7

#​655 → 306dbaa

New API for specifying list and nullability types. Learn more at https://nexusjs.org/docs/api/list-nonNull.



All Changes
Features
Fixes
Improvements
Docs
Tests

v0.18.0

Compare Source

v0.17.0

Compare Source

Features
  • 9bfdf2c allow interfaces to implement other interfaces (#​496)

  • b4e0deb add onObjectDefinition / onInputObjectDefinition (#​533)

  • f8d164a error feedback if root typing path is invalid (#​557)

    This may be a breaking change if you were relying on pointing root typing path to a non-file for some reason in the past. We think for almost all users this will not be a breaking change however.

Fixes
  • 10c5f8b "union too complex to represent" for large union types (#​571)
  • cc12ec1 (connection plugin) add deprecated, description, nullable to connectionField (#​578)
  • de7cdfd (connection plugin) various fixes (#​569)
    • Global connection field extensions were never executed
    • Typings of global connection field extension (root, args and the resolver return type was wrong)
    • Typings of local connection field extension (everything was any)
  • 2edfcfa subscription type static typings (#​564)
  • 10208e3 input fields with default should not be typed as optional (#​563)
Improvements
  • 083c1ad test: capture union too large error
  • 76e6eff test: improve connection plugin tests
Docs
Chores

v0.16.0

Compare Source

BREAKING CHANGES
MIGRATION GUIDE

As Nexus Schema just made output types and list items nullable by default, there's a couple of changes you need to do to produce the same schema as before the update.

Changing global defaults to revert to non-nullable output types

import { makeSchema } from '@​nexus/schema'

makeSchema({
+  nonNullDefaults: {
+    output: true
+  }
})

Changing type-level configuration to revert to non-nullable output types

import { objectType } from '@​nexus/schema'

objectType({
  name: 'User',
  nonNullDefaults: {
+   output: true
  }
  definition(t) {
    /* ... */
  }
})

Updating lists output types to be non-nullable

import { objectType } from '@​nexus/schema'

objectType({
  name: 'User',
  definition(t) {
    t.field('posts', {
-     list: true
+     list: [true]
    })
  }
})
Features
Fixes
Improvements
Chores
Unspecified Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 3 times, most recently from 6dc0a6d to 9b4dcea Compare October 12, 2020 02:54
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 5 times, most recently from e7b3026 to df2e48d Compare October 19, 2020 03:45
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 9 times, most recently from 9ebeb03 to 36541fa Compare October 26, 2020 19:38
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch from 36541fa to f971b92 Compare October 28, 2020 13:29
@renovate renovate bot changed the title Update dependency @nexus/schema to v0.16.0 Update dependency @nexus/schema to v0.17.0 Oct 28, 2020
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 7 times, most recently from 95c79e8 to 6f7d8a2 Compare November 2, 2020 12:15
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 4 times, most recently from 8db87dd to f14ff75 Compare November 9, 2020 06:45
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 2 times, most recently from 2ad2a26 to f146e82 Compare January 14, 2022 04:22
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 3 times, most recently from b678007 to 20371cb Compare January 20, 2022 16:55
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 3 times, most recently from 26893e4 to 58c7e6f Compare January 23, 2022 23:11
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 3 times, most recently from 56169e0 to 5875510 Compare February 10, 2022 21:36
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 3 times, most recently from 4e25acf to ad94d49 Compare February 18, 2022 02:38
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 7 times, most recently from 69b166a to 27b51f2 Compare March 1, 2022 05:25
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch 6 times, most recently from 137c0c0 to 59617fe Compare March 9, 2022 13:51
@renovate renovate bot force-pushed the renovate/nexus-schema-0.x branch from 59617fe to f851e31 Compare March 15, 2022 04:38
@renovate
Copy link
Author

renovate bot commented Mar 24, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

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.

1 participant