Skip to content

Releases: pulumi/pulumi-awsx

v1.0.0-beta.6

23 May 10:49
e8ed3c5
Compare
Choose a tag to compare
v1.0.0-beta.6 Pre-release
Pre-release
Sync Python README

- Add dependency in makefile

v1.0.0-beta.5

18 May 15:20
d251f34
Compare
Choose a tag to compare
v1.0.0-beta.5 Pre-release
Pre-release
Pack all binaries into gzips (#849)

Can't find a neat x-plat method for doing this so just doing the obvious route for now.
- Binary's name is always the same inside the archive.
- Include readme and licence files as per other providers.
- Revert release files pattern to *.tar.gz
- Run pkg via yarn directly from awsx directory

v1.0.0-beta.4

17 May 19:58
b27dc1b
Compare
Choose a tag to compare
v1.0.0-beta.4 Pre-release
Pre-release
[internal] Fixup the local publishing mechanism for the provider (#845)

v1.0.0-beta.3

17 May 13:02
b00119b
Compare
Choose a tag to compare
v1.0.0-beta.3 Pre-release
Pre-release

This release contains some more bug fixes and features based on the v1.0.0-beta.2:

  • Adding support for VPC Endpoints to VPCs
  • Fixing VPC type validation
  • Fixing docker image name tagging

We also changed how the packaging of the binary works in this release - we now package all of the dependencies into a single binary and ensure that we are not downloading npm packages on user installations

v1.0.0-beta.2

10 May 17:54
3d599fa
Compare
Choose a tag to compare
v1.0.0-beta.2 Pre-release
Pre-release

This release contains significant fixes found during the v1.0.0-beta.1 release. These are:

  • Provider validation aroundCIDR block calculation and NAT gateways now work as expected
  • VPC outputs are now required outputs and no longer need to be checked for undefined
  • Provider now supports Pulumi AWS v5.4.0
  • Automatically deduce the VPC ID from subnetIds when no VPC ID is passed
  • Go SDK now supports chaining
    trail, err := cloudtrail.NewTrail(ctx, "test-trail-go", &cloudtrail.TrailArgs{
        IncludeGlobalServiceEvents: pulumi.Bool(false),
        EnableLogging:              pulumi.Bool(true),
    })
    if err != nil {
        return err
    }
    
    ctx.Export("bucketName", trail.Bucket.Bucket())
    ctx.Export("bucketArn", trail.Bucket.Arn())

v1.0.0-beta.1

29 Apr 20:20
Compare
Choose a tag to compare
v1.0.0-beta.1 Pre-release
Pre-release

Multi Language Version of AWSx

This release creates multi-language support for:

  • awsx.ec2.Vpc
  • awsx.ec2.DefaultVpc
  • awsx.ecr.Repository
  • awsx.ecr.LifecyclePolicy
  • awsx.ecr.Image
  • awsx.lb.NetworkLoadBalancer
  • awsx.lb.ApplicationLoadBalancer
  • awsx.lb.TargetGroupAttachment
  • awsx.ecs.FargateService
  • awsx.ecs.FargateTaskDefinition
  • awsx.ecs.Ec2Service
  • awsx.ecs.Ec2TaskDefinition

The APIs on these components have changed and therefore we don't currently support an upgrade path from the classic AWSx TypeScript implementation

In order to mnimise user pain, this release takes the existing AWSx typescript code and moves that to a classic namespace. So if you are using that code and do not want to upgrade here, then you can change your import:

import * as awsx from "@pulumi/awsx;

to now be

import * as classic from "@pulumi/awsx/classic;

You can find more examples of the new API in our examples folder

v0.40.0

22 Apr 23:20
Compare
Choose a tag to compare
  • Compatibility with pulumi-aws v5.0.0

v0.33.0

03 Feb 04:58
0a79e4a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.32.0...v0.33.0

v0.32.0

30 Sep 00:18
af311d3
Compare
Choose a tag to compare
Prepare for v0.32.0 (#704)

Co-authored-by: Vivek Lakshmanan <vivek@pulumi.com>

v0.31.0

05 Aug 21:11
21fa7c8
Compare
Choose a tag to compare
Prepare for v0.31.0 (#688)