Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .changeset/true-moose-pick.md

This file was deleted.

26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# evervault-java

## 4.3.0

### Minor Changes

- ded16a9: Upgrade BouncyCastle from `bcprov-jdk15on:1.70` to `bcprov-jdk18on:1.84` to
pick up outstanding security fixes and move off the unmaintained `jdk15on`
line.

**Action required for some consumers.** The Maven coordinate changed
(`bcprov-jdk15on` → `bcprov-jdk18on`), but both jars ship classes under
identical `org.bouncycastle.*` packages. If your project also pulls in
`bcprov-jdk15on` directly or transitively via another dependency, you will
end 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-jdk15on` from your dependency tree (Gradle `exclude`, Maven
`<exclusions>`), or add an explicit dependency on `bcprov-jdk18on` at the
version you want.

`InvalidCipherException` gains a new public constructor
`InvalidCipherException(Throwable cause)` that preserves the underlying
cause. The existing `InvalidCipherException(InvalidCipherTextException)`
constructor is now `@Deprecated` because it leaks BouncyCastle types into
the SDK's public API; it will be removed in the next major release. Switch
any direct construction to the `Throwable` overload.

## 4.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.evervault'
version '4.2.0'
version '4.3.0'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "evervault-java",
"private": true,
"version": "4.2.0",
"version": "4.3.0",
"scripts": {
"version": "changeset version && PACKAGE_VERSION=$(node -p \"require('./package.json').version\") && sed -i \"s/version '.*'/version '$PACKAGE_VERSION'/g\" lib/build.gradle"
},
Expand Down
Loading