Skip to content

Releases: favware/graphql-pokemon

v7.0.9

04 Dec 22:46
Compare
Choose a tag to compare

7.0.9 - (2022-12-02)

🏠 Refactor

🐛 Bug Fixes

  • Fixed "As One (Glastrier)" causing an unexpected error when querying data for calyrex-ice (253ae5f)
  • Fixed flavor text mapping for indeedee-male and basculegion (5729586)
  • docs: Improved and fixed readme (6052161)

v7.0.8

25 Oct 17:10
Compare
Choose a tag to compare

Full Changelog: v7.0.7...v7.0.8

v7.0.7

25 Oct 17:09
Compare
Choose a tag to compare

What's Changed

  • refactor: update data [skip publish] by @github-actions in #772
  • chore(deps): update all non-major dependencies by @renovate in #775

Full Changelog: v7.0.6...v7.0.7

v7.0.6

25 Oct 17:09
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update all non-major dependencies by @renovate in #769

Full Changelog: v7.0.5...v7.0.6

v7.0.5

25 Oct 17:09
Compare
Choose a tag to compare

What's Changed

  • refactor: update data [skip publish] by @github-actions in #762
  • chore(deps): update github/codeql-action digest to 8075783 by @renovate in #763
  • chore(deps): update dependency @sapphire/utilities to ^3.11.0 by @renovate in #765
  • chore(deps): update all non-major dependencies (#764) [skip publish] by @renovate in #764
  • refactor: update data [skip publish] by @github-actions in #766
  • chore(deps): update actions/setup-node digest to 8c91899 by @renovate in #768
  • chore(deps): update actions/checkout digest to 93ea575 by @renovate in #767

Full Changelog: v7.0.4...v7.0.5

v7.0.4

25 Oct 17:09
Compare
Choose a tag to compare

What's Changed

  • refactor: update data [skip publish] by @github-actions in #739
  • refactor: update data [skip publish] by @github-actions in #740
  • refactor: update data [skip publish] by @github-actions in #741
  • refactor: update data [skip publish] by @github-actions in #744
  • chore(deps): update github/codeql-action digest to c7f292e by @renovate in #742
  • refactor: update data [skip publish] by @github-actions in #745
  • chore(deps): update all non-major dependencies by @renovate in #743
  • chore(deps): update dependency @sapphire/utilities to ^3.9.3 by @renovate in #747
  • chore(deps): update all non-major dependencies by @renovate in #748
  • chore(deps): update github/codeql-action digest to b398f52 by @renovate in #746
  • chore(deps): update all non-major dependencies by @renovate in #749
  • refactor: update data [skip publish] by @github-actions in #750
  • chore(deps): update all non-major dependencies by @renovate in #752
  • refactor: update data [skip publish] by @github-actions in #753
  • chore(deps): update github/codeql-action digest to 904260d by @renovate in #751
  • refactor: update data [skip publish] by @github-actions in #754
  • refactor: update data [skip publish] by @github-actions in #755
  • chore(deps): update all non-major dependencies by @renovate in #757
  • chore(deps): update dependency @sapphire/time-utilities to ^1.7.8 by @renovate in #758
  • chore(deps): update github/codeql-action digest to 86f3159 by @renovate in #756
  • chore(deps): update all non-major dependencies by @renovate in #761
  • chore(deps): update github/codeql-action digest to e0e5ded by @renovate in #760
  • chore(deps): update actions/setup-node digest to 969bd26 by @renovate in #759

Full Changelog: v7.0.3...v7.0.4

v7.0.3

28 Sep 11:44
Compare
Choose a tag to compare

7.0.3 - (2022-08-21)

🏠 Refactor

🐛 Bug Fixes

  • Fixed export paths for ESM code (a3df70b)

v7.0.2

28 Sep 11:43
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update dependency vitest to ^0.20.2 (#729) [skip publish] by @renovate in #729
  • chore(deps): update dependency @sapphire/utilities to ^3.9.0 by @renovate in #732
  • chore(deps): update github/codeql-action digest to 2ca79b6 by @renovate in #730
  • chore(deps): update all non-major dependencies by @renovate in #731

Full Changelog: v7.0.1...v7.0.2

v7.0.1

28 Sep 11:43
Compare
Choose a tag to compare

What's Changed

  • chore(deps): update github/codeql-action digest to 0c670bb by @renovate in #726
  • chore(deps): update all non-major dependencies by @renovate in #727

Full Changelog: v7.0.0...v7.0.1

v7.0.0

31 Jul 02:38
Compare
Choose a tag to compare

7.0.0 - (2022-07-31)

🏠 Refactor

🚀 Features

  • Complete rewrite, version 7.0.0 (#700) (06695a6)
    • 💥 feat: Pokemon now have a new field learnset to get access to the moves learned by the Pokémon
    • 💥 feat: Ability now has a new field pokemonThatHaveThisAbility which is a list of Pokémon that get this ability
    • 💥 BREAKING CHANGE: This package now depends on GraphQL v16
    • 💥 BREAKING CHANGE: The schema has changed, please see below for further details
    • 💥 BREAKING CHANGE: your requests MUST now include a Content-Type header with application/json as value to prevent CSFR
    • 💥 BREAKING CHANGE: The property in name in LearnsetMove and LearnsetLevelUpMove is now removed in favour of move
    • 💥 BREAKING CHANGE: Every move in a LearnsetMove and LearnsetLevelUpMove is now a Move object instead of just the name of the move
    • 💥 BREAKING CHANGE: Each entry in Pokemon.abilities is now an Ability type instead of a string type. Use Pokemon.ability[x].name to get the name.
    • 💥 BREAKING CHANGE: Each entry in Pokemon.types is now a PokemonType object. Use Pokemon.types[n].name to get the type name
    • 💥 BREAKING CHANGE: getPokemonByName query has been removed, use getPokemon instead.
    • 💥 BREAKING CHANGE: getPokemonBySpecies query has been removed, use getPokemon instead.
    • 💥 BREAKING CHANGE: getAllPokemon now returns a full Pokemon object instead of just a string of names
    • 💥 BREAKING CHANGE: The getTypeMatchup query now takes 2 parameters, the required primaryType and optional secondaryType. The replaces the array of types which left it ambiguous that the limit was 2 types.
    • 💥 BREAKING CHANGE: The GraphQL type Type has been renamed to TypeEffectiveness to avoid confusion with the noun type.
    • 💥 BREAKING CHANGE: When providing 2 identical types to getTypeMatchup the secondaryType will be nulled out.

Full Changelog: v6.5.11...v7.0.0