Skip to content

Commit

Permalink
SAK-48591 Upgrade JSOUP from 1.14.2 to 1.15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Pellicer committed Mar 8, 2023
1 parent 859e253 commit d8e59df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ public String stripHtmlFromText(String text, boolean smartSpacing, boolean strip
//  are converted to char code 160, java doesn't treat it like whitespace, so replace it with ' '
text = text.replace((char)160, ' ');
} else {
text = org.jsoup.Jsoup.clean(text, "", org.jsoup.safety.Whitelist.none(), new org.jsoup.nodes.Document.OutputSettings().prettyPrint(false).outline(false));
text = org.jsoup.Jsoup.clean(text, "", org.jsoup.safety.Safelist.none(), new org.jsoup.nodes.Document.OutputSettings().prettyPrint(false).outline(false));
}

if (smartSpacing || stripEscapeSequences) {
Expand Down
2 changes: 1 addition & 1 deletion master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<sakai.ignite.spring.ext.version>1.0.0</sakai.ignite.spring.ext.version>
<sakai.ignite.hibernate.version>5.3.0</sakai.ignite.hibernate.version>
<sakai.jackson.version>2.14.1</sakai.jackson.version>
<sakai.jsoup.version>1.14.2</sakai.jsoup.version>
<sakai.jsoup.version>1.15.4</sakai.jsoup.version>
<sakai.woodstox.version>6.5.0</sakai.woodstox.version>
<sakai.stax2.version>4.2.1</sakai.stax2.version>
<sakai.java.jwt.version>3.1.0</sakai.java.jwt.version>
Expand Down

0 comments on commit d8e59df

Please sign in to comment.