Skip to content

Bump the all group with 6 updates#122

Merged
IRus merged 1 commit intomainfrom
dependabot/gradle/all-8abcf8cf2f
Mar 10, 2025
Merged

Bump the all group with 6 updates#122
IRus merged 1 commit intomainfrom
dependabot/gradle/all-8abcf8cf2f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 10, 2025

Bumps the all group with 6 updates:

Package From To
org.jsoup:jsoup 1.18.3 1.19.1
io.heapy.komok:komok-tech-di 1.0.11 1.0.12
io.heapy.komok:komok-tech-di-lib 1.0.11 1.0.12
io.heapy.komok:komok-tech-config-dotenv 1.0.11 1.0.12
io.heapy.komok:komok-tech-config 1.0.11 1.0.12
io.heapy.komok:komok-tech-logging 1.0.11 1.0.12

Updates org.jsoup:jsoup from 1.18.3 to 1.19.1

Release notes

Sourced from org.jsoup:jsoup's releases.

jsoup 1.19.1

Changes

  • Added support for http/2 requests in Jsoup.connect(), when running on Java 11+, via the Java HttpClient implementation. #2257.
    • In this version of jsoup, the default is to make requests via the HttpUrlConnection implementation: use System.setProperty("jsoup.useHttpClient", "true"); to enable making requests via the HttpClient instead , which will enable http/2 support, if available. This will become the default in a later version of jsoup, so now is a good time to validate it.
    • If you are repackaging the jsoup jar in your deployment (i.e. creating a shaded- or a fat-jar), make sure to specify that as a Multi-Release JAR.
    • If the HttpClient impl is not available in your JRE, requests will continue to be made via HttpURLConnection (in http/1.1 mode).
  • Updated the minimum Android API Level validation from 10 to 21. As with previous jsoup versions, Android developers need to enable core library desugaring. The minimum Java version remains Java 8. #2173
  • Removed previously deprecated class: org.jsoup.UncheckedIOException (replace with java.io.UncheckedIOException); moved previously deprecated method Element Element#forEach(Consumer) to void Element#forEach(Consumer()). #2246
  • Deprecated the methods Document#updateMetaCharsetElement(bool) and #Document#updateMetaCharsetElement(), as the setting had no effect. When Document#charset(Charset) is called, the document's meta charset or XML encoding instruction is always set. #2247

Improvements

  • When cleaning HTML with a Safelist that preserves relative links, the isValid() method will now consider these links valid. Additionally, the enforced attribute rel=nofollow will only be added to external links when configured in the safelist. #2245
  • Added Element#selectStream(String query) and Element#selectStream(Evaluator) methods, that return a Stream of matching elements. Elements are evaluated and returned as they are found, and the stream can be terminated early. #2092
  • Element objects now implement Iterable, enabling them to be used in enhanced for loops.
  • Added support for fragment parsing from a Reader via Parser#parseFragmentInput(Reader, Element, String). #1177
  • Reintroduced CLI executable examples, in jsoup-examples.jar. #1702
  • Optimized performance of selectors like #id .class (and other similar descendant queries) by around 4.6x, by better balancing the Ancestor evaluator's cost function in the query planner. #2254
  • Removed the legacy parsing rules for <isindex> tags, which would autovivify a form element with labels. This is no longer in the spec.
  • Added Elements.selectFirst(String cssQuery) and Elements.expectFirst(String cssQuery), to select the first matching element from an Elements list. #2263
  • When parsing with the XML parser, XML Declarations and Processing Instructions are directly handled, vs bouncing through the HTML parser's bogus comment handler. Serialization for non-doctype declarations no longer end with a spurious !. #2275
  • When converting parsed HTML to XML or the W3C DOM, element names containing < are normalized to _ to ensure valid XML. For example, <foo<bar> becomes <foo_bar>, as XML does not allow < in element names, but HTML5 does. #2276
  • Reimplemented the HTML5 Adoption Agency Algorithm to the current spec. This handles mis-nested formating / structural elements. #2278

... (truncated)

Changelog

Sourced from org.jsoup:jsoup's changelog.

1.19.1 (2025-03-04)

Changes

  • Added support for http/2 requests in Jsoup.connect(), when running on Java 11+, via the Java HttpClient implementation. #2257.
    • In this version of jsoup, the default is to make requests via the HttpUrlConnection implementation: use System.setProperty("jsoup.useHttpClient", "true"); to enable making requests via the HttpClient instead , which will enable http/2 support, if available. This will become the default in a later version of jsoup, so now is a good time to validate it.
    • If you are repackaging the jsoup jar in your deployment (i.e. creating a shaded- or a fat-jar), make sure to specify that as a Multi-Release JAR.
    • If the HttpClient impl is not available in your JRE, requests will continue to be made via HttpURLConnection (in http/1.1 mode).
  • Updated the minimum Android API Level validation from 10 to 21. As with previous jsoup versions, Android developers need to enable core library desugaring. The minimum Java version remains Java 8. #2173
  • Removed previously deprecated class: org.jsoup.UncheckedIOException (replace with java.io.UncheckedIOException); moved previously deprecated method Element Element#forEach(Consumer) to void Element#forEach(Consumer()). #2246
  • Deprecated the methods Document#updateMetaCharsetElement(boolean) and Document#updateMetaCharsetElement(), as the setting had no effect. When Document#charset(Charset) is called, the document's meta charset or XML encoding instruction is always set. #2247

