Skip to content

Choose a tag to compare

@asyncapi-bot asyncapi-bot released this 03 Jan 02:02
· 21 commits to master since this release
870eb6b

Major Changes

  • dac7bb4: Removed support for AsyncAPI Generator v1 and v2. The CLI now exclusively uses Generator v3. The --use-new-generator flag has been removed from the generate fromTemplate command.

  • b90a9b7: ## Major release with important security updates

    • Keeping in mind the recent Shai-Hulud attack, we have adopted trusted publishing with NPM.
    • This requires us to use node >= 24 and npm >= 11
    • Next.js version is in sync with Studio, and is currently 14.2.35 deemed safe by CVE. For more details

    Breaking Changes

    • Node.js version 24 or higher is now required.
    • NPM version 11 or higher is now required.
    • Next.js version is now 14.2.35 or higher.
    • The CLI now exclusively uses Generator v3 only.
    • The --use-new-generator flag has been removed from the generate fromTemplate command.
    • Default template in action has been upgraded to @asyncapi/markdown-template@2.0.0

    Please make sure to update your environment accordingly before upgrading to this version.

Minor Changes

Patch Changes

  • 394967f: fix: remove unnecessary await from startPreview call

    The startPreview function returns void, not a Promise, so awaiting it
    was incorrect and triggered a linter error. This matches the pattern
    used in the studio command.