Skip to content

Conversation

@dependabot-preview
Copy link
Contributor

Bumps classgraph from 4.8.47 to 4.8.77.

Release notes

Sourced from classgraph's releases.

classgraph-4.8.77

Windows compatibility fixes.

classgraph-4.8.76

Allow the use of non-root (i.e. non-/) package roots (e.g. classes/) in custom filesystems like Jimfs (#420).

If you use Windows, use 4.8.77 instead, since some further Windows compatibility fixes were needed.

classgraph-4.8.75

Added support for scanning Path objects in custom filesystems, whether they are directories or files. Therefore you can now specify the URL path of a directory, even for custom URL schemes like jimfs:https://github.com/google/jimfs), and the recursive scanner will use the Path API rather than the File API. If you specify the URL path of a jarfile, it will be opened using FileChannel. If a custom URI scheme is not backed by an underlying FileSystem implementation, then URL.openConnection() is used instead. (#420, thanks to @oliviercailloux for the feature request.)

classgraph-4.8.74

Added an optimization for custom filesystems, which checks classpath URLs to see if the URL is backed by a filesystem. If so, ClassGraph uses the FileChannel API to access the URL, rather than opening a connection to the URL, avoiding an extra copy. (#400, #420)

classgraph-4.8.73

Fixes a bug where ClassGraph assumed that custom URLs would only ever be followed by a single slash. Jimfs requires a double slash. (#420, thanks to @oliviercailloux for reporting.)

classgraph-4.8.72

Fix a memory leak issue, where static instances of BaseTypeSignature for the primitive types would inadvertently hold a reference to the ScanResult of the most recent scan, even after the ScanResult was closed, preventing garbage collection from collecting the ScanResult and its linked objects. (#419, thanks to @protogene for reporting.)

classgraph-4.8.71

  • Exposes the class file major and minor version number in ClassInfo (#418, thanks to @adelel1 for requesting). Adds the methods:
    • ClassInfo#getClassfileMinorVersion()
    • ClassInfo#getClassfileMajorVersion()
  • Ignores any classfile other than module-info.class in the default (empty) package, if a classpath element is a modular jar, when running under JDK 9+. (This is because JPMS doesn't allow classes to be in the default package in modules -- #417.)

classgraph-4.8.70

Fixes #417, a regression introduced in 4.8.66, in which the manifest file was not being added as the first or second entry in the jar, which is required by JDK jar processing logic. This stops the jar from being able to be read as a (non-automatic) module. Thanks to @blackdrag for reporting.

classgraph-4.8.69

Fixes "ClassGraph on Open Liberty doesn't find any classes from the application" (#414), for the Websphere Liberty / Open Liberty classloader in overlay mode (previously it only worked in war mode). Thanks to @michael-simons for reporting, and @cpierceworld for providing the fix.

classgraph-4.8.68

Fix "overrideClassLoaders(AppClassLoader) not no-op with Java 11" (#412, thanks to @chrisr3 for reporting).

classgraph-4.8.67

Fix "ClassGraph doesn't scan Application ClassLoader when provided as override on JDK11" (#411, thanks to @chrisr3 for reporting).

classgraph-4.8.66

  • Added support for the Quarkus RuntimeClassLoader (#405, thanks to @mcollovati for the contribution!).
  • Important bugfix: Fix buffer underflow issue with some large classes (#407, thanks to @enragedginger for the bug report and detective work).
  • Made dependence on jdk.internal.misc, sun.misc and sun.nio.ch optional for OSGi projects (#408, #409 -- thanks to @skahmann for the contribution)
  • Added support for the new record types -- currently only enabled in JDK 14 in preview mode.
    • ClassInfo#isRecord()
    • ClassInfoList#getRecords()
    • ScanResult#getAllRecords()

classgraph-4.8.65

Removed a hard runtime startup dependency on java.lang.management.ManagementFactory, so that ClassGraph does not fail on runtimes that do not include the java.management module or the java.lang.management package (e.g. the Android build system). (#404, thanks to @CreeJee for reporting.)

... (truncated)
Commits
  • ffa38a1 [maven-release-plugin] prepare release classgraph-4.8.77
  • e346bf2 Drop version number back down
  • e7c978e Windows compatibility fixes
  • 29fccf6 [maven-release-plugin] prepare for next development iteration
  • ade0a01 [maven-release-plugin] prepare release classgraph-4.8.77
  • b0f3480 Add serialVersionUID
  • 7dde56a Windows compatibility fixes (#420)
  • 209a976 Improve logging
  • be05dcf [maven-release-plugin] prepare for next development iteration
  • 26c3d77 [maven-release-plugin] prepare release classgraph-4.8.76
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Bumps [classgraph](https://github.com/classgraph/classgraph) from 4.8.47 to 4.8.77.
- [Release notes](https://github.com/classgraph/classgraph/releases)
- [Commits](classgraph/classgraph@classgraph-4.8.47...classgraph-4.8.77)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Apr 27, 2020
@dependabot-preview
Copy link
Contributor Author

Superseded by #70.

@dependabot-preview dependabot-preview bot deleted the dependabot/gradle/io.github.classgraph-classgraph-4.8.77 branch May 4, 2020 06:13
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