Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/cwrothrock/beam
Browse files Browse the repository at this point in the history
merging browser changes
  • Loading branch information
cwrothrock committed Dec 9, 2022
2 parents 28d6530 + 9b905a8 commit e0b01c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
## New Features / Improvements

* X feature added (Java/Python) ([#X](https://github.com/apache/beam/issues/X)).
* Adding override of allowed TLS algorithms (Java), now maintaining the disabled/legacy algorithms
* Adding override of allowed TLS algorithms (Java), now maintaining the disabled/legacy algorithms
present in 2.43.0 (up to 1.8.0_151, 11.0.9, 17.0.2 for respective Java versions). This primarily
re-enables TLSv1 and TLSv1.1 for Java 8 and Java 11 by default, and gives control over this
property for JVMs in the future.
re-enables TLSv1 and TLSv1.1 for Java 8 and Java 11 by default, and gives control over this
property for JVMs in the future.

## Breaking Changes

Expand Down
11 changes: 4 additions & 7 deletions sdks/java/container/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,10 @@ task copyGolangLicenses(type: Copy) {
task copyJdkOptions(type: Copy) {
if (imageJavaVersion == "17" || imageJavaVersion == "11") {
from "option-jamm.json"
into "build/target/options"
}

into("build/target/options") {
from "jdk${imageJavaVersion}-tls.properties"
from "option-tls-${imageJavaVersion}.json"
}
from "jdk${imageJavaVersion}-tls.properties"
from "option-tls-${imageJavaVersion}.json"
into "build/target/options"
}

task skipPullLicenses(type: Exec) {
Expand Down Expand Up @@ -134,4 +131,4 @@ dockerPrepare.dependsOn copySdkHarnessLauncher
dockerPrepare.dependsOn copyDockerfileDependencies
dockerPrepare.dependsOn ":sdks:java:container:downloadCloudProfilerAgent"
dockerPrepare.dependsOn copyJdkOptions
dockerPrepare.dependsOn validateJavaHome
dockerPrepare.dependsOn validateJavaHome

0 comments on commit e0b01c1

Please sign in to comment.