Improvements

  • When cleaning HTML with a Safelist that preserves relative links, the isValid() method will now consider these links valid. Additionally, the enforced attribute rel=nofollow will only be added to external links when configured in the safelist. #2245
  • Added Element#selectStream(String query) and Element#selectStream(Evaluator) methods, that return a Stream of matching elements. Elements are evaluated and returned as they are found, and the stream can be terminated early. #2092
  • Element objects now implement Iterable, enabling them to be used in enhanced for loops.
  • Added support for fragment parsing from a Reader via Parser#parseFragmentInput(Reader, Element, String). #1177
  • Reintroduced CLI executable examples, in jsoup-examples.jar. #1702
  • Optimized performance of selectors like #id .class (and other similar descendant queries) by around 4.6x, by better balancing the Ancestor evaluator's cost function in the query planner. #2254
  • Removed the legacy parsing rules for <isindex> tags, which would autovivify a form element with labels. This is no longer in the spec.
  • Added Elements.selectFirst(String cssQuery) and Elements.expectFirst(String cssQuery), to select the first matching element from an Elements list. #2263
  • When parsing with the XML parser, XML Declarations and Processing Instructions are directly handled, vs bouncing through the HTML parser's bogus comment handler. Serialization for non-doctype declarations no longer end with a spurious !. #2275
  • When converting parsed HTML to XML or the W3C DOM, element names containing < are normalized to _ to ensure valid XML. For example, <foo<bar> becomes <foo_bar>, as XML does not allow < in element names, but HTML5 does. #2276

... (truncated)

Commits
  • 5c4c09a [maven-release-plugin] prepare release jsoup-1.19.1
  • 7de25be Updated changelog in preparation of release
  • 6d7a058 Use 'el' instead of 'node' in adoption agency
  • 0679bef Perf: removed redundant lowercase normalization
  • d80275e Performance tweak when appending tag names
  • 4b733b1 Updated InScope search basetypes to be namespace aware
  • d89d757 Changelog tidy
  • 5fde3d9 Changelog for #2281
  • d55469a Clone the Parser when cloning a Document
  • 11a0334 Concurrency note
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-di from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-di-lib from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-config-dotenv from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-config from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-logging from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-di-lib from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-config-dotenv from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-config from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Updates io.heapy.komok:komok-tech-logging from 1.0.11 to 1.0.12

Commits
  • 5c3ca7c Release 1.0.12
  • a61c7bd Komok-Htmx
  • 6762a25 Gradle 8.13
  • abebc15 Bump the all group with 7 updates (#219)
  • 4e3bd7a Bump the all group in /frontend with 3 updates (#220)
  • 80c26ed Bump @​types/node from 22.13.4 to 22.13.5 in /frontend in the all group (#218)
  • 66bb4a5 Bump the all group with 17 updates (#217)
  • 50414dc Bump the all group in /frontend with 6 updates (#215)
  • 84aef8e Bump the all group with 21 updates (#216)
  • b8bb0c6 Bump esbuild from 0.23.1 to 0.25.0 in /komok-tech-di-ez-graph-visualizer (#214)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jsoup:jsoup](https://github.com/jhy/jsoup) | `1.18.3` | `1.19.1` |
| [io.heapy.komok:komok-tech-di](https://github.com/Heapy/komok) | `1.0.11` | `1.0.12` |
| [io.heapy.komok:komok-tech-di-lib](https://github.com/Heapy/komok) | `1.0.11` | `1.0.12` |
| [io.heapy.komok:komok-tech-config-dotenv](https://github.com/Heapy/komok) | `1.0.11` | `1.0.12` |
| [io.heapy.komok:komok-tech-config](https://github.com/Heapy/komok) | `1.0.11` | `1.0.12` |
| [io.heapy.komok:komok-tech-logging](https://github.com/Heapy/komok) | `1.0.11` | `1.0.12` |


Updates `org.jsoup:jsoup` from 1.18.3 to 1.19.1
- [Release notes](https://github.com/jhy/jsoup/releases)
- [Changelog](https://github.com/jhy/jsoup/blob/master/CHANGES.md)
- [Commits](jhy/jsoup@jsoup-1.18.3...jsoup-1.19.1)

Updates `io.heapy.komok:komok-tech-di` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-di-lib` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-config-dotenv` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-config` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-logging` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-di-lib` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-config-dotenv` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-config` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

Updates `io.heapy.komok:komok-tech-logging` from 1.0.11 to 1.0.12
- [Commits](Heapy/komok@v1.0.11...v1.0.12)

---
updated-dependencies:
- dependency-name: org.jsoup:jsoup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-di
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-di-lib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-config-dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-di-lib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-config-dotenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-logging
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Mar 10, 2025
@IRus IRus merged commit ae6f738 into main Mar 10, 2025
@dependabot dependabot Bot deleted the dependabot/gradle/all-8abcf8cf2f branch March 10, 2025 17:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Development

Successfully merging this pull request may close these issues.

1 participant