Skip to content

Commit

Permalink
docs: announce v1.26 (#4851)
Browse files Browse the repository at this point in the history
planning the releaser for saturday!

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed May 11, 2024
1 parent 0481e63 commit ba7e915
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ require (
github.com/distribution/distribution/v3 v3.0.0-alpha.1
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
github.com/google/go-containerregistry v0.19.1
github.com/google/go-github/v61 v61.0.0
github.com/google/go-github/v62 v62.0.0
github.com/google/ko v0.15.2
github.com/google/uuid v1.6.0
github.com/goreleaser/fileglob v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
github.com/google/go-containerregistry v0.19.1 h1:yMQ62Al6/V0Z7CqIrrS1iYoA5/oQCm88DeNujc7C1KY=
github.com/google/go-containerregistry v0.19.1/go.mod h1:YCMFNQeeXeLF+dnhhWkqDItx/JSkH01j1Kis4PsjzFI=
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
github.com/google/go-github/v62 v62.0.0 h1:/6mGCaRywZz9MuHyw9gD1CwsbmBX8GWsbFkwMmHdhl4=
github.com/google/go-github/v62 v62.0.0/go.mod h1:EMxeUqGJq2xRu9DYBMwel/mr7kZrzUOfQmmpYrZn2a4=
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
github.com/google/go-replayers/grpcreplay v1.1.0 h1:S5+I3zYyZ+GQz68OfbURDdt/+cSMqCK1wrvNx7WBzTE=
Expand Down
2 changes: 1 addition & 1 deletion internal/client/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/caarlos0/log"
"github.com/charmbracelet/x/exp/ordered"
"github.com/google/go-github/v61/github"
"github.com/google/go-github/v62/github"
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/config"
Expand Down
2 changes: 1 addition & 1 deletion internal/client/github_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"text/template"
"time"

"github.com/google/go-github/v61/github"
"github.com/google/go-github/v62/github"
"github.com/goreleaser/goreleaser/internal/artifact"
"github.com/goreleaser/goreleaser/internal/testctx"
"github.com/goreleaser/goreleaser/internal/testlib"
Expand Down
72 changes: 72 additions & 0 deletions www/docs/blog/posts/2024-05-11-goreleaser-v1.26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
date: 2024-05-11
slug: goreleaser-v1.26
categories: [announcements]
authors: [caarlos0]
---

# Announcing GoReleaser v1.26 - The last v1, probably

Happy mother's day!

This will be probably the last minor v1 release of GoReleaser.
V2 will not be a big update, rather, it'll be the same as v1.26, but removing
all the deprecated stuff.

That said, let's see what's new on this version!

<!-- more -->

## Highlights

- **new**: macOS binaries notarization
- **new**: Publish Homebrew, NUR, Winget, and others, across SCMs (only on [Pro][pro])
- **fury**: Retry uploads
- **continue**: Fixed `goreleaser continue --merge` when running with
`--snapshot`
- **announce**: BlueSky support
- **archive**: Create `.tar.zst` archives
- **changelog**: Allow to customize the changelog format
- **checksum**: Support Blake2 and SHA-3
- **release**: Added `--draft` to `goreleaser release`
- **gitea**: Support changelog
- **gitlab**: Support opening Merge Requests
- **build**: Always log `go build` outputs
- **tmpl**: Added `isEnvSet`
- **homebrew**: Updated to use `on_arm` and `on_intel`
- **blob**: Allow to skipping the configuration of the `Content-Disposition`

As always, bug fixes, dependency updates, housekeeping, and documentation
updates are included in this release as well.

## Other news

- GoReleaser now has ~13.1k stars and 380 contributors! Thanks, everyone!
- We eventually discuss new features in our Discord server. 
[Join the conversation][discord]!
- nFPM had new releases as well, 
[check it out](https://github.com/goreleaser/nfpm/releases).
- In preparation for v2, the
[v5.1.0 of our GitHub Action](https://github.com/goreleaser/goreleaser-action/releases/tag/v5.1.0)
now defaults to `version: '~> v1'` instead of `latest`.
This should help prevent unwanted breaking changes.
[More details](https://github.com/goreleaser/goreleaser-action/pull/461).

## Download

You can [install][] or upgrade using your favorite package manager, or see the
full release notes and download the pre-compiled binaries [here][oss-rel] and
[here (for Pro)][pro-rel].

## Helping out

You can help by reporting issues, contributing features, documentation
improvements, and bug fixes.
You can also [sponsor the project](/sponsors), or get a
[GoReleaser Pro licence][pro].

[pro]: /pro
[install]: https://goreleaser.com/install
[pro-rel]: https://github.com/goreleaser/goreleaser-pro/releases/tag/v1.26.0-pro
[oss-rel]: https://github.com/goreleaser/goreleaser/releases/tag/v1.26.0
[discord]: https://goreleaser.com/discord

0 comments on commit ba7e915

Please sign in to comment.