8000 Comparing v1.0.2...v1.0.3 · bufbuild/buf-action · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bufbuild/buf-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: bufbuild/buf-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.3
Choose a head ref
  • 13 commits
  • 17 files changed
  • 6 contributors

Commits on Oct 19, 2024

  1. Add migration guide doc (#74)

    Improve the documentation for migrating from the individual actions.
    
    ---------
    
    Co-authored-by: Nick Snyder <nsnyder@buf.build>
    emcfarlane and nicksnyder authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    7997a8a View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Set debug when the action is using debug logging (#78)

    Inherits the debug condition from the action to enable running of
    commands with `--debug` flag set. This is preferred over an explicit
    `debug` parameter to avoid churn in changing the config.
    
    Closes #77
    emcfarlane authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    d5697c6 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2025

  1. Update license year range (#84)

    Update license year range to include 2025.
    emcfarlane authored Jan 6, 2025
    Configuration menu
    Copy the full SHA
    14204a6 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2025

  1. Bump undici from 5.28.4 to 5.28.5 (#85)

    Bumps [undici](https://github.com/nodejs/undici) from 5.28.4 to 5.28.5.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/nodejs/undici/releases">undici's
    releases</a>.</em></p>
    <blockquote>
    <h2>v5.28.5</h2>
    <h1>⚠️ Security Release ⚠️</h1>
    <p>Fixes CVE CVE-2025-22150 <a
    href="https://github.com/nodejs/undici/security/advisories/GHSA-c76h-2ccp-4975">https://github.com/nodejs/undici/security/advisories/GHSA-c76h-2ccp-4975</a>
    (embargoed until 22-01-2025).</p>
    <p><strong>Full Changelog</strong>: <a
    href="https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5">https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5</a></p>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/nodejs/undici/commit/6139ed2e0c787853243de58ef7c4301b26ca66f2"><code>6139ed2</code></a>
    Bumped v5.28.5</li>
    <li><a
    href="https://github.com/nodejs/undici/commit/711e20772764c29f6622ddc937c63b6eefdf07d0"><code>711e207</code></a>
    Backport of c2d78cd</li>
    <li>See full diff in <a
    href="https://github.com/nodejs/undici/compare/v5.28.4...v5.28.5">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=undici&package-manager=npm_and_yarn&previous-version=5.28.4&new-version=5.28.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    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-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    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 merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@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)
    You can disable automated security fix PRs for this repo from the
    [Security Alerts
    page](https://github.com/bufbuild/buf-action/network/alerts).
    
    </details>
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Nick Snyder <nsnyder@buf.build>
    dependabot[bot] and nicksnyder authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    28a3930 View commit details
    Browse the repository at this point in the history
  2. Set --source-control-url on push (#86)

    This ensures push will work on enterprise GitHub instances that have
    arbitrary URLs.
    
    ---------
    
    Co-authored-by: Doria Keung <doria.keung@gmail.com>
    nicksnyder and doriable authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    c536ef2 View commit details
    Browse the repository at this point in the history
  3. Add dependabot config for NPM packages (#87)

    This adds dependabot config to ensure the action deps are maintained.
    emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    6a513b7 View commit details
    Browse the repository at this point in the history
  4. Update connect (#93)

    ```
    npm install @buf/bufbuild_registry.connectrpc_es@1.6.1-20250116203702-1c024d64352b.2 @connectrpc/connect@1.6.1 @connectrpc/connect-web@1.6.1
    ```
    nicksnyder authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    07804ce View commit details
    Browse the repository at this point in the history
  5. Upgrade connect to v2 (#95)

    Run the migration, fixed the package lock file dependencies.
    emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    2763af3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    051d8dc View commit details
    Browse the repository at this point in the history
  7. Cleanup removed action input username (#97)

    This was removed before 1.0, causing warning in test output.
    emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    e454471 View commit details
    Browse the repository at this point in the history
  8. Update NPM dependencies (#98)

    Co-authored-by: Edward McFarlane <emcfarlane@buf.build>
    doriable and emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    c31d515 View commit details
    Browse the repository at this point in the history
  9. Rebuild on dependabot updates (#96)

    To allow dependabot to upgrade deps, run an action to rebuild after the
    package updates. Based on
    dependabot/dependabot-core#5962 (comment)
    emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    3b9e8a6 View commit details
    Browse the repository at this point in the history
  10. Prepare for v1.0.3 (#99)

    Below is the draft release notes:
    
    ## What's Changed
    * Add migration guide doc by @emcfarlane in
    #74
    * Set --debug when the action is using debug logging by @emcfarlane in
    #78
    * Set --source-control-url on push so that the push action now works by
    default on enterprise GitHub instances by @nicksnyder in
    #86
    
    ## New Contributors
    * @doriable made their first contribution in
    #98
    
    **Full Changelog**:
    v1.0.2...v1.0.3
    emcfarlane authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    b46cbc0 View commit details
    Browse the repository at this point in the history
Loading
0