Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the maven group with 4 updates #85

Merged
merged 1 commit into from
Jan 22, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2024

Bumps the maven group with 4 updates: com.github.javaparser:javaparser-core, com.google.guava:guava, org.codehaus.plexus:plexus-xml and com.puppycrawl.tools:checkstyle.

Updates com.github.javaparser:javaparser-core from 3.25.5 to 3.25.8

Release notes

Sourced from com.github.javaparser:javaparser-core's releases.

javaparser-parent-3.25.8

Added

  • feat: creates cache statistics and moves Cache interface to javaparser-core (PR #4278 by @​jlerbsc)
  • feat: Add parseArrayInitializerExpr to JavaParser API (PR #4276 by @​iMashtak)
  • feat: A visitor looking for a node by its position in an AST (PR #4258 by @​jlerbsc)

Changed

Fixed

  • fix: issue 4240 Calling resolve on catch block parameter throws exception (PR #4279 by @​jlerbsc)
  • Fix: issue 4270 Exception when resolving ObjectCreationExpr with nested varargs (PR #4273 by @​jlerbsc)
  • add Java_18 to yieldSupport (PR #4262 by @​Kimmmey)
  • fix: issue #4245 UnsupportedOperationException with LexicalPreservingPrinter when removing a sealed modified (PR #4253 by @​jlerbsc)
  • [ci] Fix change log released version as 3.25.7 (PR #4251 by @​hazendaz)
  • Fix: issue 3278 Lazy types cause stack overflow when trying to find the least upper bound type (PR #4246 by @​jlerbsc)

Developer Changes

Uncategorised

  • Revert "Refactoring: Move cache features to javaparser-core" (PR #4274 by @​jlerbsc)

❤️ Contributors

Thank You to all contributors who worked on this release!

javaparser-parent-3.25.7

Added

  • [GHA] Remove old comment that is no longer valid around jdks and add jdk 17 (PR #4226 by @​hazendaz)
  • Fix: issue 3833 No enum constant com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_18 (PR #4221 by @​jlerbsc)

Changed

  • Refactoring: Move cache features to javaparser-core (PR #4238 by @​jlerbsc)
  • Fix: removes reference to coveralls plugin which is not useful because codecov is used to track code coverage (PR #4235 by @​jlerbsc)
  • Uses jakarta.json api, upgrades jakarta.json-api to the latest version & uses new default Eclipse Parsson (PR #4234 by @​jlerbsc)
  • Move mockito to 4.11.0 and handle byte buddy consistently as well as properly define its agent in argLine for surefire (PR #4228 by @​hazendaz)

... (truncated)

Changelog

Sourced from com.github.javaparser:javaparser-core's changelog.

Version 3.25.8

issues resolved

Added

  • feat: creates cache statistics and moves Cache interface to javaparser-core (PR #4278 by @​jlerbsc)
  • feat: Add parseArrayInitializerExpr to JavaParser API (PR #4276 by @​iMashtak)
  • feat: A visitor looking for a node by its position in an AST (PR #4258 by @​jlerbsc)

Changed

Fixed

  • fix: issue 4240 Calling resolve on catch block parameter throws exception (PR #4279 by @​jlerbsc)
  • Fix: issue 4270 Exception when resolving ObjectCreationExpr with nested varargs (PR #4273 by @​jlerbsc)
  • add Java_18 to yieldSupport (PR #4262 by @​Kimmmey)
  • fix: issue #4245 UnsupportedOperationException with LexicalPreservingPrinter when removing a sealed modified (PR #4253 by @​jlerbsc)
  • [ci] Fix change log released version as 3.25.7 (PR #4251 by @​hazendaz)
  • Fix: issue 3278 Lazy types cause stack overflow when trying to find the least upper bound type (PR #4246 by @​jlerbsc)

Developer Changes

Uncategorised

  • Revert "Refactoring: Move cache features to javaparser-core" (PR #4274 by @​jlerbsc)

❤️ Contributors

Thank You to all contributors who worked on this release!

Version 3.25.7

issues resolved

Added

  • [GHA] Remove old comment that is no longer valid around jdks and add jdk 17 (PR #4226 by @​hazendaz)
  • Fix: issue 3833 No enum constant com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_18 (PR #4221 by @​jlerbsc)

... (truncated)

Commits
  • d408fc5 [maven-release-plugin] prepare release javaparser-parent-3.25.8
  • 6907316 update readme
  • 13861e4 Update changelog
  • acaf675 chore(deps): update dependency org.assertj:assertj-core to v3.25.0
  • 37b9795 chore(deps): update dependency com.puppycrawl.tools:checkstyle to v10.12.7
  • b6865c5 Updates copyright
  • 609a5ad Merge pull request #4280 from jlerbsc/master
  • ffe024b fix: checkstyle rules
  • 84a4bac fix: Eliminates the use of instanceof in favour of using the API
  • 6d50915 Merge pull request #4279 from jlerbsc/master
  • Additional commits viewable in compare view

Updates com.google.guava:guava from 32.1.3-jre to 33.0.0-jre

Release notes

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

33.0.0

Maven

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

Jar files

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

Javadoc

JDiff

Changelog

  • This version of guava-android contains some package-private methods whose signature includes the Java 8 Collector API. This is a test to identify any problems before we expose those methods publicly to users. Please report any problems that you encounter. (73dbf7ef26)
  • Changed various classes to catch Exception instead of RuntimeException even when only RuntimeException is theoretically possible. This can help code that throws undeclared exceptions, as some bytecode rewriters (e.g., Robolectric) and languages (e.g., Kotlin) do. (c294c23760, 747924e, b2baf48)
  • Added an Automatic-Module-Name to failureaccess, Guava's one strong runtime dependency. (280b5d2f60)
  • reflect: In guava-android only, removed Invokable.getAnnotatedReturnType() and Parameter.getAnnotatedType(). These methods never worked in an Android VM, and to reflect that, they were born @Deprecated, @Beta, and @DoNotCall. They're now preventing us from rolling out some new Android compatibility testing. This is the only binary-incompatible change in this release, and it should have no effect in practice. Still, we bump the major version number to follow Semantic Versioning. (045cd8428f)
  • util.concurrent: Changed our implementations to avoid eagerly initializing loggers during class loading. This can help performance, especially under Android. (4fe1df56bd)
Commits

Updates org.codehaus.plexus:plexus-xml from 3.0.0 to 4.0.3

Release notes

Sourced from org.codehaus.plexus:plexus-xml's releases.

4.0.1

Plexus XML 4.0.2

What's Changed

New Contributors

Full Changelog: codehaus-plexus/plexus-xml@plexus-xml-4.0.1...plexus-xml-4.0.2

4.0.0

Commits
  • 784ff95 [maven-release-plugin] prepare release plexus-xml-4.0.3
  • e6a6427 Upgrade to Maven 4.0.0-alpha-9 (#27)
  • aa82ed3 Update dependencies (#26)
  • 7bfeb09 clarify "Maven 4-specific"
  • 07f6391 explain 3 vs 4
  • bcf34dc describe plexus-xml update to maven-xml-impl
  • 72c06a0 [maven-release-plugin] prepare for next development iteration
  • 944197c [maven-release-plugin] prepare release plexus-xml-4.0.2
  • c3d99b4 Upgrade to 4.0.0-alpha-7 and exclude dependency to sisu (fixes #17) (#23)
  • a83cefa Cleanup after parent pom upgrade
  • Additional commits viewable in compare view

Updates com.puppycrawl.tools:checkstyle from 10.12.4 to 10.12.7

Release notes

Sourced from com.puppycrawl.tools:checkstyle's releases.

checkstyle-10.12.7

Checkstyle 10.12.7 - https://checkstyle.org/releasenotes.html#Release_10.12.7

Bug fixes:

#14068 - False positive in MissingSwitchDefault for switch statement where null label is present #14028 - HiddenField false positive on inner records #3132 - Indentation: split line new array not checked

checkstyle-10.12.6

Checkstyle 10.12.6 - https://checkstyle.org/releasenotes.html#Release_10.12.6

Bug fixes:

#14064 - Regexp: violation pointing to line 0 while other Checks count first line as 1

... (truncated)

Commits
  • b54819d [maven-release-plugin] prepare release checkstyle-10.12.7
  • 496e030 doc: release notes for 10.12.7
  • 6713ae3 Issue #13693: migrate more modules to property macros
  • 45d57f2 Issue #13693: fix wording of property fileExtensions
  • 7e2bcf0 Issue #13693: migrate more Checks to property macros
  • 94e8cf5 dependency: bump org.apache.maven.plugins:maven-jxr-plugin
  • d7f97f3 Issue #13693: migrate regexp checks to property macro
  • aa68921 Issue #13999: Resolve pitest suppression for parseTag() method of TagParser
  • 16afdef dependency: bump org.slf4j:slf4j-simple from 2.0.9 to 2.0.10
  • 9c787da Issue #14137: Disable Error Prone Support checks
  • 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 maven group with 4 updates: [com.github.javaparser:javaparser-core](https://github.com/javaparser/javaparser), [com.google.guava:guava](https://github.com/google/guava), [org.codehaus.plexus:plexus-xml](https://github.com/codehaus-plexus/plexus-xml) and [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle).


Updates `com.github.javaparser:javaparser-core` from 3.25.5 to 3.25.8
- [Release notes](https://github.com/javaparser/javaparser/releases)
- [Changelog](https://github.com/javaparser/javaparser/blob/master/changelog.md)
- [Commits](javaparser/javaparser@javaparser-parent-3.25.5...javaparser-parent-3.25.8)

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

Updates `org.codehaus.plexus:plexus-xml` from 3.0.0 to 4.0.3
- [Release notes](https://github.com/codehaus-plexus/plexus-xml/releases)
- [Commits](codehaus-plexus/plexus-xml@plexus-xml-3.0.0...plexus-xml-4.0.3)

Updates `com.puppycrawl.tools:checkstyle` from 10.12.4 to 10.12.7
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.12.4...checkstyle-10.12.7)

---
updated-dependencies:
- dependency-name: com.github.javaparser:javaparser-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: org.codehaus.plexus:plexus-xml
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 22, 2024
@ctubbsii ctubbsii added this to the 1.10.0 milestone Jan 22, 2024
@ctubbsii ctubbsii merged commit 48577a7 into main Jan 22, 2024
3 checks passed
@dependabot dependabot bot deleted the dependabot/maven/maven-a4179a64cb branch January 22, 2024 18:33
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant