Releases: cyberark/conjur-api-java
Releases · cyberark/conjur-api-java
v3.0.4.1
[3.0.4.1] - 2024-09-13
Fixed
- Fix dependency information stripped from non-shaded jar
cyberark/conjur-api-java#119
Security
- Update nginx to 1.24 in Dockerfile.nginx
cyberark/conjur-api-java#118
Changed
- Avoid calling
login
for host
cyberark/conjur-api-java#117
v3.0.5
3.0.5 - 2023-06-09
Fixed
- Fix dependency information stripped from non-shaded jar
cyberark/conjur-api-java#119
Security
- Update nginx to 1.24 in Dockerfile.nginx
cyberark/conjur-api-java#118
Changed
- Migrate JAX-RS to latest Jakarta version
cyberark/conjur-api-java#119 - Avoid calling
login
for host
cyberark/conjur-api-java#117
v3.0.4
3.0.4 - 2023-02-27
Security
- Update Dockerfile base images, bump Apache cxf to 3.5.5
cyberark/conjur-api-java#113
v3.0.3
3.0.3 - 2022-05-31
Security
- Upgraded OpenJDK Dockerfile base image to
17-jdk-bullseye
.
cyberark/conjur-api-java#107 - Upgraded nginx Dockerfile base image to fix CVE-2022-0778 and CVE-2022-1292.
cyberark/conjur-api-java#111
v3.0.2
[3.0.2] - 2020-10-28
Fixed
- Multiple unused transitive dependencies, such as
exec-maven-plugin
, were removed.
cyberark/conjur-api-java#93
v3.0.1
[3.0.1] - 2020-06-23
Added
- Additional information was added to the
pom.xml
to meet Maven Central
publishing requirements for this project.
v3.0.0
[3.0.0] - 2020-06-22
Fixed
- Encode spaces to "%20" instead of "+". This encoding fixes an issue where Conjur
variables that have spaces were not encoded correctly
(https://github.com/cyberark/conjur-api-java#78)
Added
- Implemented #74
- Updated code to enable adding custom javax.net.ssl.SSLContext to Conjur which
enables us to set up a trust between application and Conjur server from Java
code - README has been updated with example SSLContext setup and it's use in Conjur
class constructors - Introduced upgrade instructions to provide instructions for
upgrading to 3.0.0, or make use of published artifacts. These can be found in
UPGRADING.md
. (cyberark/conjur-api-java#77)
Changed
- Revised package references from
net.conjur.api
tocom.cyberark.conjur.api
(cyberark/conjur-api-java#6)
v2.2.1
v2.2.0
Change log
Added
- Enabled supplying alternative authentication URLs when instantiating the client,
which allows clients to use alternative Conjur authentication methods such as
authn-iam and authn-oidc. (cyberark/conjur-api-java#40) - Maven pom.xml file includes fat jar creation to allow easy incorporation of
this client (PR cyberark/conjur-api-java#47)
Fixed
- Updated code so that properties will be retrieved from system properties, and
if not found will then be retrieved from environment variables. (cyberark/conjur-api-java#17) - If a mandatory property (
CONJUR_ACCOUNT
,CONJUR_APPLIANCE_URL
) is not provided
a more verbose exception message will be thrown instead of aNullPointerException
.
(cyberark/conjur-api-java#41) - Improved error handling for missing / undefined env properties that are
mandatory for proper system functioning.
(PR cyberark/conjur-api-java#47)