Skip to content

Commit

Permalink
Merge pull request #36 from snowplow-devops/release/v0.7.2
Browse files Browse the repository at this point in the history
Release/v0.7.2
  • Loading branch information
Andy-Hay authored Jul 14, 2023
2 parents 0624c8b + 0cbf47d commit 83fecde
Show file tree
Hide file tree
Showing 14 changed files with 91 additions and 103 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
goreleaser:
strategy:
matrix:
go-version: [1.18]
go-version: ['1.20']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -21,7 +21,7 @@ jobs:
run: git fetch --prune --unshallow
-
name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
name: Compile & Test
strategy:
matrix:
go-version: [1.18]
go-version: ['1.20']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 0.7.2 (2023-07-14)
--------------------------
Bump Go Version to 1.20 (#34)
Bump dependencies for Snyk (#33)
Fix Denial of Service (DoS) in golang.org/x/net/http2/hpack (#32)
Fix Denial of Service (DoS) in golang.org/x/net/http2 (#31)
Update copyright to 2019-2023 (#35)

Version 0.7.1 (2023-01-02)
--------------------------
Bump dependencies for Snyk (#28)
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ bin_windows = $(windows_dir)/$(bin_name)
# -----------------------------------------------------------------------------

all:
GO111MODULE=on go get -u github.com/mitchellh/gox
GO111MODULE=on go install github.com/mitchellh/gox
GO111MODULE=on go install github.com/mitchellh/gox@latest
GO111MODULE=on gox -osarch=linux/amd64 -output=$(bin_linux) ./$(src_dir)
GO111MODULE=on gox -osarch=darwin/amd64 -output=$(bin_darwin) ./$(src_dir)
GO111MODULE=on gox -osarch=windows/amd64 -output=$(bin_windows) ./$(src_dir)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ This is handled through CI/CD on Github Actions. However all binaries will be ge

### Copyright and license

Snowplow Terraform Provider is copyright 2019-2022 Snowplow Analytics Ltd.
Snowplow Terraform Provider is copyright 2019-2023 Snowplow Analytics Ltd.

Licensed under the **[Apache License, Version 2.0][license]** (the "License");
you may not use this software except in compliance with the License.
Expand All @@ -149,7 +149,7 @@ limitations under the License.
[actions-image]: https://github.com/snowplow-devops/terraform-provider-snowplow/workflows/ci/badge.svg
[actions]: https://github.com/snowplow-devops/terraform-provider-snowplow/actions

[release-image]: http://img.shields.io/badge/release-0.7.1-6ad7e5.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.7.2-6ad7e5.svg?style=flat
[releases]: https://github.com/snowplow-devops/terraform-provider-snowplow/releases

[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1
0.7.2
44 changes: 22 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/snowplow-devops/terraform-provider-snowplow

go 1.18
go 1.20

require (
github.com/hashicorp/terraform-plugin-sdk/v2 v2.24.1
github.com/imdario/mergo v0.3.13
github.com/hashicorp/terraform-plugin-sdk/v2 v2.27.0
github.com/imdario/mergo v0.3.16
github.com/snowplow/snowplow-golang-tracker/v2 v2.4.1
github.com/stretchr/testify v1.7.2
github.com/twinj/uuid v1.0.0
Expand All @@ -14,29 +14,29 @@ require (
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
github.com/hashicorp/go-hclog v1.4.0 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-memdb v1.3.4 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.4.8 // indirect
github.com/hashicorp/go-plugin v1.4.10 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl/v2 v2.15.0 // indirect
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.14.2 // indirect
github.com/hashicorp/terraform-plugin-log v0.7.0 // indirect
github.com/hashicorp/terraform-registry-address v0.1.0 // indirect
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
github.com/hashicorp/terraform-plugin-go v0.18.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-registry-address v0.2.1 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-sqlite3 v2.0.2+incompatible // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
Expand All @@ -47,16 +47,16 @@ require (
github.com/oklog/run v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
github.com/vmihailenco/tagparser v0.1.2 // indirect
github.com/zclconf/go-cty v1.12.1 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zclconf/go-cty v1.13.2 // indirect
golang.org/x/net v0.12.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/text v0.11.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
google.golang.org/grpc v1.51.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect
google.golang.org/grpc v1.56.1 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 83fecde

Please sign in to comment.