Skip to content

Commit

Permalink
Bump Jsoup to avoid CVE-2022-36033 (#2772)
Browse files Browse the repository at this point in the history
Fixes #2754
  • Loading branch information
IgnatBeresnev committed Dec 15, 2022
1 parent 4777e67 commit f6ea66c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -6,7 +6,7 @@ kotlin_version=1.7.20
coroutines_version=1.6.3
kotlinx_html_version=0.7.5
kotlin_plugin_version=213-1.7.20-199-IJ6777.52
jsoup_version=1.14.3
jsoup_version=1.15.3
idea_version=213.6777.52
language_version=1.4
# jackson 2.13.X does not support kotlin language version 1.4, check before updating
Expand Down
Expand Up @@ -197,7 +197,7 @@ class PageTransformerBuilderTest : BaseAbstractTest() {
assertContains(generatedFiles.keys, "scripts/symbol-parameters-wrapper_deferred.js")

val scripts = generatedFiles.getValue("root/test/-test/-test.html").let { Jsoup.parse(it) }.select("script")
val deferredScriptSources = scripts.filter { it.hasAttr("defer") }.map { it.attr("src") }
val deferredScriptSources = scripts.filter { element -> element.hasAttr("defer") }.map { it.attr("src") }

// important to check symbol-parameters-wrapper_deferred specifically since it might break some features
assertContains(deferredScriptSources, "../../../scripts/symbol-parameters-wrapper_deferred.js")
Expand Down

0 comments on commit f6ea66c

Please sign in to comment.