From 8f3d477ab6236f5fd01f702dc065f742e7fc3a09 Mon Sep 17 00:00:00 2001 From: Mark McDonnell Date: Tue, 3 Jan 2023 17:39:40 +0000 Subject: [PATCH] v4.6.0 (#749) EDIT: Force pushed fix for .goreleaser.yml to main branch. --- .goreleaser.yml | 17 ++++++++++++----- CHANGELOG.md | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 5 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 557b73d23..d53820325 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -38,13 +38,20 @@ builds: post: - cmd: "scripts/documentation.sh {{ .Path }}" # https://goreleaser.com/customization/archive/ -# NOTE:Default `format` is tar.gz archives: - - builds: [macos, linux, windows] - name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" - files: - - none* # https://goreleaser.com/customization/archive/#packaging-only-the-binaries + - id: nix + builds: [macos, linux] + <<: &archive_defaults + name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" + files: + - none* wrap_in_directory: false + format: tar.gz + - id: windows + builds: [windows] + <<: *archive_defaults + wrap_in_directory: false + format: tar.gz aurs: - homepage: "https://github.com/fastly/cli" diff --git a/CHANGELOG.md b/CHANGELOG.md index 394839a98..2259f916c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [v4.6.0](https://github.com/fastly/cli/releases/tag/v4.6.0) (2023-01-03) + +[Full Changelog](https://github.com/fastly/cli/compare/v4.5.0...v4.6.0) + +**Bug fixes:** + +* vcl/snippet: pass AllowActiveLocked if --dynamic was passed [#742](https://github.com/fastly/cli/pull/742) + +**Dependencies:** + +* Bump goreleaser/goreleaser-action from 3 to 4 [#746](https://github.com/fastly/cli/pull/746) + +**Enhancements:** + +* Use DevHub endpoint for acquiring CLI/Viceroy metadata [#739](https://github.com/fastly/cli/pull/739) + ## [v4.5.0](https://github.com/fastly/cli/releases/tag/v4.5.0) (2022-12-15) [Full Changelog](https://github.com/fastly/cli/compare/v4.4.1...v4.5.0)