Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump to fix EnvironmentTags #300

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/pulumi/pulumi-pulumiservice/provider
go 1.21.0

require (
github.com/pulumi/esc v0.8.4-0.20240528210029-4a7b80c97962
github.com/pulumi/esc v0.9.1
github.com/pulumi/pulumi/pkg/v3 v3.112.0
github.com/pulumi/pulumi/sdk/v3 v3.115.3-0.20240507143413-cffdfd1fa489
github.com/stretchr/testify v1.9.0
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 h1:vkHw5I/plNdTr435cARxCW6q9gc0S/Yxz7Mkd38pOb0=
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231/go.mod h1:murToZ2N9hNJzewjHBgfFdXhZKjY3z5cYC1VXk+lbFE=
github.com/pulumi/esc v0.8.4-0.20240528210029-4a7b80c97962 h1:0tHF/cdjSxdRJyb7AWKrk56ItHehcv/FtzVDkUCFnvE=
github.com/pulumi/esc v0.8.4-0.20240528210029-4a7b80c97962/go.mod h1:Xg2+LEWV0szTc+bcO+L1D0lKZOrA7x9Thiqse1CN6v4=
github.com/pulumi/esc v0.9.1 h1:HH5eEv8sgyxSpY5a8yePyqFXzA8cvBvapfH8457+mIs=
github.com/pulumi/esc v0.9.1/go.mod h1:oEJ6bOsjYlQUpjf70GiX+CXn3VBmpwFDxUTlmtUN84c=
github.com/pulumi/pulumi/pkg/v3 v3.112.0 h1:vhoM6sx1eegJntIeUZENtck3VeMtK1zBiQ2E3EPOnHw=
github.com/pulumi/pulumi/pkg/v3 v3.112.0/go.mod h1:GQhNr0v5E8TACF8j0p6UQqyr7mZreUpoMfVjLeu6eY0=
github.com/pulumi/pulumi/sdk/v3 v3.115.3-0.20240507143413-cffdfd1fa489 h1:e7J2I8veUe9mSpzWN9kPREp7YhHUwnQz0aP0k5R45V8=
Expand Down
4 changes: 4 additions & 0 deletions provider/pkg/provider/environment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ func (c *EscClientMock) DeleteEnvironmentRevisionTag(ctx context.Context, orgNam
return nil
}

func (c *EscClientMock) RetractEnvironmentRevision(ctx context.Context, orgName string, envName string, version string, replacement *int, reason string) error {
return nil
}

func (c *EscClientMock) Insecure() bool {
return false
}
Expand Down
Loading