kevinhughes27 / ultimate-tournament

web application for running ultimate tournaments
0 stars 0 forks source link

Bump graphql from 1.9.18 to 1.10.3 #1303

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps graphql from 1.9.18 to 1.10.3.

Changelog

Sourced from graphql's changelog.

1.10.3 (17 Feb 2020)

New features

  • Support loads: with plain field arguments #2720
  • Support raw_value(...) to halt execution with a certain value #2699
  • .read_subscription can return nil to bypass executing a subscription #2741

Bug fixes

  • Connection wrappers are properly inherited #2750
  • prepare(...) is properly applied to default values in subscription fields #2748
  • Code tidying for RSpec warnings #2741
  • Include new analysis module when generating a schema #2734
  • Include directive argument types in printed schemas #2733
  • Use module_parent_name in Rails #2713
  • Fix overriding default scalars in build_from_definition #2722
  • Fix some non-null errors in lists #2651

1.10.2 (31 Jan 2020)

Bug fixes

  • Properly wrap nested input objects in instances #2710

1.10.1 (28 Jan 2020)

Bug fixes

  • Include Interface-level orphan_types when building a schema #2705
  • Properly re-enter selections in complexity analyzer #2595
  • Fix input objects with null values #2690
  • Fix default values of {} in .define-based schemas #2703
  • Fix field extension presence check #2689
  • Make new relation connections more efficient #2697
  • Don't include fields @skip(if: true) or @include(if: false) in lookahead #2700

1.10.0 (20 Jan 2020)

Breaking Changes

  • Class-based schemas using the new interpreter will now use definition classes at runtime. #2363 (Previously, .to_graphql methods were used to generate singletons which were used at runtime.) This means:
    • Methods that used to receive types at runtime will now receive classes instead of those singletons.
    • .name will now call Class#name, which will give the class name. Use .graphql_name to get the name of a GraphQL type. (Fields, arguments and directives have .graphql_name too, so you can use it everywhere.)
    • Some methods that return hashes are slow because they merge hashes according to class inheritance, for example MySchema.types and MyObjectType.fields. Instead:
      • If you only need one item out of the Hash, use .get_type(type_name) or .get_field(field_name) instead. Those methods find a match without performing Hash merges.
      • If you need the whole Hash, get a cached value from context.warden (an instance of GraphQL::Schema::Warden) at runtime. Those values reflect the types and fields which are permitted for the current query, and they're cached for life of the query. Check the API docs to see methods on the warden.
  • Class-based schemas using the interpreter must add use GraphQL::Analysis::AST to their schema (and update their custom analyzers, see https://graphql-ruby.org/queries/ast_analysis.html) #2363
  • ActiveSupport::Notifications events are correctly named in event.library format #2562
  • Field and Argument #authorized? methods now accept three arguments (instead of 2). They now accept (obj, args, ctx), where args is the arguments (for a field) or the argument value (for an argument). #2536
... (truncated)
Commits
  • 9689706 1.10.3
  • 431a250 Merge pull request #2750 from rmosolgo/inherited-connections
  • 4a5c69b Fix connection wrapper inheritance
  • d8cd341 Merge pull request #2748 from rmosolgo/subscription-prepare-fix
  • a43dbed Add authorization section; fixes #2044
  • 1a3b86c Clarify more behaviors with subscription and prepare
  • 6697554 Also test using subscription classes
  • 0f45f84 Test prepare behavior in subscription topic
  • 3aaaf5a Merge pull request #2745 from rmosolgo/typescript-client
  • fe77512 Add build to ci
  • 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.

If all status checks pass Dependabot will automatically merge this pull request.


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 use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

One of your CI runs failed on this pull request, so Dependabot won't merge it.

Dependabot will still automatically merge this pull request if you amend it and your tests pass.

dependabot-preview[bot] commented 4 years ago

Superseded by #1309.