Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Bump dillonkearns/elm-graphql from 5.0.9 to 5.0.11 in /example #145

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2022

Bumps dillonkearns/elm-graphql from 5.0.9 to 5.0.11.

Changelog

Sourced from dillonkearns/elm-graphql's changelog.

[5.0.11] - 2022-09-14

Fixed

  • JSON objects are not valid in GraphQL because object properties are unquoted in GraphQL syntax. This release includes a fix that will remove quotes from JSON object properties in the serialized GraphQL query to make them valid GraphQL syntax. Note that not all JSON can be made valid with this approach because some keys need to be quoted (see #606 for a discussion of a possible approach to handle those cases). This release fixes #570. See #605. Thank you @​SiriusStarr for the fix!

[5.0.10] - 2022-06-20

Changed

  • Hashes are now only included in the GraphQL query when they are needed to disambiguate between other sibling fields that would cause a name collision. These details aren't important if you don't depend on any internals, but they will reduce noise when inspecting requests for debugging purposes. Note that it's still important not to depend on any low-level details - be sure not to write code that depends on whether or not field aliases with hashes are used as elm-graphql abstracts away these details.

    This change means that many fields will be unhashed now:

query {
-  avatar2648687506: avatar(size: 1)
+  avatar(size: 1)
}

However, a query like this will still have hashed field aliases because the hashes are needed to avoid a name collision when we query avatar twice at the same level within a selection set:

query {
  avatar0: avatar
  avatar2648687506: avatar(size: 1)
}

Thank you @​hariroshan for thinking of this improvement and implementing it! See PR #596.

Commits
  • 74c10d3 Prepare release.
  • 64298b9 Merge pull request #605 from SiriusStarr/add-json-serialization
  • e603fbf ✨ Add serialization of Json objects/arrays
  • 4530b00 🧪 Add test for JSON object/array serialization
  • 6aad00c Bump elm package.
  • c500235 Update changelog.
  • 23f3f63 Add another hashing test case.
  • e351b0d Merge pull request #596 from hariroshan/better-serialize
  • f0d0662 Merge pull request #599 from sporto/codecs-not-decoders
  • fcb218c Change decoders to codecs in error message
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 dependabot bot added dependencies Pull requests that update a dependency file elm Pull requests that update Elm code labels Oct 1, 2022
Bumps [dillonkearns/elm-graphql](https://github.com/dillonkearns/elm-graphql) from 5.0.9 to 5.0.11.
- [Release notes](https://github.com/dillonkearns/elm-graphql/releases)
- [Changelog](https://github.com/dillonkearns/elm-graphql/blob/master/CHANGELOG-ELM-PACKAGE.md)
- [Commits](dillonkearns/elm-graphql@5.0.9...5.0.11)

---
updated-dependencies:
- dependency-name: dillonkearns/elm-graphql
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/elm/example/dillonkearns/elm-graphql-5.0.11 branch from 00ab7e1 to 112d4e0 Compare March 1, 2023 02:08
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file elm Pull requests that update Elm code
Projects
None yet
0 participants