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

feat: upgrade Mercurius, Apollo, GraphQL to the latest versions #2636

Merged
merged 72 commits into from
Mar 10, 2023

Commits on Aug 29, 2022

  1. feat(graphql): type check field default value

    Martin Kagamino Lehoux committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    7d0438a View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2023

  1. Configuration menu
    Copy the full SHA
    779b72d View commit details
    Browse the repository at this point in the history
  2. feat(add): graphql exceptions

    luas10c committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    b6a9b72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29882ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cdf4998 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    951f907 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    132f44a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2b4f04d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6ea10c3 View commit details
    Browse the repository at this point in the history
  9. chore(deps): update lock

    luas10c committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    82b89db View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2023

  1. Configuration menu
    Copy the full SHA
    3c7db81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f979fa View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Configuration menu
    Copy the full SHA
    7aaa398 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d990ff View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46833e5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e59a936 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e66a795 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    80c3dba View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    af08334 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    95cb42f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d482f33 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c990c84 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d737999 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    6ba05c5 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3a879d9 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

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

Commits on Feb 2, 2023

  1. fix(graphql): generate fields as optional when they contain arguments

    Fields with arguments are usually resolved using a separate method with the
    @ResolveField() annotation.
    Having such field generated as a required property thus proves quite cumbersome
     as it forces assigning a value in the result of parent @query() method.
    
    This makes fields with arguments always optional.
    arthurtemple committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    e365ea5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from paologf/upgrade/apollo-v4

    fix(deps): remove git conflict markers and keep latest rimraf version
    luas10c committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    c49e4b2 View commit details
    Browse the repository at this point in the history
  3. chore: fixing pipes and code-first spec tests and some code cleanup

    Fixing pipes spec tests.
    Changed ApolloServerPluginInlineTraceDisabled reference to '@apollo/server/plugin/disabled';
    Changed ApolloServerBase references to ApolloServer.
    lpessoa committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    b46d9b4 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2 from lpessoa/upgrade/apollo-v4

    chore: fixing pipes and code-first spec tests and some code cleanup
    luas10c committed Feb 2, 2023
    Configuration menu
    Copy the full SHA
    250639a View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. chore: fixing code first schema spec

    TODO: fix 'should match schema snapshot' test
    lpessoa committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    d30f3d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from lpessoa/upgrade/apollo-v4

    chore: fixing code first schema spec
    luas10c committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    fa8f879 View commit details
    Browse the repository at this point in the history
  3. chore: updating code first tests

    Updated code first tests for standard, federation, schema and caching.
    Removed TODO from code first schema.
    
    Updated printed schema payload according to changes on graphql 16.x.
    Added assertion utils to provide a expectSingleResult convenience method
    lpessoa committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    02842f8 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2023

  1. Configuration menu
    Copy the full SHA
    29b92da View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4 from lpessoa/upgrade/apollo-v4

    chore: updating code first tests
    luas10c committed Feb 4, 2023
    Configuration menu
    Copy the full SHA
    b4c1d9f View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2023

  1. Configuration menu
    Copy the full SHA
    a198c6a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e30f085 View commit details
    Browse the repository at this point in the history
  3. refactor: rename mergeWithSchema to generateSchema

    This better matches the method signature.
    CarsonF committed Feb 6, 2023
    Configuration menu
    Copy the full SHA
    6408c1f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b995d73 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Configuration menu
    Copy the full SHA
    140f3bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df58613 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8dac4de View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4a7ab32 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d97e653 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1e099fa View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a9c9d58 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ea78051 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    da6a44b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9e1f08a View commit details
    Browse the repository at this point in the history
  11. Merge pull request #2637 from tugascript/afonso-next

    chore: remove deprecated gateway hooks
    kamilmysliwiec committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    c7cc273 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c845bea View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    942f3e5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    1e58897 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    14a9aee View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. Configuration menu
    Copy the full SHA
    2577291 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    33e423f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ef15aba View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2023

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

Commits on Feb 14, 2023

  1. v11.0.0-next.1

    kamilmysliwiec committed Feb 14, 2023
    Configuration menu
    Copy the full SHA
    03fc641 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Configuration menu
    Copy the full SHA
    a904e67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8290923 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5a1e97c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    291d5c5 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Merge pull request #2662 from Davide-Gheri/fix/apollo-context

    Fix/apollo context
    kamilmysliwiec committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    2f6b55d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2623 from arthurtemple/make-properties-with-argum…

    …ents-optional
    
    fix(graphql): generate fields as optional when they contain arguments
    kamilmysliwiec committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    15fd4e3 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2330 from martinlehoux/master

    feat(types): Type check Field defaultValue
    kamilmysliwiec committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    6c5d222 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

  1. Configuration menu
    Copy the full SHA
    741937c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7072504 View commit details
    Browse the repository at this point in the history
  3. v11.0.0-next.2

    kamilmysliwiec committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    64494db View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. Configuration menu
    Copy the full SHA
    8df948d View commit details
    Browse the repository at this point in the history
  2. test: update snapshot

    kamilmysliwiec committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    4b2b173 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e667c69 View commit details
    Browse the repository at this point in the history