Skip to content

Releases: bump-sh/cli

v2.3.3 (2022-02-03) Support for AsyncAPI 2.3

03 Feb 16:37
04d13d8
Compare
Choose a tag to compare

🆙 Support for the latest 2.3 release of AsyncAPI specification

Have fun designing APIs ✨

v2.3.2 (2022-01-20) Allow public `bump diff` command

20 Jan 18:02
1be1246
Compare
Choose a tag to compare

🆕 diff command can now be called unauthenticated

  • The bump diff command can be called without the --doc (and token) flags so you can now diff any two OpenAPI or AsyncAPI definitions

v2.3.1 (2022-01-12) Add new format outputs for the `bump diff` command

12 Jan 15:37
cb3ec11
Compare
Choose a tag to compare

🆕 diff command now accepts a --format argument

  • The bump diff command now accepts a --format argument to be able to return three different format diff outputs:
    • text will return the current default format
    • markdown will return a markdown formatted diff
    • json will return a list of json objects with all the details of the diff

v2.3.0 (2022-01-12) Internal changes to export core diff library

12 Jan 15:22
975251f
Compare
Choose a tag to compare

🔧 Internal changes only

  • This release is mainly a refactoring to avoid using the commands/diff.ts Diff command class to be able to programmatically retrieve the diff result. Instead of calling bump.Diff.run([cli, params]) you'll now have to instantiate the lib and use the exported run function like so: new bump.Diff(config).run. See the run function signature for details.

🆙 Upgrades

Thanks to @dependabot, all the node dependencies we use are up-to-date as of today.

v2.2.6 (2021-10-18) bugfix release 🐛

18 Oct 15:59
01a1505
Compare
Choose a tag to compare

🐛 bugfix

  • Handle empty diffs properly when two files are given as input to the bump diff command. See #172 for details

v2.2.5 (2021-10-12) Accept AsyncAPI files up to v2.2.0 of the specificiation

12 Oct 08:29
2ae4999
Compare
Choose a tag to compare

🆕 Improved AsyncAPI support

v2.2.4 (2021-10-08) Internal changes to fix programmatic usage of the CLI

12 Oct 08:25
a689809
Compare
Choose a tag to compare

🐛 🔧 Internal changes only

  • fixes a bug introduced by previous release to be able to use this package programmatically (currently used by our Github-Action)

v2.2.3 (2021-10-06) 'bump diff' can now compare two files

06 Oct 08:48
e74ee95
Compare
Choose a tag to compare

🆕 Compute changelog between two versions of your API

  • This release brings a new possibility to the existing bump diff command which was released in v2.1.0.

    You can now compare any two different files together in the context of your existing Bump documentation. This means you will still need to be authenticated with your API on Bump to compare two given files or URLs. Here's how you would do it:

    $ bump diff openapi-file.yml next-openapi-file.yml --doc <doc_slug> --token <your_doc_token>
    * Let's compare the two given definition files... done
    
    Updated: POST /users
      Body attribute added: postcode

    In a future version, you will also be able to use the bump diff command without authentication so stay tuned!

v2.2.2 (2021-10-05) Internal changes preparing for two files `bump diff`

05 Oct 18:12
bd4379c
Compare
Choose a tag to compare

🔧 Internal changes only

  • This release brings the foundations to be able to compute a diff between two files. Please check v2.2.3 for the user facing changes.

🆙 Upgrades

Thanks to @dependabot, all the node dependencies we use are up-to-date as of today.

v2.2.1 (2021-09-23) Internal model update

24 Sep 08:38
39723e4
Compare
Choose a tag to compare