Skip to content

Commit

Permalink
Merge pull request #1442 from gentics/hotfix-1.6.x-sup-12629
Browse files Browse the repository at this point in the history
Fixes, tests and documentation for resource leaks problems
  • Loading branch information
npomaroli authored Sep 22, 2022
2 parents e8aa95b + 5ea7c17 commit 43a94dc
Show file tree
Hide file tree
Showing 12 changed files with 758 additions and 17 deletions.
7 changes: 7 additions & 0 deletions LTS-CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ include::content/docs/variables.adoc-include[]
The LTS changelog lists releases which are only accessible via a commercial subscription.
All fixes and changes in LTS releases will be released the next minor release. Changes from LTS 1.4.x will be included in release 1.5.0.

[[v1.6.34]]
== 1.6.34 (TBD)

icon:check[] Java Rest Client: The classes `MeshWebrootResponse` and `MeshWebrootFieldResponse` now extend `Closeable` and calling `close()` on implementations
will close the underlying response. See link:{{< relref "java-rest-client.asciidoc" >}}#_connection_leaks[Gentics Mesh Java Client] for examples of how to properly
close the responses.

[[v1.6.33]]
== 1.6.33 (07.09.2022)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public T getBody() {
public List<String> getCookies() {
throw new RuntimeException("There are no cookies in local requests");
}

@Override
public void close() {
}
});
}

Expand Down
Loading

0 comments on commit 43a94dc

Please sign in to comment.