Skip to content

Releases: pulumi/providertest

v0.1.3

03 Oct 14:37
387f6b5
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.2...v0.1.3

v0.1.2

09 Sep 10:16
c0ea332
Compare
Choose a tag to compare

What's Changed

  • Sanitize exported stack state by scrubbing secrets by @thomas11 in #107

Full Changelog: v0.1.1...v0.1.2

v0.1.1

06 Sep 07:56
cecfbc7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.0...v0.1.1

v0.1.0

22 Aug 12:40
be10035
Compare
Choose a tag to compare

What's Changed

⚠️ Breaking change ⚠️

You must now pass T as the first parameter for any method which does asserts internally, as is the pattern in Go.

You can fix pretty much all usages using the following batch of gofmt commands:

gofmt -r 'a.Convert(b) -> a.Convert(t, b)' -w ./**/*_test.go
gofmt -r 'a.CopyTo(b) -> a.CopyTo(t, b)' -w ./**/*_test.go
gofmt -r 'a.CopyToTempDir() -> a.CopyToTempDir(t)' -w ./**/*_test.go
gofmt -r 'a.Destroy() -> a.Destroy(t)' -w ./**/*_test.go
gofmt -r 'a.ExportStack() -> a.ExportStack(t)' -w ./**/*_test.go
gofmt -r 'a.GrpcLog() -> a.GrpcLog(t)' -w ./**/*_test.go
gofmt -r 'a.ClearGrpcLog() -> a.ClearGrpcLog(t)' -w ./**/*_test.go
gofmt -r 'a.Import(b, c, d, e, f, g) -> a.Import(t, b, c, d, e, f, g)' -w ./**/*_test.go
gofmt -r 'a.Import(b, c, d, e, f) -> a.Import(t, b, c, d, e, f)' -w ./**/*_test.go
gofmt -r 'a.Import(b, c, d, e) -> a.Import(t, b, c, d, e)' -w ./**/*_test.go
gofmt -r 'a.Import(b, c, d) -> a.Import(t, b, c, d)' -w ./**/*_test.go
gofmt -r 'a.Import(b, c) -> a.Import(t, b, c)' -w ./**/*_test.go
gofmt -r 'a.Import(b) -> a.Import(t, b)' -w ./**/*_test.go
gofmt -r 'a.ImportStack(b) -> a.ImportStack(t, b)' -w ./**/*_test.go
gofmt -r 'a.Install() -> a.Install(t)' -w ./**/*_test.go
gofmt -r 'a.InstallStack(b) -> a.InstallStack(t, b)' -w ./**/*_test.go
gofmt -r 'a.Preview() -> a.Preview(t)' -w ./**/*_test.go
gofmt -r 'a.Refresh() -> a.Refresh(t)' -w ./**/*_test.go
gofmt -r 'a.SetConfig(b, c) -> a.SetConfig(t, b, c)' -w ./**/*_test.go
gofmt -r 'a.Up() -> a.Up(t)' -w ./**/*_test.go
gofmt -r 'a.UpdateSource(b) -> a.UpdateSource(t, b)' -w ./**/*_test.go
gofmt -r 'a.NewStack(b) -> a.NewStack(t, b)' -w ./**/*_test.go
gofmt -r 'a.Run(b) -> a.Run(t, b)' -w ./**/*_test.go

New Contributors

Full Changelog: v0.0.15...v0.1.0

v0.0.15

31 Jul 14:44
0ebd111
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.14...v0.0.15

v0.0.14

16 Jul 11:43
7387849
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.13...v0.0.14

v0.0.13

14 May 06:14
Compare
Choose a tag to compare

What's Changed

  • Retain temporary folders for inspection when tests failed by @t0yv0 in #81
  • Fix gRPC log parsing by @t0yv0 in #86
  • Fix baseline version of upgrade tests by @flostadler in #87

New Contributors

Full Changelog: v0.0.12...v0.0.13

v0.0.12

11 Apr 15:36
1eb757e
Compare
Choose a tag to compare

What's Changed

  • Improve the missing response error message by @iwahbe in #73
  • Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 by @dependabot in #75
  • Try to not assume testing.T by @t0yv0 in #79

New Contributors

Full Changelog: v0.0.11...v0.0.12

v0.0.11

05 Mar 13:54
26697c7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.10...v0.0.11

v0.0.10

25 Jan 10:54
0e4bc02
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.9...v0.0.10