-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: re-generate changelogs #32886
Merged
Merged
Conversation
This file contains 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
gatsbot
bot
added
the
status: triage needed
Issue or pull request that need to be triaged and assigned to a reviewer
label
Aug 23, 2021
vladar
added
type: maintenance
An issue or pull request describing a change that isn't a bug, feature or documentation change
and removed
status: triage needed
Issue or pull request that need to be triaged and assigned to a reviewer
labels
Aug 23, 2021
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
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
type: maintenance
An issue or pull request describing a change that isn't a bug, feature or documentation change
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 publish
This tool uses
version
lifecycle 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
,beta
versions won't get their changelog entries).See
version
field inpackage.json
on actual setup (useslerna-version-lifecycle.js
script from this new tool)Updates changelogs in
master
automaticallyActual publishing happens in
release/*
branches, so changelogs inmaster
get out of sync.To sync them we need to update changelogs in
master
separately. This will happen automatically viaupdate_changelogs
job in CircleCI (will enable in a follow up after merging this PR). This job callsupdate-and-open-pr.js
to update changelogs in the current branch and open a PR with suggested updates.