Skip to content

Commit

Permalink
Release/0.5.1 (#753)
Browse files Browse the repository at this point in the history
* Edit CHANGELOG_PENDING

* Add CHANGELOG entry for 0.5.1
  • Loading branch information
t0yv0 authored Jul 20, 2022
1 parent d99a3b3 commit 8d51452
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
CHANGELOG
=========

## 0.5.1 (2022-07-19)

### Bug Fixes

- [codegen] [#390](https://github.com/pulumi/pulumi-java/issues/390)
fixes code generation for output types with large (200+) number of
parameters hitting the JVM limits. Previously these types would
generate compiling code but throw exceptions at runtime when in use.

Packages generated with this version of codegen will need to depend
on `com.pulumi:pulumi` (Java SDK) versions `0.5.0` or higher, so
that user programs get the upgraded Java SDK that can understand the
new class annotation scheme and continue working without changes.

- [codegen] [#739](https://github.com/pulumi/pulumi-java/issues/739)
fixes ambiguity in the "packages" option by adding a new
"dependencies" option in Java extensions to Package Schema. With
this change, both package name overrides and desired Maven
dependencies in the generated build files can now be specified:

packages:
"admissionregistration.k8s.io/v1: "admissionregistration.v1"

build: gradle

dependencies:
"com.pulumi:aws": "5.4.0"

## 0.5.0 (2022-07-13)

### Improvements
Expand Down
13 changes: 10 additions & 3 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
### Improvements

- [codegen] @CustomType builders now use the new @Builder and @Setter annotations
this is a breaking change and the generated code depends on SDK 0.5.0

### Bug Fixes

- [codegen] [#390](https://github.com/pulumi/pulumi-java/issues/390)
fixes code generation for output types with large (200+) number of
parameters hitting the JVM limits. Previously these types would
generate compiling code but throw exceptions at runtime when in use.

Packages generated with this version of codegen will need to depend
on `com.pulumi:pulumi` (Java SDK) versions `0.5.0` or higher, so
that user programs get the upgraded Java SDK that can understand the
new class annotation scheme and continue working without changes.

- [codegen] [#739](https://github.com/pulumi/pulumi-java/issues/739)
fixes ambiguity in the "packages" option by adding a new
"dependencies" option in Java extensions to Package Schema. With
Expand Down

0 comments on commit 8d51452

Please sign in to comment.