Skip to content

chore: Bump @changesets/get-github-info from 1.0.0-next.4 to 1.0.0 - #808

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-changesets-get-github-info-1.0.0
Open

chore: Bump @changesets/get-github-info from 1.0.0-next.4 to 1.0.0#808
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-changesets-get-github-info-1.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor

Bumps @changesets/get-github-info from 1.0.0-next.4 to 1.0.0.

Release notes

Sourced from @​changesets/get-github-info's releases.

@​changesets/get-github-info@​1.0.0

Major Changes

  • #2121 dae394c Thanks @​bluwy! - Rename getInfo to getCommitInfo, and getInfoFromPullRequest to getPullRequestInfo. They may now return undefined if the commit or pull request is not found in the GitHub repository.

    The return types are also slightly changed but should contain the same information as before. To migrate:

    const info = await getCommitInfo({ commit, repo });
    if (info == null) return;
    // Before:
    const authorLogin = info.user;
    const authorLink = info.links.author;
    const pullNumber = info.pull;
    const pullLink = info.links.pull;
    const commitLink = info.links.commit;
    // After:
    const authorLogin = info.author.login;
    const authorLink = info.author.markdownLink;
    const pullNumber = info.pull.number;
    const pullLink = info.pull.markdownLink;
    const commitLink = info.commit.markdownLink;

    getPullRequestInfo also has a similar migration path.

  • #1482 df424a4 Thanks @​Andarist! - Bumped supported Node versions to ^22.11 || ^24 || >=26

  • #1482 df424a4 Thanks @​Andarist! - From now on this package is going to be published as ES module.

Minor Changes

  • #2121 dae394c Thanks @​bluwy! - Improve data fetching by using GraphQL fragments to reduce the query size, and set a maximum batch size of 50 to avoid hitting rate limits

Patch Changes

Changelog

Sourced from @​changesets/get-github-info's changelog.

1.0.0

Major Changes

  • #2121 dae394c Thanks @​bluwy! - Rename getInfo to getCommitInfo, and getInfoFromPullRequest to getPullRequestInfo. They may now return undefined if the commit or pull request is not found in the GitHub repository.

    The return types are also slightly changed but should contain the same information as before. To migrate:

    const info = await getCommitInfo({ commit, repo });
    if (info == null) return;
    // Before:
    const authorLogin = info.user;
    const authorLink = info.links.author;
    const pullNumber = info.pull;
    const pullLink = info.links.pull;
    const commitLink = info.links.commit;
    // After:
    const authorLogin = info.author.login;
    const authorLink = info.author.markdownLink;
    const pullNumber = info.pull.number;
    const pullLink = info.pull.markdownLink;
    const commitLink = info.commit.markdownLink;

    getPullRequestInfo also has a similar migration path.

  • #1482 df424a4 Thanks @​Andarist! - Bumped supported Node versions to ^22.11 || ^24 || >=26

  • #1482 df424a4 Thanks @​Andarist! - From now on this package is going to be published as ES module.

Minor Changes

  • #2121 dae394c Thanks @​bluwy! - Improve data fetching by using GraphQL fragments to reduce the query size, and set a maximum batch size of 50 to avoid hitting rate limits

Patch Changes

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@changesets/get-github-info](https://github.com/changesets/changesets/tree/HEAD/packages/get-github-info) from 1.0.0-next.4 to 1.0.0.
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/packages/get-github-info/CHANGELOG.md)
- [Commits](https://github.com/changesets/changesets/commits/@changesets/get-github-info@1.0.0/packages/get-github-info)

---
updated-dependencies:
- dependency-name: "@changesets/get-github-info"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants