embassynetwork / modernomad

manage multi-use community houses: members, guests, events.
https://embassynetwork.com/
GNU Affero General Public License v3.0
133 stars 59 forks source link

Bump graphene from 2.1.6 to 3.2 #987

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps graphene from 2.1.6 to 3.2.

Release notes

Sourced from graphene's releases.

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
def resolve_global_id(cls, info, global_id):
    _type = custom_get_type_from_global_id(global_id)
    return _type, global_id

@classmethod
def to_global_id(cls, _type, _id):
    return _id

graphene_type specifies the type of scalar to be used in the schema. Remember, that if you're using ID as a scalar, you might need to deserialize your custom global ID first!

... (truncated)

Commits
  • 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)
  • b349632 Clarify execution order in middleware docs (#1475)
  • ccdd35b hashable Enum (#1461)
  • 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)
dependabot[bot] commented 1 year ago

Superseded by #990.