chore: re-generate changelogs - #32886
Merged
Merged
Conversation
LekoArts
reviewed
Aug 25, 2021
# Conflicts: # packages/babel-plugin-remove-graphql-queries/CHANGELOG.md # packages/babel-preset-gatsby/CHANGELOG.md # packages/gatsby-admin/CHANGELOG.md # packages/gatsby-cli/CHANGELOG.md # packages/gatsby-core-utils/CHANGELOG.md # packages/gatsby-page-utils/CHANGELOG.md # packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md # packages/gatsby-plugin-image/CHANGELOG.md # packages/gatsby-plugin-manifest/CHANGELOG.md # packages/gatsby-plugin-mdx/CHANGELOG.md # packages/gatsby-plugin-netlify/CHANGELOG.md # packages/gatsby-plugin-offline/CHANGELOG.md # packages/gatsby-plugin-page-creator/CHANGELOG.md # packages/gatsby-plugin-preload-fonts/CHANGELOG.md # packages/gatsby-plugin-sharp/CHANGELOG.md # packages/gatsby-plugin-typescript/CHANGELOG.md # packages/gatsby-recipes/CHANGELOG.md # packages/gatsby-remark-images/CHANGELOG.md # packages/gatsby-source-contentful/CHANGELOG.md # packages/gatsby-source-drupal/CHANGELOG.md # packages/gatsby-source-filesystem/CHANGELOG.md # packages/gatsby-source-shopify/CHANGELOG.md # packages/gatsby-source-wordpress/CHANGELOG.md # packages/gatsby-telemetry/CHANGELOG.md # packages/gatsby-transformer-remark/CHANGELOG.md # packages/gatsby-transformer-sqip/CHANGELOG.md # packages/gatsby/CHANGELOG.md
Contributor
|
Wanted to pop in and say I'm really excited about this! |
vladar
force-pushed
the
vladar/generate-changelogs
branch
from
August 25, 2021 21:28
d7b0c8c to
6f86ce1
Compare
vladar
force-pushed
the
vladar/generate-changelogs
branch
from
August 25, 2021 22:16
33a0200 to
712d457
Compare
For some reason filtering by tags doesn't work out of the box :/
Will re-enabe in a follow up when changelogs in master are re-generated
This was referenced Oct 19, 2024
This was referenced Oct 20, 2024
This was referenced Oct 21, 2024
raffishquartan
pushed a commit
to raffishquartan/gatsby
that referenced
this pull request
Apr 28, 2026
* chore: re-generate changelogs * updated all changelogs * support incremental changelog updates * add utils to update changelogs on publish * Change release history URLs to something more useful * several fixes * replace lerna changelogs * fix missing export * re-generate changelogs again after merging master * formatting fixes * draft: open PR script * simplify a bit * use GITHUB_BOT_AUTH_TOKEN vs GITHUB_ACCESS_TOKEN * update circle-ci config * Trigger on stable releases only * add python to job in ci * cleanup / format * fix for older node * filter ci by release branches for now For some reason filtering by tags doesn't work out of the box :/ * Disable in circleci untila a PR is merged Will re-enabe in a follow up when changelogs in master are re-generated * Update README * fix changelog of gatsby-transformer-sharp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Added tooling for changelog generation and auto-updates based on our release process conventions. See README for CLI usage.
Updated changelogs of all packages in master. Example: updated changelog for
gatsby. Now each minor release links to release notes as well.There are also some automation scripts:
Updates changelogs on
lerna publishThis tool uses
versionlifecycle hook of lerna to automatically update changelogs on publish.It only updates changelogs when stable releases are published. Pre-releases and canaries are ignored
(caveat:
rc,alpha,betaversions won't get their changelog entries).See
versionfield inpackage.jsonon actual setup (useslerna-version-lifecycle.jsscript from this new tool)Updates changelogs in
masterautomaticallyActual publishing happens in
release/*branches, so changelogs inmasterget out of sync.To sync them we need to update changelogs in
masterseparately. This will happen automatically viaupdate_changelogsjob in CircleCI (will enable in a follow up after merging this PR). This job callsupdate-and-open-pr.jsto update changelogs in the current branch and open a PR with suggested updates.