Skip to content

Bump the prod-deps group with 12 updates#4

Merged
thmarx merged 1 commit intomainfrom
dependabot/maven/prod-deps-b2bf17199f
Oct 11, 2024
Merged

Bump the prod-deps group with 12 updates#4
thmarx merged 1 commit intomainfrom
dependabot/maven/prod-deps-b2bf17199f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 11, 2024

Bumps the prod-deps group with 12 updates:

Package From To
com.condation.cms:cms-api 6.0.0-SNAPSHOT 6.3.1
com.condation.cms.module.framework:modules-api 6.0.0-SNAPSHOT 6.3.1
com.google.guava:guava 33.2.0-jre 33.3.1-jre
org.jsoup:jsoup 1.17.2 1.18.1
org.apache.lucene:lucene-core 9.11.1 9.12.0
org.apache.lucene:lucene-analysis-common 9.11.1 9.12.0
org.apache.lucene:lucene-backward-codecs 9.11.1 9.12.0
org.apache.lucene:lucene-facet 9.11.1 9.12.0
org.apache.lucene:lucene-highlighter 9.11.1 9.12.0
org.apache.lucene:lucene-queryparser 9.11.1 9.12.0
org.projectlombok:lombok 1.18.32 1.18.34
org.slf4j:slf4j-api 2.0.13 2.0.16

Updates com.condation.cms:cms-api from 6.0.0-SNAPSHOT to 6.3.1

Release notes

Sourced from com.condation.cms:cms-api's releases.

v6.3.1

What's Changed

Full Changelog: CondationCMS/cms-server@v6.3.0...v6.3.1

v6.3.0

What's Changed

New Contributors

Full Changelog: CondationCMS/cms-server@v6.2.1...v6.3.0

v6.2.1

What's Changed

... (truncated)

Commits

Updates com.condation.cms.module.framework:modules-api from 6.0.0-SNAPSHOT to 6.3.1

Updates com.condation.cms.module.framework:modules-api from 6.0.0-SNAPSHOT to 6.3.1

Updates com.google.guava:guava from 33.2.0-jre to 33.3.1-jre

Release notes

Sourced from com.google.guava:guava's releases.

33.3.1

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.3.1-jre</version>
  <!-- or, for Android: -->
  <version>33.3.1-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

33.3.0

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.3.0-jre</version>
  <!-- or, for Android: -->
  <version>33.3.0-android</version>
</dependency>

... (truncated)

Commits

Updates org.jsoup:jsoup from 1.17.2 to 1.18.1

Release notes

Sourced from org.jsoup:jsoup's releases.

jsoup-1.18.1

https://jsoup.org/news/release-1.18.1

Improvements

  • Stream Parser: A StreamParser provides a progressive parse of its input. As each Element is completed, it is emitted via a Stream or Iterator interface. Elements returned will be complete with all their children, and an (empty) next sibling, if applicable. Elements (or their children) may be removed from the DOM during the parse, for e.g. to conserve memory, providing a mechanism to parse an input document that would otherwise be too large to fit into memory, yet still providing a DOM interface to the document and its elements. Additionally, the parser provides a selectFirst(String query) / selectNext(String query), which will run the parser until a hit is found, at which point the parse is suspended. It can be resumed via another select() call, or via the stream() or iterator() methods. 2096
  • Download Progress: added a Response Progress event interface, which reports progress and URLs are downloaded (and parsed). Supported on both a session and a single connection level. 2164, 656
  • Added Path accepting parse methods: Jsoup.parse(Path), Jsoup.parse(path, charsetName, baseUri, parser), etc. 2055
  • Updated the button tag configuration to include a space between multiple button elements in the Element.text() method. 2105
  • Added support for the ns|* all elements in namespace Selector. 1811
  • When normalising attribute names during serialization, invalid characters are now replaced with _, vs being stripped. This should make the process clearer, and generally prevent an invalid attribute name being coerced unexpectedly. 2143

Changes

  • Removed previously deprecated internal classes and methods. 2094
  • Build change: the built jar's OSGi manifest no longer imports itself. 2158

