mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.19.42 to 18.19.43. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@directus/release-notes-generator
A release notes generator for changesets used by Directus
Installation
npm install @directus/release-notes-generator
Usage
Update the .changeset/config.json file to point to this package:
"changelog": "@directus/release-notes-generator",
The release notes will be generated and printed when running the changesets command to update the versions:
GITHUB_TOKEN=<token> pnpm changeset version
For local use, you'll need a
GitHub personal access token
with read:user and repo:status permissions.
To force the main version:
DIRECTUS_VERSION=10.0.0 GITHUB_TOKEN=<token> pnpm changeset version
# To force a prerelease version you need to be in prerelease mode
pnpm changeset pre enter beta
DIRECTUS_VERSION=10.0.0-beta.0 GITHUB_TOKEN=<token> pnpm changeset version
GitHub CI
When running pnpm changeset version in the GitHub CI context, this package will automatically set the following
outputs:
DIRECTUS_VERSIONDIRECTUS_PRERELEASEDIRECTUS_PRERELEASE_ID(available ifDIRECTUS_PRERELEASEistrue)DIRECTUS_RELEASE_NOTES
Special Changesets Features
Notices in Changesets
In addition to the normal content, changeset may include a notice to draw special attention to a change. These notices will be rendered in the release notes under the section "⚠️ Potential Breaking Changes".
Use the following format to add such a notice:
---
'example-package': patch
---
::: notice
Notices can contain any markdown syntax
- An important notice
:::
Normal changeset summary