Skip to content

Commit

Permalink
Update pulumi/pulumi to 3.64.0 (#433)
Browse files Browse the repository at this point in the history
* Update pulumi/pulumi to 3.64.0

* Adjust test to new AWS S3 security requirements
  • Loading branch information
mikhailshilkov authored Apr 19, 2023
1 parent 6708627 commit 701ed96
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ CHANGELOG

## HEAD (unreleased)

(None)

## 1.11.3 (2023-04-19)

- Update to [Pulumi SDK v3.64.0](https://github.com/pulumi/pulumi/releases/tag/v3.64.0) and the base
image of the same version, fixing [issue
#432](https://github.com/pulumi/pulumi-kubernetes-operator/issues/432)

## 1.11.2 (2023-03-10)

- Update to [Pulumi SDK v3.57.1](https://github.com/pulumi/pulumi/releases/tag/v3.57.1) and the base
image of the same version, fixing [issue
#411](https://github.com/pulumi/pulumi-kubernetes-operator/issues/411)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM pulumi/pulumi:3.57.1
FROM pulumi/pulumi:3.64.0

RUN apt-get install tini
ENTRYPOINT ["tini", "--", "/usr/local/bin/pulumi-kubernetes-operator"]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require (
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/common v0.30.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/pulumi/pulumi/sdk/v3 v3.57.1
github.com/pulumi/pulumi/sdk/v3 v3.64.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.8.1
github.com/whilp/git-urls v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -938,8 +938,8 @@ github.com/prometheus/prometheus v0.0.0-20180315085919-58e2a31db8de/go.mod h1:oA
github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711/go.mod h1:7U90zPoLkWjEIQcy/rweQla82OCTUzxVHE51G3OhJbI=
github.com/prometheus/prometheus v2.3.2+incompatible/go.mod h1:oAIUtOny2rjMX0OWN5vPR5/q/twIROJvdqnQKDdil/s=
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/pulumi/pulumi/sdk/v3 v3.57.1 h1:XprfFY7GcMpFVspEP1s803N9ypgSjOIf895ViBxcIqE=
github.com/pulumi/pulumi/sdk/v3 v3.57.1/go.mod h1:Pb5H3OaRZg0n4TRIfY0pagR/NBIEvjp3lZe2Spr6Umc=
github.com/pulumi/pulumi/sdk/v3 v3.64.0 h1:38y/6FLYZihLf2dnjw2L9g46h/6p+jOKKlmEYjL81+c=
github.com/pulumi/pulumi/sdk/v3 v3.64.0/go.mod h1:Pb5H3OaRZg0n4TRIfY0pagR/NBIEvjp3lZe2Spr6Umc=
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
github.com/remyoudompheng/bigfft v0.0.0-20170806203942-52369c62f446/go.mod h1:uYEyJGbgTkfkS4+E/PavXkNJcbFIpEtjt2B0KDQ5+9M=
github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
Expand Down
1 change: 0 additions & 1 deletion test/testdata/test-s3-op-project/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const names = [];
for (let i = 0; i < 2; i++) {
// Create an AWS resource (S3 Bucket)
const bucket = new aws.s3.Bucket(`my-bucket-${i}`, {
acl: "public-read",
tags: {"region": region},
}, {
provider: prov,
Expand Down

0 comments on commit 701ed96

Please sign in to comment.