Skip to content

Commit

Permalink
chore: sanitize changelog before next release
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <marc@marcnuri.com>
  • Loading branch information
manusa committed Jan 19, 2023
1 parent 04264e0 commit 0cd1d26
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@
### 6.4-SNAPSHOT

#### Bugs
* Fix #4729: ensuring completablefuture cancel will close / cancel the underlying resource
* Fix #4249 #4726: prevent the over-logging of errors after the websocket has been closed
* Fix #4249: prevent the over-logging of errors after the websocket has been closed
* Fix #4563: fallback to current class-loader when looking for HttpClient implementations
* Fix #4650: allowing for comments at the end of certificate files
* Fix #4668: use acme.cert-manager.io ApiGroup for Orders and Challenges
* Fix #4726: prevent the over-logging of errors after the websocket has been closed
* Fix #4729: ensuring `CompletableFuture` cancel will close / cancel the underlying resource
* Fix #4735: StandardHttpClient sends Expect 100-continue header value

#### Improvements
* Fix #4637: all pod operations that require a ready / succeeded pod may use withReadyWaitTimeout, which supersedes withLogWaitTimeout.
* Fix #4622: Java Generator Maven Plugin can use CRDs from remote URLs
* Fix #4633: provided inline access to all RunConfig builder methods via run().withNewRunConfig()
* Fix #4637: all pod operations that require a ready / succeeded pod may use withReadyWaitTimeout, which supersedes withLogWaitTimeout.
* Fix #4654: Fix GatewayClass to not implement Namespaced interface
* Fix #4670: the initial informer listing will use a resourceVersion of 0 to utilize the watch cache if possible. This means that the initial cache state when the informer is returned, or the start future is completed, may not be as fresh as the previous behavior which forced the latest version. It will of course become more consistent as the watch will already have been established.
* Fix #4694: [java-generator] Option to override the package name of the generated code.
Expand All @@ -22,6 +25,7 @@
#### Dependency Upgrade

#### New Features
* Fix #2764: Vert.x HttpClient implementation

#### _**Note**_: Breaking changes
* Fix #3972: deprecated Parameterizable and methods on Serialization accepting parameters - that was only needed as a workaround for non-string parameters. You should instead include those parameter values in the map passed to processLocally.
Expand All @@ -30,20 +34,20 @@
* Fix #4574: fromServer has been deprecated - it no longer needs to be called. All get() operations will fetch the resource(s) from the api server. If you need the context item that was passed in from a resource, load, or resourceList methods, use the item or items method.
* Fix #4633: client.run().withRunConfig was deprecated. Use withNewRunConfig instead.
* Fix #4663: Config.maxConcurrentRequests and Config.maxConcurrentRequestsPerHost will no longer be used. Instead they will default to unlimited for all clients. Due to the ability of the fabric8 client to start long running requests (either websocket or regular http) and how this is treated by the underlying clients you can easily exhaust these values and enter a state where the client is unresponsive without any additional information on what is occurring.
* Fix #4769: [java-generator] Fix encoding of empty strings as valid enums
* Fix #4769: java-generator Fix encoding of empty strings as valid enums

### 6.3.1 (2022-12-15)

#### Bugs
* Fix #4666: fixed okhttp calls not explicitly closing
* Fix #4673: fixes a regression in sharing the OpenShiftOAuthInterceptor token
* Fix #4677: [java-generator] Fix default encoding of enums
* Fix #4677: java-generator Fix default encoding of enums

### 6.3.0 (2022-12-12)

#### Bugs
* Fix #4159: ensure the token refresh obeys how the Config was created
* Fix #4447: `isSupported` doesn't check all of the applicable API Groups
* Fix #4447: `isSupported` doesn't check all the applicable API Groups
* Fix #4473: correcting backoff interval regression introduced in #4365 (6.2.0)
* Fix #4491: added a more explicit shutdown exception for okhttp
* Fix #4509: do not reuse KeyFactory instance after a failure
Expand All @@ -63,8 +67,8 @@
* Fix #4014: added support for OpenShift Build log version.
* Fix #4201: Removed sendAsync from the individual http client implementations
* Fix #4355: for exec, attach, upload, and copy operations the container id/name will be validated or chosen prior to the remote call. You may also use the kubectl.kubernetes.io/default-container annotation to specify the default container.
* Fix #4530: generalizing the Serialization logic to allow for primitive values and clarifying the type expectations.
* Fix #4363: exposed ResourceCompare.metadataChanged
* Fix #4530: generalizing the Serialization logic to allow for primitive values and clarifying the type expectations.

#### New Features
* Fix #4136: added support for fieldValidation as a dsl method for POST/PUT/PATCH operations
Expand Down

0 comments on commit 0cd1d26

Please sign in to comment.