Skip to content

Releases: digitalghost-dev/poke-cli

v1.6.2

29 Aug 00:47
v1.6.2
a4d0cd3

Choose a tag to compare

Changed

  • Changed connections/connection.go to now include a connection timeout. (#181)
  • Changed the --image=xx flag for the pokemon command to render images faster and use less memory. (#183)

Fixed

  • Fixed issue when calling a Pokémon with a regional form such as Alolan Exeggutor. (#182)

v1.6.1

26 Aug 22:53
v1.6.1
df28b19

Choose a tag to compare

Added

  • Added the selected Pokémon's flavor entry when using the pokemon command. (#169)
  • Added the selected Pokémon's previous evolution if it is a stage 1 or stage 2 Pokémon (#178)

Changed

  • Changed the calling of each flag for the pokemon command by iterating over a struct and calling a helper function. (#179)

v1.6.0

19 Aug 01:10
v1.6.0
999f800

Choose a tag to compare

Added

  • Added new -d | --defense flag to pokemon command that prints out a basic section of the selected Pokemon's type defenses. (#168)
poke-cli-freeze

v1.5.2

13 Aug 21:58
v1.5.2
985d4f7

Choose a tag to compare

Changed

  • Changed -v | --version flag output to better fit the project's overall theme and removed "Latest Docker version" check and will now only check GitHub's latest release version. (#173)
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃                              ┃
┃  Latest available version:   ┃
┃  • v1.5.1                    ┃
┃                              ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛

Secured

  • Secured against G104 (CWE-703): Errors unhandled. (Confidence: HIGH, Severity: LOW) caught by gosec. (#175)
  • Secured against CVE-2025-4674 by updating to Go v1.24.5. (#174)

v1.5.1

26 Jul 20:11
v1.5.1
4dc2144

Choose a tag to compare

Changed

  • Changed pokemon command to display the selected Pokémon's typing instead of using the -t | --types flag. (#170)

Deprecated

  • Deprecated the -t | --types flag used in the pokemon command. (#171)

v1.5.0

20 Jul 22:21
v1.5.0
0451b1b

Choose a tag to compare

Added

  • Added new speed command that can calculate the speed of a Pokémon in battle. (#166)

v1.4.0

09 Jul 01:28
v1.4.0
46d0e4c

Choose a tag to compare

Added

  • Added new item command. Retrieve details about an item! (#158)
    $ poke-cli item choice-band
     ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
     ┃                                ┃
     ┃  Choice Band                   ┃
     ┃  Cost: 4000                    ┃
     ┃  Category: Choice              ┃
     ┃  ---                           ┃
     ┃  Description:                  ┃
     ┃  An item to be held by a       ┃
     ┃  Pokémon. This curious         ┃
     ┃  headband boosts Attack but    ┃
     ┃  only allows the use of        ┃
     ┃  one move.                     ┃
     ┃                                ┃
     ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
    

Changed

  • Changed reused code logic to be a function. (#163)
  • Changed quitting behavior of types command when in the selection menu. The program will now display a "Goodbye!" message.

Fixed

  • Fixed 'Dark' type missing from the types selection table. (#160)
  • Fixed error message not displaying when a non-valid image sized is used. (#164)

Security

  • Secured against CVE-2025-4575 by adding apk upgrade line to Dockerfile. (#161)

v1.3.3

02 Jul 20:43
v1.3.3

Choose a tag to compare

Added

  • Added documentation link to main --help | -h flag that will direct users to a docs site with more information.

Changed

  • Changed the ability command to include information about the generation in which the ability first appeared.

v1.3.2

22 Jun 06:01
v1.3.2
361d23a

Choose a tag to compare

Changed

  • Changed the --moves | -m flag for the pokemon command to use concurrency for calling each learnable move.

v1.3.1

17 Jun 21:09
v1.3.1
ef71de0

Choose a tag to compare

Changed

  • Changed connections.PokemonApiCall() to reduce the amount return items. (#148)

Fixed

  • Fixed connections.MoveApiCall() not checking for an error when calling the function. (#149)
  • Fixed utils.HandleCommandOutput() to return the proper error return code. (#150)

Security

  • Secured against vulnerabilities in Go v1.24.2 by updating to Go v1.24.4. (#151)