Releases: pulumi/pulumi-awsx
Releases · pulumi/pulumi-awsx
v2.0.0-beta.2
Temporarily comment failing Go test so we can publish beta.2
v2.0.0-beta.1
Rename ecs example without capacity provider
v1.0.5
fix typos in awsx-classic/ecr/README.md (#1073)
v1.0.4
Upgrade to latest google.golang.org/genproto (#1066) Details are documented in https://github.com/pulumi/pulumi/issues/13644#issuecomment-1664711242, but in short: The old version of google.golang.org/genproto provides google.golang.org/genproto/googleapis/rpc as a subpackage, and this conflicts with the independent submodule google.golang.org/genproto/googleapis/rpc. This means that a fresh new Go program that imports `pulumi` and `pulumi-awsx` will break with an error like: ``` google.golang.org/genproto/googleapis/rpc/errdetails: ambiguous import: found package google.golang.org/genproto/googleapis/rpc/errdetails in multiple modules: google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 ($GOPATH/pkg/mod/google.golang.org/genproto@v0.0.0-20230410155749-daa745c078e1/googleapis/rpc/errdetails) google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 ($GOPATH/pkg/mod/google.golang.org/genproto/googleapis/rpc@v0.0.0-20230706204954-ccb25ca9f130/errdetails) ``` Refs https://github.com/pulumi/pulumi/issues/13644
v1.0.3
What's Changed
- Bug fixes
- Dependency updates
- Upgrades p/p to v3.64.0, java-gen to v0.9.2, pulumi-aws to v5.35.0 and dotnet to v6 by @rquitales in #1017
- Dependabot upgrades by @thomas11 in #1024
- Upgrade p/p and dependabot alerts by @thomas11 in #1034
- ci: command-dispatch Updates to v3 by @piwysocki in #945
- Combined Dependabot upgrades by @thomas11 in #1061
- Other
- Update CHANGELOG_OLD.md by @andreujuanc in #990
- Pin gradle version to 7.6 by @danielrbradley in #1009
- Remove erroneous main package field by @danielrbradley in #1028
- Expand CloudTrail example with bucket encryption variants by @thomas11 in #1031
Full Changelog: v1.0.2...v1.0.3
v1.0.2
chore: run lint
v1.0.1
Prepare v1.0.1
v1.0.0
What's Changed
- Created new schematized components to be available to every supported Pulumi language
- ECS defaults to private and must be explicitly made public by setting
AssignPublicId=true
- Upgrade internal dependencies for the Pulumi and AWS packages.
- Expose all arguments of the underlying resources through the components for greater control.
- Maintain existing
0.x
code within theclassic
namespace to allow slower trasitioning to the new component versions. - Vastly improved VPC component with better defaults and layout options.
- Improved networking detaults for load ballancers and Fargate ECS services.
Migration from 0.x to 1.0
Before version 1, this package only supported components in TypeScript. All the existing components from the 0.x releases are now available in the classic
namespace. The classic
namespace will remain until the next major version release but will only receive updates for critical security fixes.
- Change references from
@pulumi/awsx
to@pulumi/awsx/classic
to maintain existing behaviour. - Refactor to replace the classic components with the new top-level components.
Note: The new top-level components (outside the classic
namespace) may require additional code changes and resource re-creation.
New Contributors
- @viveklak made their first contribution in #726
- @will3942 made their first contribution in #736
- @danielrbradley made their first contribution in #754
- @jkodroff made their first contribution in #782
- @AaronFriel made their first contribution in #821
- @afreakk made their first contribution in #861
- @JoeStead made their first contribution in #867
- @rshade made their first contribution in #890
- @jaxxstorm made their first contribution in #937
- @titanous made their first contribution in #928
- @ekini made their first contribution in #943
Full Changelog: v0.40.1...v1.0.0
v1.0.0-beta.11
Fix continueBeforeSteadyState (#914) * Fix continueBeforeSteadyState The docs say this should default to `false`, and the implementation appears to be trying to implement that, but it applies `!` to an `Output` value, which will always be `false`, even if the `Output` internally evaluates to `false`. Instead, apply the `!` inside an apply. Also remove accidentally added debug logging. Fixes #902. * Add CHANGELOG * Lint
v1.0.0-beta.10
What's Changed
- Added Java support
- Add Support for Log Query metric to awsx-classic cloudwatch
Full Changelog: v1.0.0-beta.9...v1.0.0-beta.10