Skip to content

Commit

Permalink
Release v1.4.2 prep (#400)
Browse files Browse the repository at this point in the history
* update deps and CI

* update docs indicating the redis id can be name as well as UUId
  • Loading branch information
davidji99 authored Nov 21, 2024
1 parent dfe0138 commit 320988d
Show file tree
Hide file tree
Showing 622 changed files with 69,057 additions and 18,744 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
go-version: ['1.23.x']
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
go-version: ['1.22', '1.23']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}

Expand Down
2 changes: 1 addition & 1 deletion docs/resources/redis_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "herokux_redis_config" "foobar" {

The following arguments are supported:

* `redis_id` - (Required) `<string>` The UUID of a Heroku Redis instance.
* `redis_id` - (Required) `<string>` The UUID or name of a Heroku Redis instance.
* `maxmemory_policy` - (Optional) `<string>` Set the key eviction policy used when an instance reaches its storage limit.
Heroku, by default, sets this to `noeviction`. Valid options are as follows:
* `noeviction` will return errors when the memory limit is reached.
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/redis_maintenance_window.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "herokux_redis_maintenance_window" "foobar" {

The following arguments are supported:

* `redis_id` - (Required) `<string>` The UUID of a Heroku redis instance.
* `redis_id` - (Required) `<string>` The UUID or name of a Heroku redis instance.
* `window` - (Required) `<string>` The day-of-week and time (UTC) at which the window begins.
For example: `Sundays 10:30`. Note: the `s` attached to the word `Sunday` is required.

Expand Down
55 changes: 30 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,49 +1,52 @@
module github.com/davidji99/terraform-provider-herokux

go 1.21
go 1.22.0

toolchain go1.23.3

require (
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
github.com/davidji99/heroku-go/v5 v5.3.1-0.20210513060517-9373328e17f6
github.com/davidji99/simpleresty v0.4.2
github.com/davidji99/tfph v0.1.3
github.com/elliotchance/orderedmap/v2 v2.2.0
github.com/go-resty/resty/v2 v2.13.1
github.com/elliotchance/orderedmap/v2 v2.4.0
github.com/go-resty/resty/v2 v2.16.1
github.com/google/go-github/v45 v45.2.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0
github.com/mitchellh/go-homedir v1.1.0
github.com/stretchr/testify v1.9.0
golang.org/x/oauth2 v0.19.0
golang.org/x/oauth2 v0.24.0
)

require (
github.com/ProtonMail/go-crypto v1.1.0-alpha.0 // indirect
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/davidji99/go-querystring v1.0.2 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-plugin v1.6.0 // indirect
github.com/hashicorp/go-plugin v1.6.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hc-install v0.6.3 // indirect
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hc-install v0.9.0 // indirect
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-exec v0.20.0 // indirect
github.com/hashicorp/terraform-json v0.21.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.22.0 // indirect
github.com/hashicorp/terraform-exec v0.21.0 // indirect
github.com/hashicorp/terraform-json v0.23.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.25.0 // indirect
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
Expand All @@ -62,15 +65,17 @@ require (
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zclconf/go-cty v1.14.2 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
github.com/zclconf/go-cty v1.15.0 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.61.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect
google.golang.org/grpc v1.67.1 // indirect
google.golang.org/protobuf v1.35.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 320988d

Please sign in to comment.