Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#955)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing |
Confidence |
|---|---|---|---|---|---|---|---|
| [esbuild](https://github.com/evanw/esbuild) | | minor | `0.20.2` ->
`0.21.4` |
[![age](https://developer.mend.io/api/mc/badges/age/hermit/esbuild/0.21.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/esbuild/0.21.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/esbuild/0.20.2/0.21.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/esbuild/0.20.2/0.21.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/alecthomas/assert/v2](https://github.com/alecthomas/assert)
| require | minor | `v2.7.0` -> `v2.10.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2falecthomas%2fassert%2fv2/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2falecthomas%2fassert%2fv2/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2falecthomas%2fassert%2fv2/v2.7.0/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2falecthomas%2fassert%2fv2/v2.7.0/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/alecthomas/chroma/v2](https://github.com/alecthomas/chroma)
| require | minor | `v2.13.0` -> `v2.14.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2falecthomas%2fchroma%2fv2/v2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2falecthomas%2fchroma%2fv2/v2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2falecthomas%2fchroma%2fv2/v2.13.0/v2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2falecthomas%2fchroma%2fv2/v2.13.0/v2.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [go](https://github.com/golang/go) | | patch | `1.22.1` -> `1.22.3`
|
[![age](https://developer.mend.io/api/mc/badges/age/hermit/go/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/go/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/go/1.22.1/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/go/1.22.1/1.22.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [goreleaser](https://github.com/goreleaser/goreleaser) | | minor |
`1.24.0` -> `1.26.2` |
[![age](https://developer.mend.io/api/mc/badges/age/hermit/goreleaser/1.26.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/hermit/goreleaser/1.26.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/hermit/goreleaser/1.24.0/1.26.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/hermit/goreleaser/1.24.0/1.26.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>evanw/esbuild (esbuild)</summary>

###
[`v0.21.4`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0214)

[Compare
Source](https://github.com/evanw/esbuild/compare/v0.21.3...v0.21.4)

- Update support for import assertions and import attributes in node
([#&#8203;3778](https://github.com/evanw/esbuild/issues/3778))

Import assertions (the `assert` keyword) have been removed from node
starting in v22.0.0. So esbuild will now strip them and generate a
warning with `--target=node22` or above:

▲ [WARNING] The "assert" keyword is not supported in the configured
target environment ("node22") [assert-to-with]

            example.mjs:1:40:
1 │ import json from "esbuild/package.json" assert { type: "json" }
                │                                         ~~~~~~
                ╵                                         with

          Did you mean to use "with" instead of "assert"?

Import attributes (the `with` keyword) have been backported to node 18
starting in v18.20.0. So esbuild will no longer strip them with
`--target=node18.N` if `N` is 20 or greater.

-   Fix `for await` transform when a label is present

This release fixes a bug where the `for await` transform, which wraps
the loop in a `try` statement, previously failed to also move the loop's
label into the `try` statement. This bug only affects code that uses
both of these features in combination. Here's an example of some
affected code:

    ```js
    // Original code
    async function test() {
      outer: for await (const x of [Promise.resolve([0, 1])]) {
        for (const y of x) if (y) break outer
        throw 'fail'
      }
    }

    // Old output (with --target=es6)
    function test() {
      return __async(this, null, function* () {
        outer: try {
for (var iter = __forAwait([Promise.resolve([0, 1])]), more, temp,
error; more = !(temp = yield iter.next()).done; more = false) {
            const x = temp.value;
            for (const y of x) if (y) break outer;
            throw "fail";
          }
        } catch (temp) {
          error = [temp];
        } finally {
          try {
            more && (temp = iter.return) && (yield temp.call(iter));
          } finally {
            if (error)
              throw error[0];
          }
        }
      });
    }

    // New output (with --target=es6)
    function test() {
      return __async(this, null, function* () {
        try {
outer: for (var iter = __forAwait([Promise.resolve([0, 1])]), more,
temp, error; more = !(temp = yield iter.next()).done; more = false) {
            const x = temp.value;
            for (const y of x) if (y) break outer;
            throw "fail";
          }
        } catch (temp) {
          error = [temp];
        } finally {
          try {
            more && (temp = iter.return) && (yield temp.call(iter));
          } finally {
            if (error)
              throw error[0];
          }
        }
      });
    }
    ```

- Do additional constant folding after cross-module enum inlining
([#&#8203;3416](https://github.com/evanw/esbuild/issues/3416),
[#&#8203;3425](https://github.com/evanw/esbuild/issues/3425))

This release adds a few more cases where esbuild does constant folding
after cross-module enum inlining.

    ```ts
    // Original code: enum.ts
    export enum Platform {
      WINDOWS = 'windows',
      MACOS = 'macos',
      LINUX = 'linux',
    }

    // Original code: main.ts
    import { Platform } from './enum';
    declare const PLATFORM: string;
    export function logPlatform() {
      if (PLATFORM == Platform.WINDOWS) console.log('Windows');
      else if (PLATFORM == Platform.MACOS) console.log('macOS');
      else if (PLATFORM == Platform.LINUX) console.log('Linux');
      else console.log('Other');
    }

// Old output (with --bundle '--define:PLATFORM="macos"' --minify
--format=esm)
function
n(){"windows"=="macos"?console.log("Windows"):"macos"=="macos"?console.log("macOS"):"linux"=="macos"?console.log("Linux"):console.log("Other")}export{n
as logPlatform};

// New output (with --bundle '--define:PLATFORM="macos"' --minify
--format=esm)
    function n(){console.log("macOS")}export{n as logPlatform};
    ```

- Pass import attributes to on-resolve plugins
([#&#8203;3384](https://github.com/evanw/esbuild/issues/3384),
[#&#8203;3639](https://github.com/evanw/esbuild/issues/3639),
[#&#8203;3646](https://github.com/evanw/esbuild/issues/3646))

With this release, on-resolve plugins will now have access to the import
attributes on the import via the `with` property of the arguments
object. This mirrors the `with` property of the arguments object that's
already passed to on-load plugins. In addition, you can now pass `with`
to the `resolve()` API call which will then forward that value on to all
relevant plugins. Here's an example of a plugin that can now be written:

    ```js
    const examplePlugin = {
      name: 'Example plugin',
      setup(build) {
        build.onResolve({ filter: /.*/ }, args => {
          if (args.with.type === 'external')
            return { external: true }
        })
      }
    }

    require('esbuild').build({
      stdin: {
        contents: `
          import foo from "./foo" with { type: "external" }
          foo()
        `,
      },
      bundle: true,
      format: 'esm',
      write: false,
      plugins: [examplePlugin],
    }).then(result => {
      console.log(result.outputFiles[0].text)
    })
    ```

- Formatting support for the `@position-try` rule
([#&#8203;3773](https://github.com/evanw/esbuild/issues/3773))

Chrome shipped this new CSS at-rule in version 125 as part of the [CSS
anchor positioning
API](https://developer.chrome.com/blog/anchor-positioning-api). With
this release, esbuild now knows to expect a declaration list inside of
the `@position-try` body block and will format it appropriately.

- Always allow internal string import and export aliases
([#&#8203;3343](https://github.com/evanw/esbuild/issues/3343))

Import and export names can be string literals in ES2022+. Previously
esbuild forbid any usage of these aliases when the target was below
ES2022. Starting with this release, esbuild will only forbid such usage
when the alias would otherwise end up in output as a string literal.
String literal aliases that are only used internally in the bundle and
are "compiled away" are no longer errors. This makes it possible to use
string literal aliases with esbuild's `inject` feature even when the
target is earlier than ES2022.

###
[`v0.21.3`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0213)

[Compare
Source](https://github.com/evanw/esbuild/compare/v0.21.2...v0.21.3)

- Implement the decorator metadata proposal
([#&#8203;3760](https://github.com/evanw/esbuild/issues/3760))

This release implements the [decorator metadata
proposal](https://github.com/tc39/proposal-decorator-metadata), which
is a sub-proposal of the [decorators
proposal](https://github.com/tc39/proposal-decorators). Microsoft
shipped the decorators proposal in [TypeScript
5.0](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0/#decorators)
and the decorator metadata proposal in [TypeScript
5.2](https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/#decorator-metadata),
so it's important that esbuild also supports both of these features.
Here's a quick example:

    ```js
    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')

    const track = (_, context) => {
      (context.metadata.names ||= []).push(context.name)
    }

    class Foo {
      @&#8203;track foo = 1
      @&#8203;track bar = 2
    }

    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)
    ```

    **⚠️ WARNING ⚠️**

This proposal has been marked as "stage 3" which means "recommended for
implementation". However, it's still a work in progress and isn't a part
of JavaScript yet, so keep in mind that any code that uses JavaScript
decorator metadata may need to be updated as the feature continues to
evolve. If/when that happens, I will update esbuild's implementation to
match the specification. I will not be supporting old versions of the
specification.

- Fix bundled decorators in derived classes
([#&#8203;3768](https://github.com/evanw/esbuild/issues/3768))

In certain cases, bundling code that uses decorators in a derived class
with a class body that references its own class name could previously
generate code that crashes at run-time due to an incorrect variable
name. This problem has been fixed. Here is an example of code that was
compiled incorrectly before this fix:

    ```js
    class Foo extends Object {
      @&#8203;(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
    ```

- Fix `tsconfig.json` files inside symlinked directories
([#&#8203;3767](https://github.com/evanw/esbuild/issues/3767))

This release fixes an issue with a scenario involving a `tsconfig.json`
file that `extends` another file from within a symlinked directory that
uses the `paths` feature. In that case, the implicit `baseURL` value
should be based on the real path (i.e. after expanding all symbolic
links) instead of the original path. This was already done for other
files that esbuild resolves but was not yet done for `tsconfig.json`
because it's special-cased (the regular path resolver can't be used
because the information inside `tsconfig.json` is involved in path
resolution). Note that this fix no longer applies if the
`--preserve-symlinks` setting is enabled.

###
[`v0.21.2`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0212)

[Compare
Source](https://github.com/evanw/esbuild/compare/v0.21.1...v0.21.2)

- Correct `this` in field and accessor decorators
([#&#8203;3761](https://github.com/evanw/esbuild/issues/3761))

This release changes the value of `this` in initializers for class field
and accessor decorators from the module-level `this` value to the
appropriate `this` value for the decorated element (either the class or
the instance). It was previously incorrect due to lack of test coverage.
Here's an example of a decorator that doesn't work without this change:

    ```js
    const dec = () => function() { this.bar = true }
    class Foo { @&#8203;dec static foo }
    console.log(Foo.bar) // Should be "true"
    ```

- Allow `es2023` as a target environment
([#&#8203;3762](https://github.com/evanw/esbuild/issues/3762))

TypeScript recently [added
`es2023`](https://github.com/microsoft/TypeScript/pull/58140) as a
compilation target, so esbuild now supports this too. There is no
difference between a target of `es2022` and `es2023` as far as esbuild
is concerned since the 2023 edition of JavaScript doesn't introduce any
new syntax features.

###
[`v0.21.1`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0211)

- Fix a regression with `--keep-names`
([#&#8203;3756](https://github.com/evanw/esbuild/issues/3756))

The previous release introduced a regression with the `--keep-names`
setting and object literals with `get`/`set` accessor methods, in which
case the generated code contained syntax errors. This release fixes the
regression:

    ```js
    // Original code
    x = { get y() {} }

    // Output from version 0.21.0 (with --keep-names)
    x = { get y: /* @&#8203;__PURE__ */ __name(function() {
    }, "y") };

    // Output from this version (with --keep-names)
    x = { get y() {
    } };
    ```

</details>

<details>
<summary>alecthomas/assert (github.com/alecthomas/assert/v2)</summary>

###
[`v2.10.0`](https://github.com/alecthomas/assert/compare/v2.9.0...v2.10.0)

[Compare
Source](https://github.com/alecthomas/assert/compare/v2.9.0...v2.10.0)

###
[`v2.9.0`](https://github.com/alecthomas/assert/compare/v2.8.1...v2.9.0)

[Compare
Source](https://github.com/alecthomas/assert/compare/v2.8.1...v2.9.0)

###
[`v2.8.1`](https://github.com/alecthomas/assert/compare/v2.8.0...v2.8.1)

[Compare
Source](https://github.com/alecthomas/assert/compare/v2.8.0...v2.8.1)

###
[`v2.8.0`](https://github.com/alecthomas/assert/compare/v2.7.0...v2.8.0)

[Compare
Source](https://github.com/alecthomas/assert/compare/v2.7.0...v2.8.0)

</details>

<details>
<summary>alecthomas/chroma (github.com/alecthomas/chroma/v2)</summary>

###
[`v2.14.0`](https://github.com/alecthomas/chroma/releases/tag/v2.14.0)

[Compare
Source](https://github.com/alecthomas/chroma/compare/v2.13.0...v2.14.0)

#### Changelog

- [`1e983e7`](https://github.com/alecthomas/chroma/commit/1e983e7)
lexers/cue: support CUE attributes
([#&#8203;961](https://github.com/alecthomas/chroma/issues/961))
- [`9347b55`](https://github.com/alecthomas/chroma/commit/9347b55) Add
Gleam syntax highlighting
([#&#8203;959](https://github.com/alecthomas/chroma/issues/959))
- [`6b7ffe1`](https://github.com/alecthomas/chroma/commit/6b7ffe1)
chore(styles): add tokyonight inspired styles
([#&#8203;957](https://github.com/alecthomas/chroma/issues/957))
- [`736c0ea`](https://github.com/alecthomas/chroma/commit/736c0ea)
Typescript: Several fixes
([#&#8203;952](https://github.com/alecthomas/chroma/issues/952))
- [`e5c25d0`](https://github.com/alecthomas/chroma/commit/e5c25d0)
Org: Keep all newlines
([#&#8203;951](https://github.com/alecthomas/chroma/issues/951))
- [`d07caa4`](https://github.com/alecthomas/chroma/commit/d07caa4)
chore(deps): update module github.com/alecthomas/assert/v2 to v2.7.0
([#&#8203;949](https://github.com/alecthomas/chroma/issues/949))
- [`5f83664`](https://github.com/alecthomas/chroma/commit/5f83664)
Vue: Handle more edge cases
([#&#8203;950](https://github.com/alecthomas/chroma/issues/950))
- [`32c053f`](https://github.com/alecthomas/chroma/commit/32c053f)
chore(deps): update all non-major dependencies
([#&#8203;948](https://github.com/alecthomas/chroma/issues/948))
- [`2580aaa`](https://github.com/alecthomas/chroma/commit/2580aaa) Add
Bazel bzlmod support into Python lexer
([#&#8203;947](https://github.com/alecthomas/chroma/issues/947))

</details>

<details>
<summary>golang/go (go)</summary>

###
[`v1.22.3`](https://github.com/golang/go/compare/go1.22.2...go1.22.3)

###
[`v1.22.2`](https://github.com/golang/go/compare/go1.22.1...go1.22.2)

</details>

<details>
<summary>goreleaser/goreleaser (goreleaser)</summary>

###
[`v1.26.2`](https://github.com/goreleaser/goreleaser/releases/tag/v1.26.2)

#### Changelog

##### Bug fixes

-
[`b3d6460`](https://github.com/goreleaser/goreleaser/commit/b3d646069937d74c04623a4979c2e429b55a7439):
fix(docs): version typo
([#&#8203;4878](https://github.com/goreleaser/goreleaser/issues/4878))
([@&#8203;nullswan](https://github.com/nullswan))

##### Dependency updates

-
[`73a22e5`](https://github.com/goreleaser/goreleaser/commit/73a22e56dd7577034fa2d3769862f9154532c661):
chore(deps): bump actions/checkout from 4.1.5 to 4.1.6
([#&#8203;4876](https://github.com/goreleaser/goreleaser/issues/4876))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`1c66ce4`](https://github.com/goreleaser/goreleaser/commit/1c66ce40d063ea13b66a4df20fbc1d734a9a232c):
chore(deps): bump anchore/sbom-action from 0.15.11 to 0.16.0
([#&#8203;4881](https://github.com/goreleaser/goreleaser/issues/4881))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`39d1f44`](https://github.com/goreleaser/goreleaser/commit/39d1f446f52bc5764db4c89bcbf5d6ef70b62575):
chore(deps): bump cachix/install-nix-action from 26 to 27
([#&#8203;4874](https://github.com/goreleaser/goreleaser/issues/4874))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`1d49b22`](https://github.com/goreleaser/goreleaser/commit/1d49b225c67d38008d44f3320ba0597e7bc83ce5):
chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1
([#&#8203;4882](https://github.com/goreleaser/goreleaser/issues/4882))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`fae464e`](https://github.com/goreleaser/goreleaser/commit/fae464e2783c11958733929f1cd871db34aaf2e3):
chore(deps): bump github.com/caarlos0/env/v11 from 11.0.0 to 11.0.1
([#&#8203;4888](https://github.com/goreleaser/goreleaser/issues/4888))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`de796eb`](https://github.com/goreleaser/goreleaser/commit/de796eb4e5ac03eef993300861803de792799080):
chore(deps): bump github.com/google/ko from 0.15.2 to 0.15.4
([#&#8203;4885](https://github.com/goreleaser/goreleaser/issues/4885))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`b4d768b`](https://github.com/goreleaser/goreleaser/commit/b4d768bf16160766cc04a5a5fcc288fd81de8c72):
chore(deps): bump github.com/mattn/go-mastodon from 0.0.6 to 0.0.8
([#&#8203;4872](https://github.com/goreleaser/goreleaser/issues/4872))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`a82491a`](https://github.com/goreleaser/goreleaser/commit/a82491afe446295c8756a2c5f46950a11d717aa0):
chore(deps): bump github.com/slack-go/slack from 0.12.5 to 0.13.0
([#&#8203;4871](https://github.com/goreleaser/goreleaser/issues/4871))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`cf2c47a`](https://github.com/goreleaser/goreleaser/commit/cf2c47a5895da1b0ce0de3620e8a8953d380b905):
chore(deps): bump github/codeql-action from 2.13.4 to 3.25.5
([#&#8203;4880](https://github.com/goreleaser/goreleaser/issues/4880))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`79caa9c`](https://github.com/goreleaser/goreleaser/commit/79caa9c28a394f1949ef2a82d9aa7252c1758ee9):
chore(deps): bump github/codeql-action from 3.25.5 to 3.25.6
([#&#8203;4883](https://github.com/goreleaser/goreleaser/issues/4883))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`b534f07`](https://github.com/goreleaser/goreleaser/commit/b534f07d5b2191e314862d94fccc8ce93a3461d5):
chore(deps): bump golang from `c24516e` to `f1fe698`
([#&#8203;4873](https://github.com/goreleaser/goreleaser/issues/4873))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])
-
[`d7c23c1`](https://github.com/goreleaser/goreleaser/commit/d7c23c168fa61d738cd6fba03a645071e174bba5):
chore(deps): bump golang from `f1fe698` to `b8ded51`
([#&#8203;4887](https://github.com/goreleaser/goreleaser/issues/4887))
([@&#8203;dependabot](https://github.com/dependabot)\[bot])

##### Documentation updates

-
[`2023d4b`](https://github.com/goreleaser/goreleaser/commit/2023d4bcc6891b28b56a0c7b5b7481c4a0d68023):
docs: fix winget default path
([#&#8203;4875](https://github.com/goreleaser/goreleaser/issues/4875))
([@&#8203;lionello](https://github.com/lionello))

##### Build process updates

-
[`f4cd8fc`](https://github.com/goreleaser/goreleaser/commit/f4cd8fc1561e288ce198c60105c8277fcc24de03):
build: fix changelog not showing dependencies updates
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Other work

-
[`919b132`](https://github.com/goreleaser/goreleaser/commit/919b132e0de38ac253fe83f7b92560f1d95cda32):
chore: auto-update generated files
([@&#8203;actions-user](https://github.com/actions-user))

**Full Changelog**:
https://github.com/goreleaser/goreleaser/compare/v1.26.1...v1.26.2

#### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

#### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

###
[`v1.26.1`](https://github.com/goreleaser/goreleaser/releases/tag/v1.26.1)

#### Changelog

##### Security updates

-
[`19b94f6`](https://github.com/goreleaser/goreleaser/commit/19b94f676f35f8a2d1928db6960cb7b35913d783):
sec: GHSA-f6mm-5fc7-3g3c
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Bug fixes

-
[`9cf3bbb`](https://github.com/goreleaser/goreleaser/commit/9cf3bbbc5c6e2af28e77de2ad939f014ce9904f2):
fix(build): do not print 'go: downloading' bits of go build output
([#&#8203;4869](https://github.com/goreleaser/goreleaser/issues/4869))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`e466507`](https://github.com/goreleaser/goreleaser/commit/e466507637bceaf3d44b08135417dac587307122):
fix(cmd): --draft should only override if set
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`c5204df`](https://github.com/goreleaser/goreleaser/commit/c5204dfb64449519bda03083ad4d282c06c3ff49):
fix: close HTTP resp body to prevent resource leak
([#&#8203;4857](https://github.com/goreleaser/goreleaser/issues/4857))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`7e0155c`](https://github.com/goreleaser/goreleaser/commit/7e0155c557509ed0e894028a9862a87ed1ecd12d):
fix: disable logs on some commands
([#&#8203;4865](https://github.com/goreleaser/goreleaser/issues/4865))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`6505654`](https://github.com/goreleaser/goreleaser/commit/6505654c86ed3be799e9633e5c3c3457b814e8df):
fix: fix nolintlint issues
([#&#8203;4854](https://github.com/goreleaser/goreleaser/issues/4854))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`00a376c`](https://github.com/goreleaser/goreleaser/commit/00a376cc6472d766f60881d7e8a19f452c28eda2):
refactor: remove unneeded in Go 1.22 loop var copy
([#&#8203;4856](https://github.com/goreleaser/goreleaser/issues/4856))
([@&#8203;alexandear](https://github.com/alexandear))

##### Documentation updates

-
[`ba7e915`](https://github.com/goreleaser/goreleaser/commit/ba7e915cd8a2f4d61a56ab87485aae62007e11e2):
docs: announce v1.26
([#&#8203;4851](https://github.com/goreleaser/goreleaser/issues/4851))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`2f56643`](https://github.com/goreleaser/goreleaser/commit/2f56643a633c227ad84e58fb969325480c2986fa):
docs: update action docs
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`c148106`](https://github.com/goreleaser/goreleaser/commit/c148106c56d83f4ecca214088bde990637a2a6e9):
docs: update old Go website links
([#&#8203;4855](https://github.com/goreleaser/goreleaser/issues/4855))
([@&#8203;alexandear](https://github.com/alexandear))

##### Build process updates

-
[`c09c86c`](https://github.com/goreleaser/goreleaser/commit/c09c86cb3962ed992546f098ecc4197188644a93):
build: disable appendAssign gocritic check
([@&#8203;caarlos0](https://github.com/caarlos0))

**Full Changelog**:
https://github.com/goreleaser/goreleaser/compare/v1.26.0...v1.26.1

#### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

#### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

###
[`v1.26.0`](https://github.com/goreleaser/goreleaser/releases/tag/v1.26.0)

#### Changelog

##### New Features

-
[`de72cab`](https://github.com/goreleaser/goreleaser/commit/de72cab5d9dabf785fcd7808c5d228960d762bfe):
feat(announce): add BlueSky support
([#&#8203;4779](https://github.com/goreleaser/goreleaser/issues/4779))
([@&#8203;jghiloni](https://github.com/jghiloni))
-
[`e538341`](https://github.com/goreleaser/goreleaser/commit/e538341179a23790669e6eeab0c644658e547c66):
feat(archive): support tar.zst
([#&#8203;4825](https://github.com/goreleaser/goreleaser/issues/4825))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`39bf666`](https://github.com/goreleaser/goreleaser/commit/39bf6668bc086d1c110e9321f7303da3de7e22b7):
feat(changelog): custom commit format
([#&#8203;4802](https://github.com/goreleaser/goreleaser/issues/4802))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`5d98c69`](https://github.com/goreleaser/goreleaser/commit/5d98c69f0f3c81c48661649e091969f6b098b1a7):
feat(checksum): supports BLAKE2 and SHA-3
([#&#8203;4850](https://github.com/goreleaser/goreleaser/issues/4850))
([@&#8203;sorairolake](https://github.com/sorairolake))
-
[`c1615ea`](https://github.com/goreleaser/goreleaser/commit/c1615ea521532b4e3f5633a137c17f94fff22e56):
feat(cmd): release --draft
([#&#8203;4771](https://github.com/goreleaser/goreleaser/issues/4771))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`c8488dc`](https://github.com/goreleaser/goreleaser/commit/c8488dc825debca26ade35aefca234b142a515c9):
feat(gitea): implement `Changelog` function
([#&#8203;4794](https://github.com/goreleaser/goreleaser/issues/4794))
([@&#8203;appleboy](https://github.com/appleboy))
-
[`2c93bd7`](https://github.com/goreleaser/goreleaser/commit/2c93bd7c7f993068dffcaf3eb65a56fcf0f3b7b7):
feat(gitlab): Allow PRs to be created
([#&#8203;4793](https://github.com/goreleaser/goreleaser/issues/4793))
([@&#8203;baurmatt](https://github.com/baurmatt))
-
[`5d37c9a`](https://github.com/goreleaser/goreleaser/commit/5d37c9a5a0a395bb463da3ce55a5ce9383160d2e):
feat: always log build output
([#&#8203;4787](https://github.com/goreleaser/goreleaser/issues/4787))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`60a1ccc`](https://github.com/goreleaser/goreleaser/commit/60a1cccf5748992e876043e7dca3813842b13ea4):
feat: isEnvSet tmpl function
([#&#8203;4775](https://github.com/goreleaser/goreleaser/issues/4775))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b05a62f`](https://github.com/goreleaser/goreleaser/commit/b05a62fddcbfeb5a581c94a92281b29bc6dae1fe):
feat: migrate to new homebrew constuctions (on_arm, on_intel)
([#&#8203;4822](https://github.com/goreleaser/goreleaser/issues/4822))
([@&#8203;kvendingoldo](https://github.com/kvendingoldo))
-
[`3cd2e07`](https://github.com/goreleaser/goreleaser/commit/3cd2e07c6835cc17f9cd266e6f9817389786841c):
feat: notarize macos binaries
([#&#8203;4774](https://github.com/goreleaser/goreleaser/issues/4774))
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Security updates

-
[`c052ccc`](https://github.com/goreleaser/goreleaser/commit/c052ccc6914e3d6eecba1e8466712065f92ff3e3):
sec(deps): update runc for CVE-2024-3154
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Bug fixes

-
[`172d6d4`](https://github.com/goreleaser/goreleaser/commit/172d6d4b990cc7cfc44ef13975ea6fb9158274d3):
Revert "fix: temp disable snapcraft"
([#&#8203;4830](https://github.com/goreleaser/goreleaser/issues/4830))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b45c3b1`](https://github.com/goreleaser/goreleaser/commit/b45c3b1720d9f61d47569d1cc7dd8f06f2187e1c):
fix(bluesky): change default env, fix user agent, update tests
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`bee8665`](https://github.com/goreleaser/goreleaser/commit/bee8665d9e6d44277c382e14792584ad5c44f083):
fix(brew): cpu conditionals
([#&#8203;4814](https://github.com/goreleaser/goreleaser/issues/4814))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`14ab459`](https://github.com/goreleaser/goreleaser/commit/14ab45930090e4da037591901a12471de9f08db7):
fix(brew): linux brew with extra end
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b1723af`](https://github.com/goreleaser/goreleaser/commit/b1723afff21998e8f2a99cc61ed06f12586529fa):
fix(gitea): changelog output
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`fd40f5d`](https://github.com/goreleaser/goreleaser/commit/fd40f5d772c94c08942e8eb04ba01cbdb0477a36):
fix(gitlab): Use start_branch for file creation if branch doesn't exist
already
([#&#8203;4792](https://github.com/goreleaser/goreleaser/issues/4792))
([@&#8203;baurmatt](https://github.com/baurmatt))
-
[`bf31227`](https://github.com/goreleaser/goreleaser/commit/bf31227b4eb975f87b995719d3b152f4d9b2f993):
fix(nfpm): termux platform
([#&#8203;4812](https://github.com/goreleaser/goreleaser/issues/4812))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`2f87663`](https://github.com/goreleaser/goreleaser/commit/2f876631b38958e0bcc3fe574cd42b271d0ad0b0):
fix(nix): update valid licenses
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`56e0f79`](https://github.com/goreleaser/goreleaser/commit/56e0f794738871515750a383b2d01e75a6e2619c):
fix(telegram): mdv2escape ProjectName by default
([#&#8203;4784](https://github.com/goreleaser/goreleaser/issues/4784))
([@&#8203;EpicStep](https://github.com/EpicStep))
-
[`ca52f85`](https://github.com/goreleaser/goreleaser/commit/ca52f855fc340c276672fce3ab0d613eedec3c1c):
fix: bad json tag name
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`7552d0b`](https://github.com/goreleaser/goreleaser/commit/7552d0b4e022789ce9b3bd229261762e305765f9):
fix: lint issues ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`7982a33`](https://github.com/goreleaser/goreleaser/commit/7982a33a06f2b08403e696826b493b14057f0589):
fix: telegram default message
([#&#8203;4821](https://github.com/goreleaser/goreleaser/issues/4821))
([@&#8203;EpicStep](https://github.com/EpicStep))
-
[`fbddb70`](https://github.com/goreleaser/goreleaser/commit/fbddb7081d4693491057e648ac5e819920708718):
fix: temp disable snapcraft
([#&#8203;4826](https://github.com/goreleaser/goreleaser/issues/4826))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`0a38d90`](https://github.com/goreleaser/goreleaser/commit/0a38d90f66b9a5b6bddb39c3edda09ff2893b9fa):
fix: typo in User-Agent header value
([#&#8203;4765](https://github.com/goreleaser/goreleaser/issues/4765))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`780a3a4`](https://github.com/goreleaser/goreleaser/commit/780a3a40d9bfeacda1196aa2d54690ea2cbff4ef):
fix: update SBOM generation to add .json as file type
([#&#8203;4781](https://github.com/goreleaser/goreleaser/issues/4781))
([@&#8203;cpanato](https://github.com/cpanato))
-
[`bf79c2c`](https://github.com/goreleaser/goreleaser/commit/bf79c2cf91ddf51bb380b5614fa09062001481f1):
fix: use correct path variable for logging in check command
([#&#8203;4756](https://github.com/goreleaser/goreleaser/issues/4756))
([@&#8203;hhromic](https://github.com/hhromic))
-
[`1ed1a62`](https://github.com/goreleaser/goreleaser/commit/1ed1a62b90e3765864aa930bebe2bc1cb4863e57):
fix: winget paths on windows
([#&#8203;4786](https://github.com/goreleaser/goreleaser/issues/4786))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`6735555`](https://github.com/goreleaser/goreleaser/commit/673555519af164f03c3945a217df8dda289a1874):
refactor: improve switch
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`ddb60f4`](https://github.com/goreleaser/goreleaser/commit/ddb60f417e86cbd6d85e1d2c977e603c6be9104a):
refactor: improve switch
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`d5fc94a`](https://github.com/goreleaser/goreleaser/commit/d5fc94a81d77cca97c126eae0eccc6a53cff739e):
refactor: optimize strings replacers
([#&#8203;4788](https://github.com/goreleaser/goreleaser/issues/4788))
([@&#8203;EpicStep](https://github.com/EpicStep))

##### Dependency updates

-
[`8391ce5`](https://github.com/goreleaser/goreleaser/commit/8391ce56e12470753aef2dc7ccd09f9e96133667):
fix(deps): update go-set to fix armv7 build
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Documentation updates

-
[`9b3f514`](https://github.com/goreleaser/goreleaser/commit/9b3f514449c3315cd65da0f7c01d964092cd3e5e):
docs: description for chocolateys.package_source_url
([#&#8203;4763](https://github.com/goreleaser/goreleaser/issues/4763))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`f6615b1`](https://github.com/goreleaser/goreleaser/commit/f6615b138b5738beaabf381407aa1de29b0f7362):
docs: fix typos
([#&#8203;4764](https://github.com/goreleaser/goreleaser/issues/4764))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`e21a99a`](https://github.com/goreleaser/goreleaser/commit/e21a99a54b3611b0964f03d083797c583c28ede9):
docs: improve -p help message
([#&#8203;4798](https://github.com/goreleaser/goreleaser/issues/4798))
([@&#8203;jftuga](https://github.com/jftuga))
-
[`7b78e19`](https://github.com/goreleaser/goreleaser/commit/7b78e195e2eb7e0824eeff3119b82f90c0a2a5a3):
docs: notes on prefixed tags and monorepos
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`0481e63`](https://github.com/goreleaser/goreleaser/commit/0481e63fb3d9d6d1e1d8cbee16789d644b652ab1):
docs: remove mentions to --skip-something flags
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`919f220`](https://github.com/goreleaser/goreleaser/commit/919f220e7149e33cdaa523cffc60988f05541a46):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`4015fa3`](https://github.com/goreleaser/goreleaser/commit/4015fa32bcf606c0d1e5538e545ef55c04879169):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`12d236d`](https://github.com/goreleaser/goreleaser/commit/12d236ded2ec2ab8365fcb6a50c81382fe238b4f):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`2cffcc5`](https://github.com/goreleaser/goreleaser/commit/2cffcc58c5a7453003dc74fe3c7a96f04764e1fa):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b7b4883`](https://github.com/goreleaser/goreleaser/commit/b7b48834201a6c6c4c42467cf405e9ca6611a55c):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`f4c149e`](https://github.com/goreleaser/goreleaser/commit/f4c149e10bc0722d85f00eea35ca273ec0c69795):
docs: update USERS.md
([#&#8203;4839](https://github.com/goreleaser/goreleaser/issues/4839))
([@&#8203;xcloudscript](https://github.com/xcloudscript))
-
[`faadd02`](https://github.com/goreleaser/goreleaser/commit/faadd02cc19f3633d392f6d145c78c2028a92a42):
docs: update bluesky docs
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`60f12de`](https://github.com/goreleaser/goreleaser/commit/60f12deae0f6aca8fee22ab6838d14f6ee9c766b):
docs: update changelog
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`7468cf8`](https://github.com/goreleaser/goreleaser/commit/7468cf85569521cc679aa7ea17192fdfbaa62046):
docs: update dirty.md deprecated syntax
([#&#8203;4766](https://github.com/goreleaser/goreleaser/issues/4766))
([@&#8203;johnmaguire](https://github.com/johnmaguire))
-
[`652fd30`](https://github.com/goreleaser/goreleaser/commit/652fd30c691b998e2ad8a9668fad805b138aa769):
docs: update repository.md
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Build process updates

-
[`1ec2e16`](https://github.com/goreleaser/goreleaser/commit/1ec2e1628889bd2b466d2760c536d73b0c9a2aaf):
build: fix nightly job
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`52dc2cb`](https://github.com/goreleaser/goreleaser/commit/52dc2cb4e4575e3909ae64383bcc83d5e3d0e379):
build: use latest snapcraft
([#&#8203;4849](https://github.com/goreleaser/goreleaser/issues/4849))
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Other work

-
[`3c0c714`](https://github.com/goreleaser/goreleaser/commit/3c0c7148fd53bd3ac6253b8a3997c718e007d941):
blob: permit skipping the configuration of the Content-Disposition
header
([#&#8203;4832](https://github.com/goreleaser/goreleaser/issues/4832))
([@&#8203;mvisonneau](https://github.com/mvisonneau))

**Full Changelog**:
https://github.com/goreleaser/goreleaser/compare/v1.25.1...v1.26.0

#### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

#### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

###
[`v1.25.1`](https://github.com/goreleaser/goreleaser/releases/tag/v1.25.1)

#### Changelog

##### Bug fixes

-
[`053eccd`](https://github.com/goreleaser/goreleaser/commit/053eccdba08b889e439d684a9c17c9b9fab3d3c2):
fix(release): only change release draft status on new releases
([#&#8203;4744](https://github.com/goreleaser/goreleaser/issues/4744))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`22b7daa`](https://github.com/goreleaser/goreleaser/commit/22b7daadb460cdb00b53da2d6661698227c690d3):
fix(release): publish tag with skip_upload
([#&#8203;4745](https://github.com/goreleaser/goreleaser/issues/4745))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`0ff94f1`](https://github.com/goreleaser/goreleaser/commit/0ff94f13e4e5f71bd2972a8935e7223b30481ca6):
fix: properly skip docker builds of skipped builds
([#&#8203;4747](https://github.com/goreleaser/goreleaser/issues/4747))
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Documentation updates

-
[`d972be9`](https://github.com/goreleaser/goreleaser/commit/d972be970447466bee19291c5e1188807b6a973b):
docs: announce v1.25 ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`6a7a9ba`](https://github.com/goreleaser/goreleaser/commit/6a7a9ba3995728a4bdf7b5fff770d8caeb3d2cc8):
docs: fix deprecation typos
([#&#8203;4750](https://github.com/goreleaser/goreleaser/issues/4750))
([@&#8203;j178](https://github.com/j178))

##### Build process updates

-
[`85cb59c`](https://github.com/goreleaser/goreleaser/commit/85cb59c1a0236008a96368b677e38b8fd9f8573b):
build: simplify
([#&#8203;4748](https://github.com/goreleaser/goreleaser/issues/4748))
([@&#8203;caarlos0](https://github.com/caarlos0))

**Full Changelog**:
https://github.com/goreleaser/goreleaser/compare/v1.25.0...v1.25.1

#### Helping out

This release is only possible thanks to **all** the support of some
**awesome people**!

Want to be one of them?
You can [sponsor](https://goreleaser.com/sponsors/), get a [Pro
License](https://goreleaser.com/pro) or [contribute with
code](https://goreleaser.com/contributing).

#### Where to go next?

- Find examples and commented usage of all options in our
[website](https://goreleaser.com/intro/).
- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and
[Twitter](https://twitter.com/goreleaser)!

<a href="https://goreleaser.com"><img
src="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png"
with="100%" alt="GoReleaser logo"></a>

###
[`v1.25.0`](https://github.com/goreleaser/goreleaser/releases/tag/v1.25.0)

#### Changelog

##### New Features

-
[`1db9347`](https://github.com/goreleaser/goreleaser/commit/1db93473634b593cdc4508c4399d2ee1a03357d3):
feat(archives): format override to 'none' to skip certain goos
([#&#8203;4730](https://github.com/goreleaser/goreleaser/issues/4730))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`4d2bcfd`](https://github.com/goreleaser/goreleaser/commit/4d2bcfdc4694a3de5029a2b602789166ee21b37f):
feat(brew): allow to set headers in the url
([#&#8203;4648](https://github.com/goreleaser/goreleaser/issues/4648))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b9b8a65`](https://github.com/goreleaser/goreleaser/commit/b9b8a65618358729e80778f5d50885dcc95a6ee1):
feat(brew): sync fork before opening PR
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`ec7106f`](https://github.com/goreleaser/goreleaser/commit/ec7106fdeade6531866e620f48069ff1845f404c):
feat(git): retry git clone on retriable error
([#&#8203;4725](https://github.com/goreleaser/goreleaser/issues/4725))
([@&#8203;Zebradil](https://github.com/Zebradil))
-
[`2ecd71e`](https://github.com/goreleaser/goreleaser/commit/2ecd71ee71e45da8f3ddbafd59672df7b95baec4):
feat(krew): sync fork before opening PR
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`d9e9e82`](https://github.com/goreleaser/goreleaser/commit/d9e9e82ca73ffb08c28117f862da987611ed10bd):
feat(nfpm): also allow $NFPM_PASSPHRASE
([#&#8203;4633](https://github.com/goreleaser/goreleaser/issues/4633))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`42d2db2`](https://github.com/goreleaser/goreleaser/commit/42d2db202170f4cab933680817a2cc8c5a2bf3e2):
feat(nfpm): compression, fields, and predends on debs
([#&#8203;4632](https://github.com/goreleaser/goreleaser/issues/4632))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`42b6282`](https://github.com/goreleaser/goreleaser/commit/42b6282e4605e26ef23f6594142e7df9fe2885d4):
feat(nix): sync fork before opening PR
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`1af98af`](https://github.com/goreleaser/goreleaser/commit/1af98af0b559656a699aa355eaf5a5c136f11992):
feat(nix): update licenses
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`ef90821`](https://github.com/goreleaser/goreleaser/commit/ef90821ee75ef97d78a125427e6294677b4dd408):
feat(pipe/release): Mark GitHub releases as non-draft only after all
artifacts are uploaded.
([#&#8203;4626](https://github.com/goreleaser/goreleaser/issues/4626))
([@&#8203;nichtverstehen](https://github.com/nichtverstehen))
-
[`500be66`](https://github.com/goreleaser/goreleaser/commit/500be667af164fc25a0a9459b741b5e764c2f1f9):
feat(scoop): sync fork before opening PR
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`3687c09`](https://github.com/goreleaser/goreleaser/commit/3687c097cdd6123f315ebebd10ecf4c7e080b8f4):
feat(winget): sync fork before opening PR
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`263cd05`](https://github.com/goreleaser/goreleaser/commit/263cd059f20daf9a023292ed349398e07c7c0858):
feat(winget): update manifest version to 1.6.0
([#&#8203;4658](https://github.com/goreleaser/goreleaser/issues/4658))
([@&#8203;vedantmgoyal9](https://github.com/vedantmgoyal9))
-
[`2498ea7`](https://github.com/goreleaser/goreleaser/commit/2498ea70290792c2537d98dbbdde0dd5ec07c2d6):
feat: add metadata to the release
([#&#8203;4714](https://github.com/goreleaser/goreleaser/issues/4714))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`6e0f426`](https://github.com/goreleaser/goreleaser/commit/6e0f426339048c551b8cd0139b3f7f2cdb2c243d):
feat: allow to delete existing artifacts in the release
([#&#8203;4711](https://github.com/goreleaser/goreleaser/issues/4711))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`54ee014`](https://github.com/goreleaser/goreleaser/commit/54ee014b5087b30250ef47d4b7ac25e5a4953cf2):
feat: checksums.split
([#&#8203;4707](https://github.com/goreleaser/goreleaser/issues/4707))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`7fc9399`](https://github.com/goreleaser/goreleaser/commit/7fc93995b800fcc09211e04d5a17dc5239630acd):
feat: consistently use directory in property names
([#&#8203;4737](https://github.com/goreleaser/goreleaser/issues/4737))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`566e99a`](https://github.com/goreleaser/goreleaser/commit/566e99ad735bb3d071bb04afc824de47b9e07ac0):
feat: fig is being sunset, remove
([#&#8203;4694](https://github.com/goreleaser/goreleaser/issues/4694))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`a00bf7e`](https://github.com/goreleaser/goreleaser/commit/a00bf7e5d6a600fb4c5ebc1f2130178a1923cf87):
feat: support .config dir
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b614d64`](https://github.com/goreleaser/goreleaser/commit/b614d646efb391f990e1c37c13bd4f735320cb69):
feat: support netbsd/arm64
([#&#8203;4706](https://github.com/goreleaser/goreleaser/issues/4706))
([@&#8203;maxbrunet](https://github.com/maxbrunet))
-
[`56c5a09`](https://github.com/goreleaser/goreleaser/commit/56c5a09f9a1e3cd88ee2d3c8e33628402d5e7649):
feat: support projectID for gitlab CreateFile (brew, nix, etc)
([#&#8203;4705](https://github.com/goreleaser/goreleaser/issues/4705))
([@&#8203;bradleyjames](https://github.com/bradleyjames))
-
[`e43604f`](https://github.com/goreleaser/goreleaser/commit/e43604f4a0be9ab46d908ee916502c128f5cead1):
feat: use go 1.22
([#&#8203;4614](https://github.com/goreleaser/goreleaser/issues/4614))
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Bug fixes

-
[`08851dc`](https://github.com/goreleaser/goreleaser/commit/08851dce616615c966ece450631d3d0a822430cc):
fix(aur): allow to have multiple AUR configs pointing to the same repo
([#&#8203;4712](https://github.com/goreleaser/goreleaser/issues/4712))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`554ca5f`](https://github.com/goreleaser/goreleaser/commit/554ca5f3e0ffb6e56dbdb1da667f339d532d7e3d):
fix(build): buildmode: pie
([#&#8203;4631](https://github.com/goreleaser/goreleaser/issues/4631))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`be511eb`](https://github.com/goreleaser/goreleaser/commit/be511eb3414a1f6372c364b690493d6caf4246c5):
fix(nix): update licenses
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`ec22d60`](https://github.com/goreleaser/goreleaser/commit/ec22d60b197f06e361d9312f77b05a665b64d1f8):
fix(winget): name is not actually required
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`8d3cd4c`](https://github.com/goreleaser/goreleaser/commit/8d3cd4cef641699c0a74cd7c707ceffd59aeaa6c):
fix: `run` not being truly POSIX-compliant
([#&#8203;4739](https://github.com/goreleaser/goreleaser/issues/4739))
([@&#8203;bartekpacia](https://github.com/bartekpacia))
-
[`c9ca63e`](https://github.com/goreleaser/goreleaser/commit/c9ca63ece7465d87ce68df7a446f3ff8beb879f4):
fix: adjust unused function params in client mock package
([#&#8203;4738](https://github.com/goreleaser/goreleaser/issues/4738))
([@&#8203;idnandre](https://github.com/idnandre))
-
[`dc0de4c`](https://github.com/goreleaser/goreleaser/commit/dc0de4ce59f34715e1dbf763b9e6c83e58a8ed92):
fix: artifact filtering
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b33f14c`](https://github.com/goreleaser/goreleaser/commit/b33f14c0fa06d75218b33b60d8b64dc05026ea43):
fix: better universalbinary message
([#&#8203;4627](https://github.com/goreleaser/goreleaser/issues/4627))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`e0db6ac`](https://github.com/goreleaser/goreleaser/commit/e0db6ac7fa7ea95a6b5cfad79cbce62412ffeaa7):
fix: brews.url_headers is not required
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`5a8b6d4`](https://github.com/goreleaser/goreleaser/commit/5a8b6d41fb9b94dad82e3d09e09bf1ad88e49853):
fix: convert `run` install script to pure POSIX sh
([#&#8203;4736](https://github.com/goreleaser/goreleaser/issues/4736))
([@&#8203;bartekpacia](https://github.com/bartekpacia))
-
[`6f356ff`](https://github.com/goreleaser/goreleaser/commit/6f356ffcfaa21eda97bd290714c4bd800c7b6c3b):
fix: do not log `release published` if it is a draft
([#&#8203;4691](https://github.com/goreleaser/goreleaser/issues/4691))
([@&#8203;nekohasekai](https://github.com/nekohasekai))
-
[`af97e63`](https://github.com/goreleaser/goreleaser/commit/af97e63dd37806862b8034b2ed16f879bd072648):
fix: improve artifact refresh and filtering
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`0a27203`](https://github.com/goreleaser/goreleaser/commit/0a272037b3615cfd59de3c63e96e37108816bb91):
fix: only build archlinux and aur for supported arches
([#&#8203;4695](https://github.com/goreleaser/goreleaser/issues/4695))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`c9068b4`](https://github.com/goreleaser/goreleaser/commit/c9068b4b3c6ca3bff2a23c1c3af90f562bd16d17):
fix: properly template builds.gobinary
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`994d01a`](https://github.com/goreleaser/goreleaser/commit/994d01a0ce51d9bf55076526597d3b2ad2568e1d):
fix: remove repetitive words
([#&#8203;4701](https://github.com/goreleaser/goreleaser/issues/4701))
([@&#8203;standstaff](https://github.com/standstaff))
-
[`306999b`](https://github.com/goreleaser/goreleaser/commit/306999b78bf8507b0fa2e0fb52582d90a0f0bd1f):
fix: sort order of brew artifacts
([#&#8203;4617](https://github.com/goreleaser/goreleaser/issues/4617))
([@&#8203;brianstrauch](https://github.com/brianstrauch))
-
[`8cd325e`](https://github.com/goreleaser/goreleaser/commit/8cd325eb5a8536708c50bd90dfca2a81cd9bad4c):
fix: support dir in gomod
([#&#8203;4729](https://github.com/goreleaser/goreleaser/issues/4729))
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`05e8b33`](https://github.com/goreleaser/goreleaser/commit/05e8b33a89c6c44f40cac1db5c731c569bc5a253):
fix: use new refresh func
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`c54e530`](https://github.com/goreleaser/goreleaser/commit/c54e530902cc8bb13e25265e7544743752c23cf1):
refactor: moving config load logic to another file
([@&#8203;caarlos0](https://github.com/caarlos0))

##### Documentation updates

-
[`df3e799`](https://github.com/goreleaser/goreleaser/commit/df3e799bec80fcf4dc611a59846389555c5e793e):
docs(blog): fix broken link
([#&#8203;4704](https://github.com/goreleaser/goreleaser/issues/4704))
([@&#8203;alexandear](https://github.com/alexandear))
-
[`6353982`](https://github.com/goreleaser/goreleaser/commit/6353982e33d11c2e2812e891fc3431ef87b436f2):
docs: Minor edits to 'dockerhub'
([#&#8203;4740](https://github.com/goreleaser/goreleaser/issues/4740))
([@&#8203;rfay](https://github.com/rfay))
-
[`fd24a00`](https://github.com/goreleaser/goreleaser/commit/fd24a00e47f6a80d25cddcbffcfc98ddf2e2c300):
docs: bump setup-go version
([#&#8203;4638](https://github.com/goreleaser/goreleaser/issues/4638))
([@&#8203;ddymko](https://github.com/ddymko))
-
[`85f213c`](https://github.com/goreleaser/goreleaser/commit/85f213c9da5e3984b07fb189099ed4e9d848a58c):
docs: clarify changelog sorting
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`26c003a`](https://github.com/goreleaser/goreleaser/commit/26c003a0760b54b14044e1c0d016b21967995de8):
docs: dockerhub singular
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`e539e12`](https://github.com/goreleaser/goreleaser/commit/e539e1256c654168ab5ebb9b36953ebe42596441):
docs: fix broken links
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`f0abada`](https://github.com/goreleaser/goreleaser/commit/f0abada909d038529f9795e0ad17d93d5842b5e1):
docs: fix default for `build.id` attribute
([#&#8203;4734](https://github.com/goreleaser/goreleaser/issues/4734))
([@&#8203;hhromic](https://github.com/hhromic))
-
[`e354734`](https://github.com/goreleaser/goreleaser/commit/e35473423d6cab2550736b53ba35c7f75c10cd22):
docs: fix dockerhub missing images property
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`12fe252`](https://github.com/goreleaser/goreleaser/commit/12fe25282742829044d01d3117673cacfea06b47):
docs: fix link ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`79aa2fc`](https://github.com/goreleaser/goreleaser/commit/79aa2fc3193c8bae7c471f73f7aaf28f51f4bc3b):
docs: fix typo username in dockerhubs example
([#&#8203;4733](https://github.com/goreleaser/goreleaser/issues/4733))
([@&#8203;rfay](https://github.com/rfay))
-
[`7baf594`](https://github.com/goreleaser/goreleaser/commit/7baf594a132af0abc78edd9b2ce1ca4616db27d2):
docs: sort the GoReleaser configuration YAML code examples
([#&#8203;4652](https://github.com/goreleaser/goreleaser/issues/4652))
([@&#8203;cafferata](https://github.com/cafferata))
-
[`5073bd1`](https://github.com/goreleaser/goreleaser/commit/5073bd1a5fa19254974c55db1b3341fac5bb1453):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`1f39bdd`](https://github.com/goreleaser/goreleaser/commit/1f39bddcb36fc37fa66bdb593fa312b982052292):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`1a9d3f7`](https://github.com/goreleaser/goreleaser/commit/1a9d3f72c6481fec606914d8d59953e2e19e3bd4):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`84e214a`](https://github.com/goreleaser/goreleaser/commit/84e214a8098e4256c1a60084cba4c7d4c688b485):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`74c0885`](https://github.com/goreleaser/goreleaser/commit/74c088548f130626aa25ee7c3f47039397e84102):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`ec8819a`](https://github.com/goreleaser/goreleaser/commit/ec8819a95c5527fae65e5cb41673f5bbc3245fda):
docs: update ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`f36318b`](https://github.com/goreleaser/goreleaser/commit/f36318b6fdd3fe247c60268edd5b7b7b6b6100dd):
docs: update CONTRIBUTING
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`2c892be`](https://github.com/goreleaser/goreleaser/commit/2c892be4f82a2aa0f8d262c63fd8983a236e29db):
docs: update contributing
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`fa431f3`](https://github.com/goreleaser/goreleaser/commit/fa431f313d62baedc80898f2f996412864049d3e):
docs: update docs ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`5256f06`](https://github.com/goreleaser/goreleaser/commit/5256f063d04b795170de18deee2310253cb3699c):
docs: update github action
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`6262ce5`](https://github.com/goreleaser/goreleaser/commit/6262ce5433b9c6658af798fda814400c272f29a5):
docs: update nix.md ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b728f52`](https://github.com/goreleaser/goreleaser/commit/b728f52f680b123744ad471173bf63bf74f59bea):
docs: update sign docs
([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`932e424`](https://github.com/goreleaser/goreleaser/commit/932e4249af95cfedc2fec6f7e98e94313b28dde0):
docs: update users ([@&#8203;caarlos0](https://github.com/caarlos0))
-
[`b31a2ac`](https://github.com/goreleaser/goreleaser/commit/b31a2acde96bd8908b22e40936a6b5402529e796):
docs: update users ([@&#8203;caarlos0](https://github.com/caarlos0))
-   [`72a0d9d`](https://togithub.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/alecthomas/chroma).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny44IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Jun 4, 2024
1 parent 4af3b82 commit b35d6a8
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/esbuild
2 changes: 1 addition & 1 deletion bin/go
2 changes: 1 addition & 1 deletion bin/gofmt
2 changes: 1 addition & 1 deletion bin/goreleaser
2 changes: 1 addition & 1 deletion cmd/chroma/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.19
replace github.com/alecthomas/chroma/v2 => ../../

require (
github.com/alecthomas/chroma/v2 v2.13.0
github.com/alecthomas/chroma/v2 v2.14.0
github.com/alecthomas/kong v0.9.0
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.20
Expand Down
2 changes: 1 addition & 1 deletion cmd/chromad/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/alecthomas/chroma/v2/cmd/chromad
go 1.19

require (
github.com/alecthomas/chroma/v2 v2.13.0
github.com/alecthomas/chroma/v2 v2.14.0
github.com/alecthomas/kong v0.9.0
github.com/alecthomas/kong-hcl v1.0.1
github.com/gorilla/csrf v1.7.2
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/alecthomas/chroma/v2
go 1.19

require (
github.com/alecthomas/assert/v2 v2.7.0
github.com/alecthomas/assert/v2 v2.10.0
github.com/alecthomas/repr v0.4.0
github.com/dlclark/regexp2 v1.11.0
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ github.com/alecthomas/assert/v2 v2.6.0 h1:o3WJwILtexrEUk3cUVal3oiQY2tfgr/FHWiz/v
github.com/alecthomas/assert/v2 v2.6.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/assert/v2 v2.7.0 h1:QtqSACNS3tF7oasA8CU6A6sXZSBDqnm7RfpLl9bZqbE=
github.com/alecthomas/assert/v2 v2.7.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/assert/v2 v2.10.0 h1:jjRCHsj6hBJhkmhznrCzoNpbA3zqy0fYiUcYZP/GkPY=
github.com/alecthomas/assert/v2 v2.10.0/go.mod h1:Bze95FyfUr7x34QZrjL+XP+0qgp/zg8yS+TtBj1WA3k=
github.com/alecthomas/repr v0.2.0 h1:HAzS41CIzNW5syS8Mf9UwXhNH1J9aix/BvDRf1Ml2Yk=
github.com/alecthomas/repr v0.2.0/go.mod h1:Fr0507jx4eOXV7AlPV6AVZLYrLIuIeSOWtW57eE/O/4=
github.com/alecthomas/repr v0.3.0 h1:NeYzUPfjjlqHY4KtzgKJiWd6sVq2eNUPTi34PiFGjY8=
Expand Down

0 comments on commit b35d6a8

Please sign in to comment.