Bug Fixes

  • When tracking source positions, if the first node was a TextNode, its position was incorrectly set to -1. 2106
  • When connecting (or redirecting) to URLs with characters such as {, } in the path, a Malformed URL exception would be thrown (if in development), or the URL might otherwise not be escaped correctly (if in production). The URL encoding process has been improved to handle these characters correctly. 2142
  • When using W3CDom with a custom output Document, a Null Pointer Exception would be thrown. 2114
  • The :has() selector did not match correctly when using sibling combinators (like e.g.: h1:has(+h2)). 2137
  • The :empty selector incorrectly matched elements that started with a blank text node and were followed by non-empty nodes, due to an incorrect short-circuit. 2130
  • Element.cssSelector() would fail with "Did not find balanced marker" when building a selector for elements that had a ( or [ in their class names. And selectors with those characters escaped would not match as expected. 2146
  • Updated Entities.escape(string) to make the escaped text suitable for both text nodes and attributes (previously was only for text nodes). This does not impact the output of Element.html() which correctly applies a minimal escape depending on if the use will be for text data or in a quoted

... (truncated)

Changelog

Sourced from org.jsoup:jsoup's changelog.

1.18.1 (2024-Jul-10)

Improvements

  • Stream Parser: A StreamParser provides a progressive parse of its input. As each Element is completed, it is emitted via a Stream or Iterator interface. Elements returned will be complete with all their children, and an (empty) next sibling, if applicable. Elements (or their children) may be removed from the DOM during the parse, for e.g. to conserve memory, providing a mechanism to parse an input document that would otherwise be too large to fit into memory, yet still providing a DOM interface to the document and its elements. Additionally, the parser provides a selectFirst(String query) / selectNext(String query), which will run the parser until a hit is found, at which point the parse is suspended. It can be resumed via another select() call, or via the stream() or iterator() methods. 2096
  • Download Progress: added a Response Progress event interface, which reports progress and URLs are downloaded (and parsed). Supported on both a session and a single connection level. 2164, 656
  • Added Path accepting parse methods: Jsoup.parse(Path), Jsoup.parse(path, charsetName, baseUri, parser), etc. 2055
  • Updated the button tag configuration to include a space between multiple button elements in the Element.text() method. 2105
  • Added support for the ns|* all elements in namespace Selector. 1811
  • When normalising attribute names during serialization, invalid characters are now replaced with _, vs being stripped. This should make the process clearer, and generally prevent an invalid attribute name being coerced unexpectedly. 2143

Changes

  • Removed previously deprecated internal classes and methods. 2094
  • Build change: the built jar's OSGi manifest no longer imports itself. 2158

Bug Fixes

  • When tracking source positions, if the first node was a TextNode, its position was incorrectly set to -1. 2106
  • When connecting (or redirecting) to URLs with characters such as {, } in the path, a Malformed URL exception would be thrown (if in development), or the URL might otherwise not be escaped correctly (if in production). The URL encoding process has been improved to handle these characters correctly. 2142
  • When using W3CDom with a custom output Document, a Null Pointer Exception would be thrown. 2114
  • The :has() selector did not match correctly when using sibling combinators (like e.g.: h1:has(+h2)). 2137
  • The :empty selector incorrectly matched elements that started with a blank text node and were followed by non-empty nodes, due to an incorrect short-circuit. 2130
  • Element.cssSelector() would fail with "Did not find balanced marker" when building a selector for elements that had a ( or [ in their class names. And selectors with those characters escaped would not match as expected. 2146
  • Updated Entities.escape(string) to make the escaped text suitable for both text nodes and attributes (previously was only for text nodes). This does not impact the output of Element.html() which correctly applies a minimal escape depending on if the use will be for text data or in a quoted attribute. 1278

... (truncated)

Commits
  • 19e8539 [maven-release-plugin] prepare release jsoup-1.18.1
  • c8b6f2e Progress javadoc tweaks
  • 6cbe7e4 Replace attribute invalid characters with _, vs stripping
  • 68f6f9c Bump jetty.version from 9.4.54.v20240208 to 9.4.55.v20240627 (#2168)
  • 6423e65 Relaxed the multi-thread w/o newRequest test
  • 6c55f01 Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 (#2167)
  • e1bfee9 Shh
  • b4b3fd1 Added test of partial fetch in Stream Parser
  • 9ba6dc7 Make Entities.escape(string) suitable for both text and attributes
  • a0537c7 Handle escaped characters in consumeSubQuery
  • Additional commits viewable in compare view

Updates org.apache.lucene:lucene-core from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-analysis-common from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-backward-codecs from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-facet from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-highlighter from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-queryparser from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-analysis-common from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-backward-codecs from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-facet from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-highlighter from 9.11.1 to 9.12.0

Updates org.apache.lucene:lucene-queryparser from 9.11.1 to 9.12.0

Updates org.projectlombok:lombok from 1.18.32 to 1.18.34

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.34 (June 28th, 2024)

  • PLATFORM: Added support for Eclipse 2024-06; you'd get some NoSuchMethodError traces in your logs if using @Builder or @Singular prior to this fix. [Issue #3638](projectlombok/lombok#3638).
  • IMPROBABLE BREAKING CHANGE: Lombok now adds @lombok.Generated by default to methods and types it generates. This may result in accidentally increasing your test coverage percentage. [Issue #3667](projectlombok/lombok#3667).
  • IMPROBABLE BREAKING CHANGE: When lombok.config contains lombok.onX.flagUsage = WARNING, from now on warnings will actually be generated if onX is used.[Issue #2848](projectlombok/lombok#2848)
  • BUGFIX: When @SuperBuilder was used on a type with an generic array type, it would error wrong number of type arguments. [Issue #3694](projectlombok/lombok#3694).
  • FEATURE: Lombok generates javadoc for you for most of the methods it adds; with this release, javadoc is also added to generated constructors. [Issue #933](projectlombok/lombok#933).
Commits
  • fbbe7f0 [release] pre-release version bump
  • 3cd41e8 [trivial] some test cases were failing (due to the constructor-javadoc update...
  • 1384244 Merge pull request #3698 from stevebosman/fix-sneaky-throws-doc
  • d90ec73 [trivial] [style]
  • 3b68e39 Merge pull request #3697 from janrieke/superbuilder-fix-array-type-param
  • fdafa9a Merge pull request #3690 from Rawi01/eclipse_2024_06
  • 78c1f47 Merge pull request #3689 from Rawi01/nested-javadoc
  • da815a6 Merge pull request #3674 from Rawi01/standardexception-fields
  • c61a404 [trivial]
  • 6cf6caf Merge pull request #3673 from Rawi01/eclipse_field_generated
  • Additional commits viewable in compare view

Updates org.slf4j:slf4j-api from 2.0.13 to 2.0.16

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 prod-deps group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [com.condation.cms:cms-api](https://github.com/CondationCMS/cms) | `6.0.0-SNAPSHOT` | `6.3.1` |
| com.condation.cms.module.framework:modules-api | `6.0.0-SNAPSHOT` | `6.3.1` |
| [com.google.guava:guava](https://github.com/google/guava) | `33.2.0-jre` | `33.3.1-jre` |
| [org.jsoup:jsoup](https://github.com/jhy/jsoup) | `1.17.2` | `1.18.1` |
| org.apache.lucene:lucene-core | `9.11.1` | `9.12.0` |
| org.apache.lucene:lucene-analysis-common | `9.11.1` | `9.12.0` |
| org.apache.lucene:lucene-backward-codecs | `9.11.1` | `9.12.0` |
| org.apache.lucene:lucene-facet | `9.11.1` | `9.12.0` |
| org.apache.lucene:lucene-highlighter | `9.11.1` | `9.12.0` |
| org.apache.lucene:lucene-queryparser | `9.11.1` | `9.12.0` |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.32` | `1.18.34` |
| org.slf4j:slf4j-api | `2.0.13` | `2.0.16` |


Updates `com.condation.cms:cms-api` from 6.0.0-SNAPSHOT to 6.3.1
- [Release notes](https://github.com/CondationCMS/cms/releases)
- [Commits](https://github.com/CondationCMS/cms/commits/v6.3.1)

Updates `com.condation.cms.module.framework:modules-api` from 6.0.0-SNAPSHOT to 6.3.1

Updates `com.condation.cms.module.framework:modules-api` from 6.0.0-SNAPSHOT to 6.3.1

Updates `com.google.guava:guava` from 33.2.0-jre to 33.3.1-jre
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

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

Updates `org.apache.lucene:lucene-core` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-analysis-common` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-backward-codecs` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-facet` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-highlighter` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-queryparser` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-analysis-common` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-backward-codecs` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-facet` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-highlighter` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-queryparser` from 9.11.1 to 9.12.0

Updates `org.projectlombok:lombok` from 1.18.32 to 1.18.34
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.32...v1.18.34)

Updates `org.slf4j:slf4j-api` from 2.0.13 to 2.0.16

---
updated-dependencies:
- dependency-name: com.condation.cms:cms-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: com.condation.cms.module.framework:modules-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: com.condation.cms.module.framework:modules-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.jsoup:jsoup
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-analysis-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-backward-codecs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-facet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-highlighter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-queryparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-analysis-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-backward-codecs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-facet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-highlighter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.apache.lucene:lucene-queryparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod-deps
- dependency-name: org.projectlombok:lombok
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Oct 11, 2024
@thmarx thmarx merged commit 2480c19 into main Oct 11, 2024
@thmarx thmarx deleted the dependabot/maven/prod-deps-b2bf17199f branch October 11, 2024 11:42
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant