Skip to content

Commit

Permalink
Prepare for v4.16.0 release (#3156)
Browse files Browse the repository at this point in the history
### Added

- `clusterIdentifier` configuration can now be used to manually control
the replacement behavior of a provider resource.
(#3068)

- Pod errors now include the pod's last termination state, as well as
the pod's termination message if available.
(#3091)

The pod's termination message can be helpful in `CrashLoopBackOff`
situations but will only be reported if it was correctly configured.

By default, the pod's termination message is read from
`/dev/termination-log`. This location can be configured with
`terminationMessagePath`.

Use `terminationMessagePolicy: FallbackToLogsOnError` to use the pod's
logs as its termination message.

- Documentation is now generated for all languages supported by overlay
types. (#3107)

### Fixed

- Updated logic to accurately detect if a resource is a Patch variant.
(#3102)
- Added Java as a supported language for `CustomResource` overlays.
(#3120)
- Status messages reported during updates are now more accurately scoped
to the
affected resource.
(#3128)
- `PersistentVolumeClaims` with a bind mode of `WaitForFirstConsumer`
will no
longer hang indefinitely.
(#3130)
- [java] Fixed an issue where child resources could not be registered by
Chart v4. (#3119)
  • Loading branch information
blampe authored Aug 7, 2024
1 parent bebf826 commit b06e1f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased

## 4.16.0 (August 7, 2024)

### Added

- `clusterIdentifier` configuration can now be used to manually control the
Expand All @@ -26,12 +28,12 @@
### Fixed

- Updated logic to accurately detect if a resource is a Patch variant. (https://github.com/pulumi/pulumi-kubernetes/pull/3102)
- Added java as supported language for CustomResource overlays. (https://github.com/pulumi/pulumi-kubernetes/pull/3120)
- Added Java as a supported language for `CustomResource` overlays. (https://github.com/pulumi/pulumi-kubernetes/pull/3120)
- Status messages reported during updates are now more accurately scoped to the
affected resource. (https://github.com/pulumi/pulumi-kubernetes/pull/3128)
- `PersistentVolumeClaims` with a bind mode of `WaitForFirstConsumer` will no
longer hang indefinitely. (https://github.com/pulumi/pulumi-kubernetes/pull/3130)
- [sdk/java] Child resource cannot be registered by Chart v4 (https://github.com/pulumi/pulumi-kubernetes/pull/3119)
- [java] Fixed an issue where child resources could not be registered by Chart v4. (https://github.com/pulumi/pulumi-kubernetes/pull/3119)

## 4.15.0 (July 9, 2024)

Expand Down

0 comments on commit b06e1f9

Please sign in to comment.