Major Changes
-
dac7bb4: Removed support for AsyncAPI Generator v1 and v2. The CLI now exclusively uses Generator v3. The
--use-new-generatorflag has been removed from thegenerate fromTemplatecommand. -
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-generatorflag has been removed from thegenerate fromTemplatecommand. - 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
- c648614: Studio updated to 1.1.0 with Next.js 14.2.35 in https://github.com/asyncapi/cli/pull/1922/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.