From 83e2adde41f8343caff92a8ab3b89f5fb8417e92 Mon Sep 17 00:00:00 2001 From: ysaito1001 Date: Thu, 7 Dec 2023 16:52:51 -0600 Subject: [PATCH] Upgrade jsoup to 1.16.2 (#3296) ## Motivation and Context Upgrades `jsoup` to 1.16.2, a version that we know is supported internally. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._ --- aws/sdk-codegen/build.gradle.kts | 2 +- codegen-core/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/sdk-codegen/build.gradle.kts b/aws/sdk-codegen/build.gradle.kts index f2eb5b44929..6b255bd5a30 100644 --- a/aws/sdk-codegen/build.gradle.kts +++ b/aws/sdk-codegen/build.gradle.kts @@ -23,7 +23,7 @@ val smithyVersion: String by project dependencies { implementation(project(":codegen-core")) implementation(project(":codegen-client")) - implementation("org.jsoup:jsoup:1.15.3") + implementation("org.jsoup:jsoup:1.16.2") implementation("software.amazon.smithy:smithy-aws-traits:$smithyVersion") implementation("software.amazon.smithy:smithy-protocol-test-traits:$smithyVersion") implementation("software.amazon.smithy:smithy-rules-engine:$smithyVersion") diff --git a/codegen-core/build.gradle.kts b/codegen-core/build.gradle.kts index c4b32832896..e72667f8984 100644 --- a/codegen-core/build.gradle.kts +++ b/codegen-core/build.gradle.kts @@ -23,7 +23,7 @@ val smithyVersion: String by project dependencies { implementation(kotlin("stdlib-jdk8")) - implementation("org.jsoup:jsoup:1.15.3") + implementation("org.jsoup:jsoup:1.16.2") api("software.amazon.smithy:smithy-codegen-core:$smithyVersion") api("com.moandjiezana.toml:toml4j:0.7.2") implementation("software.amazon.smithy:smithy-aws-traits:$smithyVersion")