New Release - #52
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
lfarrel6
approved these changes
Jul 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
evervault-java@4.3.0
Minor Changes
ded16a9: Upgrade BouncyCastle from
bcprov-jdk15on:1.70tobcprov-jdk18on:1.84topick up outstanding security fixes and move off the unmaintained
jdk15online.
Action required for some consumers. The Maven coordinate changed
(
bcprov-jdk15on→bcprov-jdk18on), but both jars ship classes underidentical
org.bouncycastle.*packages. If your project also pulls inbcprov-jdk15ondirectly or transitively via another dependency, you willend up with both jars on the classpath — build tools don't dedupe across
different artifact ids. Classloader ordering then decides which BC "wins"
at runtime, which can cause subtle crypto failures. Evict any remaining
bcprov-jdk15onfrom your dependency tree (Gradleexclude, Maven<exclusions>), or add an explicit dependency onbcprov-jdk18onat theversion you want.
InvalidCipherExceptiongains a new public constructorInvalidCipherException(Throwable cause)that preserves the underlyingcause. The existing
InvalidCipherException(InvalidCipherTextException)constructor is now
@Deprecatedbecause it leaks BouncyCastle types intothe SDK's public API; it will be removed in the next major release. Switch
any direct construction to the
Throwableoverload.