Skip to content

Commit 1fabd4f

Browse files
authored
Merge branch 'main' into 361_exclude_symlink_directories_skips_other_dirs
2 parents 575bd25 + 5f8bb07 commit 1fabd4f

File tree

9 files changed

+19
-17
lines changed

9 files changed

+19
-17
lines changed

.changes/2.6.0.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 2.6.0 (September 09, 2024)
2+
3+
FEATURES:
4+
5+
* data-source/archive_file: Add support for creating `tar.gz` archive files. ([#277](https://github.com/hashicorp/terraform-provider-archive/issues/277))
6+
* resource/archive_file: Add support for creating `tar.gz` archive files. ([#277](https://github.com/hashicorp/terraform-provider-archive/issues/277))
7+

.changes/unreleased/FEATURES-20240806-142303.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/FEATURES-20240806-142529.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
cd .changes
9090
sed -e "1{/# /d;}" -e "2{/^$/d;}" ${{ needs.changelog-version.outputs.version }}.md > release-notes.txt
9191
92-
- uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
92+
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
9393
with:
9494
name: release-notes
9595
path: ./.changes/release-notes.txt

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ linters:
1212
- godot
1313
- gofmt
1414
- gosimple
15+
- govet
1516
- ineffassign
1617
- makezero
1718
- misspell
@@ -22,7 +23,6 @@ linters:
2223
- unconvert
2324
- unparam
2425
- unused
25-
- vet
2626

2727
run:
2828
# Prevent false positive timeouts in CI

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.6.0 (September 09, 2024)
2+
3+
FEATURES:
4+
5+
* data-source/archive_file: Add support for creating `tar.gz` archive files. ([#277](https://github.com/hashicorp/terraform-provider-archive/issues/277))
6+
* resource/archive_file: Add support for creating `tar.gz` archive files. ([#277](https://github.com/hashicorp/terraform-provider-archive/issues/277))
7+
18
## 2.5.0 (July 31, 2024)
29

310
ENHANCEMENTS:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ version it implements, and Terraform:
3535
## Requirements
3636

3737
* [Terraform](https://www.terraform.io/downloads)
38-
* [Go](https://go.dev/doc/install) (1.21)
38+
* [Go](https://go.dev/doc/install) (1.22)
3939
* [GNU Make](https://www.gnu.org/software/make/)
4040
* [golangci-lint](https://golangci-lint.run/usage/install/#local-installation) (optional)
4141

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/hashicorp/terraform-provider-archive
22

3-
go 1.21
4-
5-
toolchain go1.21.3
3+
go 1.22.7
64

75
require (
86
github.com/bmatcuk/doublestar/v4 v4.6.1

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tools
22

3-
go 1.21
3+
go 1.22.7
44

55
require (
66
github.com/hashicorp/copywrite v0.19.0

0 commit comments

Comments
 (0)