Skip to content

Releases: swagger-api/swagger-js

v3.32.4

25 Dec 21:05
Compare
Choose a tag to compare

3.32.4 (2024-12-25)

Bug Fixes

  • execute: apply fix for faulty OpenAPI Path Templating ABNF (ec75676)

There is an error in official OpenAPI Path Templating ABNF. Error has been addressed in OAI/OpenAPI-Specification#4279

v3.32.3

25 Dec 10:05
Compare
Choose a tag to compare

3.32.3 (2024-12-25)

Bug Fixes

  • execute: align Path Templates processing with OpenAPI spec (#3751) (2ac3c7f)

v3.32.2

03 Dec 09:47
Compare
Choose a tag to compare

3.32.2 (2024-12-03)

Bug Fixes

  • execute: fix encoding of objects and arrays with null and undefined values (#3726) (42bd8a9)

v3.32.1

25 Nov 13:04
Compare
Choose a tag to compare

3.32.1 (2024-11-25)

Bug Fixes

  • use ApiDOM@1.0.0-beta.3 with fixed dependency chain (#3723) (fb29cd6)

v3.32.0

22 Nov 12:20
Compare
Choose a tag to compare

3.32.0 (2024-11-22)

Features

v3.31.0

07 Nov 11:16
Compare
Choose a tag to compare

3.31.0 (2024-11-07)

Features

v3.30.1

05 Nov 10:24
Compare
Choose a tag to compare

3.30.1 (2024-11-05)

Bug Fixes

  • docs: fix typo around Scarf opt out settings (#3708) (517d8e6)

v3.30.0

05 Nov 10:02
Compare
Choose a tag to compare

3.30.0 (2024-11-05)

Features

  • analytics: use Scarf.js to provide anonymized installation analytics (#3707) (3e59da4)

Swagger Client uses Scarf to collect anonymized installation analytics. These analytics help support the maintainers of this library and ONLY run during installation. To opt out, you can set the scafrSettings.enabled field to false in your project's package.json:

// package.json
{
  // ...
  "scarfSettings": {
    "enabled": false
  }
  // ...
}

Alternatively, you can set the environment variable SCARF_ANALYTICS to false as part of the environment that installs your npm packages, e.g., SCARF_ANALYTICS=false npm install.

v3.29.4

08 Oct 10:19
Compare
Choose a tag to compare

3.29.4 (2024-10-08)

Bug Fixes

  • security: fix unsafe cookie serialization (#3680) (1e18423)

v3.29.3

13 Sep 14:16
Compare
Choose a tag to compare

3.29.3 (2024-09-13)

Bug Fixes

  • execute: do not encode server variables by default (6a151d9), closes #3656