Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: graphql-python/graphene-sqlalchemy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.0b1
Choose a base ref
...
head repository: graphql-python/graphene-sqlalchemy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.0b2
Choose a head ref
  • 12 commits
  • 21 files changed
  • 12 contributors

Commits on Sep 21, 2021

  1. Build clean up (#318)

    mvanlonden authored Sep 21, 2021
    Configuration menu
    Copy the full SHA
    57cd786 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. I resolved spelling and capitalization mistakes. (#290)

    For <span style="color:red">~~instaling~~</span><span style="color:green">installing</span> <span style="color:red">~~g~~</span><span style="color:green">Graphene</span>, just run this command in your shell<span style="color:green">.</span>
    quinnkj authored Apr 8, 2022
    Configuration menu
    Copy the full SHA
    7bf0aa5 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2022

  1. Fix for import from graphql-relay-py (#329) (#330)

    * Add newlines to make pre-commit happy
    
    * Fix import from graphql_relay
    
    The module name was deprecated, but all imports
    should be made from the top level anyway.
    Cito authored Apr 27, 2022
    Configuration menu
    Copy the full SHA
    771f4f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2022

  1. Add support for N-Dimensional Arrays

    Fixes #288
    jbeard4 authored Apr 28, 2022
    Configuration menu
    Copy the full SHA
    869a55b View commit details
    Browse the repository at this point in the history
  2. 🥅 Don't suppress SQLAlchemy errors when mapping classes (#169)

    These changes modify graphene-sqlalchemy so as not to suppress errors coming
    from SQLAlchemy when attempting to map classes. Previously this made the
    debugging experience difficult since issues with SQLAlchemy models
    would produce an unclear error message from graphene-sqlalchemy. With
    these changes, the SQLAlchemy error is propagated to the end-user,
    allowing them to correct the real issue quickly.
    
    Fixes #121
    connorbrinton authored Apr 28, 2022
    Configuration menu
    Copy the full SHA
    5da2048 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2022

  1. Support setting @hybrid_property's return type from the functions typ…

    …e annotations. (#340)
    
    Adds support for automatic type conversion for @hybrid_property's using converters similar to @convert_sqlalchemy_type.register(). Currently, all basic types and (nested) Lists are supported.
    This feature replaces the old default string conversion. String conversion is still used as a fallback in case no compatible converter was found to ensure backward compatibility.
    
    Thank you @conao3 & @flipbit03!
    flipbit03 authored Apr 29, 2022
    Configuration menu
    Copy the full SHA
    0820da7 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2022

  1. Added suport for Optional[T] in @hybrid_property's type annotation in…

    …ference. (#343)
    
    Automatic @hybrid_property type conversion now supports Optionals.
    flipbit03 authored May 3, 2022
    Configuration menu
    Copy the full SHA
    b0aa63c View commit details
    Browse the repository at this point in the history

Commits on May 5, 2022

  1. Configuration menu
    Copy the full SHA
    a47dbb3 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. Update README.md

    erikwrede authored Jun 2, 2022
    Configuration menu
    Copy the full SHA
    294d529 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2022

  1. Add Python 3.10 & Update Build Scripts (#352)

    This PR drops tests for Python 3.6 and updates the build scripts.
    erikwrede authored Jun 3, 2022
    Configuration menu
    Copy the full SHA
    f16d434 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. Native support for additional Type Converters (#353)

    * Fields generated from Hybrid Properties & Type hints now support Unions (Union[ObjectType1,OT2] or ObjectType1 | OT2)
    * Support for Variant and types.JSON Columns
    * BREAKING: Date&Time now convert to their corresponding graphene scalars instead of String.
    * BREAKING: PG UUID & sqlalchemy_utils.UUIDType now convert to graphene.UUID instead of graphene.String
    * Change: Sort Enums & ChoiceType enums are now generated from Column.key instead of Column.name, see #330
    
    Signed-off-by: Erik Wrede <erikwrede2@gmail.com>
    Co-authored-by: Nicolas Delaby <nicolas.delaby@infarm.com>
    Co-authored-by: davidcim <david@cimaware.com>
    Co-authored-by: Viktor Pegy <xtpvxt@gmail.com>
    Co-authored-by: Ian Epperson <ian@epperson.com>
    5 people authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    a702569 View commit details
    Browse the repository at this point in the history
  2. Release new beta

    erikwrede authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    dfee3e9 View commit details
    Browse the repository at this point in the history
Loading