-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump minimum pulumi requirement (#119)
pulumi/pulumi#17898 was a breaking change for projects that directly depend on `pulumi/sdk` but not `pulumi/pkg`, which is the case with several native providers. If these projects upgrade to `[email protected]` or later, they can still indirectly depend on earlier versions of `pkg` via libraries like this one. This leads to errors like the following: ``` go: github.com/pulumi/pulumi-command/provider/pkg/provider tested by github.com/pulumi/pulumi-command/provider/pkg/provider.test imports github.com/pulumi/providertest imports github.com/pulumi/pulumi/pkg/v3/testing/integration imports github.com/pulumi/pulumi/sdk/v3/go/common/tools: cannot find module providing package github.com/pulumi/pulumi/sdk/v3/go/common/tools ``` This bumps our minimum required version of `pkg` to one which accounts for pulumi/pulumi#17898. This problem is self-inflicted and only exists because we choose to version `sdk` and `pkg` separately despite there being a tight coupling between the two. We would not have this problem if we released them together as a single module with `sdk` and `pkg` packages.
- Loading branch information
Showing
4 changed files
with
67 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.