You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [Unreleased]
8
8
9
+
## [3.1.1] - 2025-09-11
10
+
11
+
### Changed
12
+
- Updated documentation to align with Conjur Enterprise name change to Secrets Manager. (CNJR-10972)
13
+
9
14
## [3.1.0] - 2025-03-27
10
15
11
16
### Added
@@ -125,7 +130,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
125
130
- Authn tokens now use the new Conjur 5 format - [PR #21](https://github.com/cyberark/conjur-api-java/pull/21)
126
131
- Configuration change. When using environment variables, use `CONJUR_AUTHN_LOGIN` and `CONJUR_AUTHN_API_KEY` now instead of `CONJUR_CREDENTIALS` - https://github.com/cyberark/conjur-api-java/commit/60344308fc48cb5380c626e612b91e1e720c03fb
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-11Lines changed: 3 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Contributing to the Conjur API for Java
1
+
# Contributing to the Secrets Manager API for Java
2
2
3
3
For general contribution and community guidelines, please see the [community repo](https://github.com/cyberark/community).
4
4
@@ -16,20 +16,12 @@ To work in this codebase, you will need the latest version of the [Java JDK](htt
16
16
### Docker
17
17
This project is container-based and therefore, you will need [Docker](https://hub.docker.com/) in order to make and view your changes.
18
18
19
-
### Access to Conjur Registry (for contributing to testing ONLY)
20
-
To contribute to testing, you will need both the Conjur Open Source and Enterprise. You shouldn't have a problem pulling down the Open Source image, but to pull the Enterprise image, you must be granted access to the Conjur registry.
21
-
22
-
You will want to get in contact with the Infrastructure team via the [CyberArk Commons](https://discuss.cyberarkcommons.org/) to be granted access. If you have been granted access, run: `docker login registry.tld`.
23
-
24
-
_NOTE:_ Your password should be the API key given to you by the Infrastructure team.
25
-
26
-
27
19
## Building and Testing
28
20
Before making changes, it is recommended that the test script is run first to ensure that Java and the provided dependencies are not out-of-date.
29
21
You can run the test script in your shell like so:
30
22
`./test.sh`
31
23
32
-
_NOTE:_ The tests (for both Conjur Open Source and Enterprise) are part of the build so if a change is made to the actual API, but the tests fail, the build will also fail.
24
+
_NOTE:_ The tests (for both Conjur OSS and Secrets Manager, Self-Hosted) are part of the build so if a change is made to the actual API, but the tests fail, the build will also fail.
33
25
34
26
## Troubleshooting Steps
35
27
This section includes helpful troubleshooting hints to help you navigate the codebase and resolve problems that you might be experiencing during development.
@@ -45,7 +37,7 @@ This section includes helpful troubleshooting hints to help you navigate the cod
45
37
To do so:
46
38
1.`docker exec` into the test container and run `keytool -list -keystore $JRE_HOME/lib/security/cacerts -alias <IMPORTED_CERT_ALIAS>`. The alias of the certificate can be found in the test script.
47
39
1. If import was successful, the certificate fingerprint (SHA) should be returned.
48
-
2. Navigate to `https://localhost:<PORT_OF_CONJUR_CONTAINER>` in your browser (make sure the Conjur container is still up and running).
40
+
2. Navigate to `https://localhost:<PORT_OF_CONJUR_CONTAINER>` in your browser (make sure the Conjur OSS container is still up and running).
49
41
1. You can find the exact ports by taking a look at each container's exposed ports in the `docker-compose.yml` file.
50
42
2. You can keep containers up by commenting out the `finish` function in the test script.
51
43
3. For instructions on how to view certificates in browsers, take a look [here](https://www.globalsign.com/en/blog/how-to-view-ssl-certificate-details/).
0 commit comments