Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2023

Bumps graphene from 2.1.9 to 3.2.1.

Release notes

Sourced from graphene's releases.

v3.2.1

What's Changed

Non-required InputFields and Arguments can now be marked as deprecated by passing the deprecation_reason keyword argument to the constructor.

New Contributors

Full Changelog: graphql-python/graphene@v3.2.0...v3.2.1

v3.2.0

What's Changed

Support for custom global IDs in relay.Node

The global ID type of a Node can now be customized:

class CustomNode(Node):
    class Meta:
        global_id_type = CustomGlobalIDType
class User(ObjectType):
class Meta:
interfaces = [CustomNode]
name = String()
@classmethod
def get_node(cls, _type, _id):
return self.users[_id]

Available Types

Currently, the following types are available:

  • DefaultGlobalIDType: Default global ID type: base64 encoded version of ": ". (Previously the only option) Scalar: ID
  • SimpleGlobalIDType : Simple global ID type: simply the id of the object. Scalar: ID
  • UUIDGlobalIDType : UUID global ID type. Scalar: UUID
Customization

To create a custom global type, BaseGlobalIDType must be extended:

class CustomGlobalIDType(BaseGlobalIDType):
graphene_type = CustomScalar
@classmethod

</tr></table>

... (truncated)

Commits
  • 340d5ed release: 3.2.1
  • 19ea63b fix: Input fields and Arguments can now be deprecated (#1472)
  • d5dadb7 release: 3.2.0
  • 8596349 release: 3.1.2
  • a141e84 Do not interpret Enum members called 'description' as description properties ...
  • f09b2e5 housekeeping: pin ubuntu to 20.04 for python 3.6
  • 7f6fa16 feat_ (#1476)
  • 0b1bfbf chore: Make Graphene enums iterable like Python enums (#1473)
  • f891a36 docs: Disambiguate argument name in quickstart docs (#1474)
  • a2b63d8 fix: MyPy findings due to a mypy version upgrade were corrected (#1477)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [graphene](https://github.com/graphql-python/graphene) from 2.1.9 to 3.2.1.
- [Release notes](https://github.com/graphql-python/graphene/releases)
- [Commits](graphql-python/graphene@v2.1.9...v3.2.1)

---
updated-dependencies:
- dependency-name: graphene
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 9, 2023
@github-actions github-actions bot enabled auto-merge (squash) March 9, 2023 12:33
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 14, 2023

Superseded by #553.

@dependabot dependabot bot closed this Mar 14, 2023
auto-merge was automatically disabled March 14, 2023 09:57

Pull request was closed

@dependabot dependabot bot deleted the dependabot/pip/graphene-3.2.1 branch March 14, 2023 09:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants