Skip to content

Commit 242b47c

Browse files
authored
fix: CI secrets and renamed old links to new under the new organization hyperledger identus (#201)
Signed-off-by: Yurii Shynbuiev <[email protected]>
1 parent 16c7238 commit 242b47c

12 files changed

+69
-54
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @hyperledger/identus-maintainers
1+
* @hyperledger-identus/identus-maintainers

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Summarize the changes you're submitting in a few sentences, including Jira ticke
55
Link to existing ADR (Architecture Decision Record), if any. If relevant, describe other approaches explored and the selected approach. Documenting why the methods were not selected will create a knowledge base for future reference, helping prevent others from revisiting less optimal ideas.
66

77
### Checklist:
8-
- [ ] My PR follows the [contribution guidelines](https://github.com/hyperledger/identus-apollo/blob/main/CONTRIBUTING.md) of this project
8+
- [ ] My PR follows the [contribution guidelines](https://github.com/hyperledger-identus/apollo/blob/main/CONTRIBUTING.md) of this project
99
- [ ] My PR is free of third-party dependencies that don't comply with the [Allowlist](https://toc.hyperledger.org/governing-documents/allowed-third-party-license-policy.html#approved-licenses-for-allowlist)
1010
- [ ] I have commented my code, particularly in hard-to-understand areas
1111
- [ ] I have made corresponding changes to the documentation

.github/workflows/pull-request.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ on:
1919
pull_request:
2020
workflow_dispatch:
2121

22+
permissions:
23+
contents: write
24+
pull-requests: write
25+
2226
jobs:
2327
build:
2428
strategy:
@@ -34,9 +38,9 @@ jobs:
3438
- name: Check Nexus access
3539
env:
3640
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
37-
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
41+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
3842
run: |
39-
curl -u $OSSRH_USERNAME:$OSSRH_TOKEN https://oss.sonatype.org/service/local/repositories/releases/content/
43+
curl -u $OSSRH_USERNAME:$OSSRH_PASSWORD https://oss.sonatype.org/service/local/repositories/releases/content/
4044
4145
- name: "Validate Gradle Wrapper"
4246
run: pwd

.github/workflows/release.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ env:
1818
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
1919
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2020
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
21-
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
22-
OSSRH_GPG_SECRET_KEY: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
23-
OSSRH_GPG_SECRET_KEY_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
21+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
22+
OSSRH_GPG_SECRET_KEY: ${{ secrets.HYP_BOT_GPG_PRIVATE }}
23+
OSSRH_GPG_SECRET_KEY_PASSWORD: ${{ secrets.HYP_BOT_GPG_PASSWORD }}
2424

2525
on:
2626
workflow_dispatch:
@@ -49,8 +49,6 @@ jobs:
4949
server-id: ossrh
5050
server-username: ${{ secrets.OSSRH_USERNAME }}
5151
server-password: ${{ secrets.OSSRH_PASSWORD }}
52-
gpg-private-key: ${{ secrets.HYP_BOT_GPG_PRIVATE }}
53-
gpg-passphrase: ${{ secrets.HYP_BOT_GPG_PASSWORD }}
5452

5553
- name: "Install Homebrew"
5654
run: >
@@ -132,9 +130,9 @@ jobs:
132130
GIT_AUTHOR_NAME: ${{ steps.import_gpg.outputs.name }}
133131
GIT_COMMITTER_NAME: ${{ steps.import_gpg.outputs.name }}
134132
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
135-
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
136-
OSSRH_GPG_SECRET_KEY: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
137-
OSSRH_GPG_SECRET_KEY_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
133+
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
134+
OSSRH_GPG_SECRET_KEY: ${{ secrets.HYP_BOT_GPG_PRIVATE }}
135+
OSSRH_GPG_SECRET_KEY_PASSWORD: ${{ secrets.HYP_BOT_GPG_PASSWORD }}
138136
run: |
139137
npm install
140138
npx semantic-release

CHANGELOG.md

+33-33
Original file line numberDiff line numberDiff line change
@@ -1,115 +1,115 @@
1-
## [1.4.5](https://github.com/hyperledger/identus-apollo/compare/v1.4.4...v1.4.5) (2025-01-31)
1+
## [1.4.5](https://github.com/hyperledger-identus/apollo/compare/v1.4.4...v1.4.5) (2025-01-31)
22

33

44
### Bug Fixes
55

6-
* upgrade apollo to 6.6.1 ([#198](https://github.com/hyperledger/identus-apollo/issues/198)) ([9abc11d](https://github.com/hyperledger/identus-apollo/commit/9abc11df066181a787d94f02500c4b7475d00a87))
6+
* upgrade apollo to 6.6.1 ([#198](https://github.com/hyperledger-identus/apollo/issues/198)) ([9abc11d](https://github.com/hyperledger-identus/apollo/commit/9abc11df066181a787d94f02500c4b7475d00a87))
77

8-
## [1.4.4](https://github.com/hyperledger/identus-apollo/compare/v1.4.3...v1.4.4) (2024-10-23)
8+
## [1.4.4](https://github.com/hyperledger-identus/apollo/compare/v1.4.3...v1.4.4) (2024-10-23)
99

1010

1111
### Bug Fixes
1212

13-
* make fixes to ed25519 sign method + improve tests ([#195](https://github.com/hyperledger/identus-apollo/issues/195)) ([354c9bd](https://github.com/hyperledger/identus-apollo/commit/354c9bdd12027a16fe598dfab187153dd465cd23))
13+
* make fixes to ed25519 sign method + improve tests ([#195](https://github.com/hyperledger-identus/apollo/issues/195)) ([354c9bd](https://github.com/hyperledger-identus/apollo/commit/354c9bdd12027a16fe598dfab187153dd465cd23))
1414

15-
## [1.4.3](https://github.com/hyperledger/identus-apollo/compare/v1.4.2...v1.4.3) (2024-08-26)
15+
## [1.4.3](https://github.com/hyperledger-identus/apollo/compare/v1.4.2...v1.4.3) (2024-08-26)
1616

1717

1818
### Bug Fixes
1919

20-
* upgrade elliptic dependency ([#191](https://github.com/hyperledger/identus-apollo/issues/191)) ([9ecdbdd](https://github.com/hyperledger/identus-apollo/commit/9ecdbdd9b942ffbdb837c1ffc42ddb793b178461))
20+
* upgrade elliptic dependency ([#191](https://github.com/hyperledger-identus/apollo/issues/191)) ([9ecdbdd](https://github.com/hyperledger-identus/apollo/commit/9ecdbdd9b942ffbdb837c1ffc42ddb793b178461))
2121

22-
## [1.4.2](https://github.com/hyperledger/identus-apollo/compare/v1.4.1...v1.4.2) (2024-08-07)
22+
## [1.4.2](https://github.com/hyperledger-identus/apollo/compare/v1.4.1...v1.4.2) (2024-08-07)
2323

2424

2525
### Bug Fixes
2626

27-
* publish to OSSHR repository ([#188](https://github.com/hyperledger/identus-apollo/issues/188)) ([8f98b5a](https://github.com/hyperledger/identus-apollo/commit/8f98b5ae7d106ac7a977f3676492c7c2ee0e73e9))
27+
* publish to OSSHR repository ([#188](https://github.com/hyperledger-identus/apollo/issues/188)) ([8f98b5a](https://github.com/hyperledger-identus/apollo/commit/8f98b5ae7d106ac7a977f3676492c7c2ee0e73e9))
2828

29-
## [1.4.1](https://github.com/hyperledger/identus-apollo/compare/v1.4.0...v1.4.1) (2024-08-05)
29+
## [1.4.1](https://github.com/hyperledger-identus/apollo/compare/v1.4.0...v1.4.1) (2024-08-05)
3030

3131

3232
### Bug Fixes
3333

34-
* change oss publishing url according to the documentation ([#187](https://github.com/hyperledger/identus-apollo/issues/187)) ([f1dea5b](https://github.com/hyperledger/identus-apollo/commit/f1dea5bc1c19e5eaa0d4aba560dd8c46ee4962e6))
34+
* change oss publishing url according to the documentation ([#187](https://github.com/hyperledger-identus/apollo/issues/187)) ([f1dea5b](https://github.com/hyperledger-identus/apollo/commit/f1dea5bc1c19e5eaa0d4aba560dd8c46ee4962e6))
3535

36-
# [1.4.0](https://github.com/hyperledger/identus-apollo/compare/v1.3.24...v1.4.0) (2024-08-02)
36+
# [1.4.0](https://github.com/hyperledger-identus/apollo/compare/v1.3.24...v1.4.0) (2024-08-02)
3737

3838

3939
### Features
4040

41-
* almost empty commit to test the release ([#186](https://github.com/hyperledger/identus-apollo/issues/186)) ([89b28a9](https://github.com/hyperledger/identus-apollo/commit/89b28a98e0fa82c5e935138c40024857101bbb4f))
41+
* almost empty commit to test the release ([#186](https://github.com/hyperledger-identus/apollo/issues/186)) ([89b28a9](https://github.com/hyperledger-identus/apollo/commit/89b28a98e0fa82c5e935138c40024857101bbb4f))
4242

43-
## [1.3.24](https://github.com/hyperledger/identus-apollo/compare/v1.3.23...v1.3.24) (2024-07-19)
43+
## [1.3.24](https://github.com/hyperledger-identus/apollo/compare/v1.3.23...v1.3.24) (2024-07-19)
4444

4545

4646
### Bug Fixes
4747

48-
* apply github env vars ([a5f674a](https://github.com/hyperledger/identus-apollo/commit/a5f674ac365cdabd67abd144894cbbb32fc7ffa2))
48+
* apply github env vars ([a5f674a](https://github.com/hyperledger-identus/apollo/commit/a5f674ac365cdabd67abd144894cbbb32fc7ffa2))
4949

50-
## [1.3.21](https://github.com/hyperledger/identus-apollo/compare/v1.3.20...v1.3.21) (2024-07-12)
50+
## [1.3.21](https://github.com/hyperledger-identus/apollo/compare/v1.3.20...v1.3.21) (2024-07-12)
5151

5252

5353
### Bug Fixes
5454

55-
* force adding ossrh env vars for maven ([24683fc](https://github.com/hyperledger/identus-apollo/commit/24683fc064f6ef27944dac16a7326cb27ca731c8))
55+
* force adding ossrh env vars for maven ([24683fc](https://github.com/hyperledger-identus/apollo/commit/24683fc064f6ef27944dac16a7326cb27ca731c8))
5656

57-
## [1.3.20](https://github.com/hyperledger/identus-apollo/compare/v1.3.19...v1.3.20) (2024-07-12)
57+
## [1.3.20](https://github.com/hyperledger-identus/apollo/compare/v1.3.19...v1.3.20) (2024-07-12)
5858

5959

6060
### Bug Fixes
6161

62-
* revert import action version ([c4bd736](https://github.com/hyperledger/identus-apollo/commit/c4bd7367c8c51c3266f298ef1c23cb99e05c296d))
63-
* Update to node20 actions ([#184](https://github.com/hyperledger/identus-apollo/issues/184)) ([0e38317](https://github.com/hyperledger/identus-apollo/commit/0e38317f22c239df10a87797895303f1f18019b1))
62+
* revert import action version ([c4bd736](https://github.com/hyperledger-identus/apollo/commit/c4bd7367c8c51c3266f298ef1c23cb99e05c296d))
63+
* Update to node20 actions ([#184](https://github.com/hyperledger-identus/apollo/issues/184)) ([0e38317](https://github.com/hyperledger-identus/apollo/commit/0e38317f22c239df10a87797895303f1f18019b1))
6464

65-
## [1.3.19](https://github.com/hyperledger/identus-apollo/compare/v1.3.18...v1.3.19) (2024-07-12)
65+
## [1.3.19](https://github.com/hyperledger-identus/apollo/compare/v1.3.18...v1.3.19) (2024-07-12)
6666

6767

6868
### Bug Fixes
6969

70-
* improve env vars for ci pipeline in hl ([9170629](https://github.com/hyperledger/identus-apollo/commit/91706297c20ffc6e9709add1a7da4cf4bd5474ad))
70+
* improve env vars for ci pipeline in hl ([9170629](https://github.com/hyperledger-identus/apollo/commit/91706297c20ffc6e9709add1a7da4cf4bd5474ad))
7171

72-
## [1.3.18](https://github.com/hyperledger/identus-apollo/compare/v1.3.17...v1.3.18) (2024-07-11)
72+
## [1.3.18](https://github.com/hyperledger-identus/apollo/compare/v1.3.17...v1.3.18) (2024-07-11)
7373

7474

7575
### Bug Fixes
7676

77-
* ossrh env variables on CI ([d324f12](https://github.com/hyperledger/identus-apollo/commit/d324f123ce82c708da778cd7f8b6e5219288057b))
77+
* ossrh env variables on CI ([d324f12](https://github.com/hyperledger-identus/apollo/commit/d324f123ce82c708da778cd7f8b6e5219288057b))
7878

79-
## [1.3.17](https://github.com/hyperledger/identus-apollo/compare/v1.3.16...v1.3.17) (2024-07-11)
79+
## [1.3.17](https://github.com/hyperledger-identus/apollo/compare/v1.3.16...v1.3.17) (2024-07-11)
8080

8181

8282
### Bug Fixes
8383

84-
* sonatype configuration ([5c13b1d](https://github.com/hyperledger/identus-apollo/commit/5c13b1dc5456583d25f76a21119f1e11a437a6f5))
84+
* sonatype configuration ([5c13b1d](https://github.com/hyperledger-identus/apollo/commit/5c13b1dc5456583d25f76a21119f1e11a437a6f5))
8585

86-
## [1.3.16](https://github.com/hyperledger/identus-apollo/compare/v1.3.15...v1.3.16) (2024-07-11)
86+
## [1.3.16](https://github.com/hyperledger-identus/apollo/compare/v1.3.15...v1.3.16) (2024-07-11)
8787

8888

8989
### Bug Fixes
9090

91-
* correct some typos in android build for apollo ([d8a0b0a](https://github.com/hyperledger/identus-apollo/commit/d8a0b0a2f8486b27468481e9790a606369d88a05))
91+
* correct some typos in android build for apollo ([d8a0b0a](https://github.com/hyperledger-identus/apollo/commit/d8a0b0a2f8486b27468481e9790a606369d88a05))
9292

93-
## [1.3.15](https://github.com/hyperledger/identus-apollo/compare/v1.3.14...v1.3.15) (2024-07-11)
93+
## [1.3.15](https://github.com/hyperledger-identus/apollo/compare/v1.3.14...v1.3.15) (2024-07-11)
9494

9595

9696
### Bug Fixes
9797

98-
* add correct signing keys for maven package in HL ([d560f5a](https://github.com/hyperledger/identus-apollo/commit/d560f5a548a13e7882681b826db86e967c553b90))
98+
* add correct signing keys for maven package in HL ([d560f5a](https://github.com/hyperledger-identus/apollo/commit/d560f5a548a13e7882681b826db86e967c553b90))
9999

100-
## [1.3.14](https://github.com/hyperledger/identus-apollo/compare/v1.3.13...v1.3.14) (2024-07-11)
100+
## [1.3.14](https://github.com/hyperledger-identus/apollo/compare/v1.3.13...v1.3.14) (2024-07-11)
101101

102102

103103
### Bug Fixes
104104

105-
* set right sonatype authentication ([5183580](https://github.com/hyperledger/identus-apollo/commit/518358093ce69044b6855f2ab8cc9e3c17c7e6b3))
105+
* set right sonatype authentication ([5183580](https://github.com/hyperledger-identus/apollo/commit/518358093ce69044b6855f2ab8cc9e3c17c7e6b3))
106106

107-
## [1.3.13](https://github.com/hyperledger/identus-apollo/compare/v1.3.12...v1.3.13) (2024-07-11)
107+
## [1.3.13](https://github.com/hyperledger-identus/apollo/compare/v1.3.12...v1.3.13) (2024-07-11)
108108

109109

110110
### Bug Fixes
111111

112-
* checkout also must use identus_ci token ([870b321](https://github.com/hyperledger/identus-apollo/commit/870b321bb9125d1f8878060f9c1fac65dc68b7c5))
112+
* checkout also must use identus_ci token ([870b321](https://github.com/hyperledger-identus/apollo/commit/870b321bb9125d1f8878060f9c1fac65dc68b7c5))
113113

114114
## [1.3.5](https://github.com/input-output-hk/atala-prism-apollo/compare/v1.3.4...v1.3.5) (2024-06-10)
115115

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let package = Package(
2424
// RELEASE
2525
.binaryTarget(
2626
name: "ApolloBinary",
27-
url: "https://github.com/hyperledger/identus-apollo/releases/download/v1.4.5/Apollo.xcframework.zip",
27+
url: "https://github.com/hyperledger-identus/apollo/releases/download/v1.4.5/Apollo.xcframework.zip",
2828
checksum: "7097ff98030af857718d34d021d813a3d7e19e5566fe84a0ea1556ed5ba033ed"
2929
)
3030
]

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ $ export ANDROID_HOME='/Users/{{YOUR USER}}/Library/Android/sdk
103103
104104
### Building the project
105105
106+
Install Rust packages:
107+
```bash
108+
$ ./scripts/install-rust-packages.sh
109+
```
110+
106111
You should be able to import and build the project in IntelliJ IDEA now.
107112
108113
#### Troubleshooting
@@ -178,7 +183,7 @@ dependencies: [
178183
### Using generated xcframework directly
179184
180185
The following instruction using Xcode 15
181-
1. Go the [Release Page](https://github.com/hyperledger/identus-apollo/releases) and check the latest version and download the `Apollo.xcframework.zip` file.
186+
1. Go the [Release Page](https://github.com/hyperledger-identus/apollo/releases) and check the latest version and download the `Apollo.xcframework.zip` file.
182187
2. Uncompress the downloaded file.
183188
3. Add the `Apollo.xcframework` to your Xcode project.
184189
4. When asked select Copy items if needed.

apollo/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ tasks.withType<DokkaTask>().configureEach {
777777
)
778778
sourceLink {
779779
localDirectory.set(projectDir.resolve("src"))
780-
remoteUrl.set(URL("https://github.com/hyperledger/identus-apollo/tree/main/src"))
780+
remoteUrl.set(URL("https://github.com/hyperledger-identus/apollo/tree/main/src"))
781781
remoteLineSuffix.set("#L")
782782
}
783783
externalDocumentationLink {
@@ -823,7 +823,7 @@ npmPublish {
823823
}
824824
repository {
825825
type.set("git")
826-
url.set("https://github.com/hyperledger/identus-apollo")
826+
url.set("https://github.com/hyperledger-identus/apollo")
827827
}
828828
}
829829
}

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ nexusPublishing {
174174
nexusUrl.set(uri("https://oss.sonatype.org/service/local/"))
175175
snapshotRepositoryUrl.set(uri("https://oss.sonatype.org/content/repositories/releases/"))
176176
username.set(System.getenv("OSSRH_USERNAME"))
177-
password.set(System.getenv("OSSRH_TOKEN"))
177+
password.set(System.getenv("OSSRH_PASSWORD"))
178178
}
179179
}
180180
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
},
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/hyperledger/identus-apollo.git"
10+
"url": "https://github.com/hyperledger-identus/apollo.git"
1111
},
1212
"author": "IOG",
1313
"license": "ISC",
1414
"bugs": {
15-
"url": "https://github.com/hyperledger/identus-apollo/issues"
15+
"url": "https://github.com/hyperledger-identus/apollo/issues"
1616
},
17-
"homepage": "https://github.com/hyperledger/identus-apollo#readme",
17+
"homepage": "https://github.com/hyperledger-identus/apollo#readme",
1818
"devDependencies": {
1919
"@semantic-release/changelog": "^6.0.2",
2020
"@semantic-release/exec": "^6.0.3",

scripts/install-rust-packages.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
rustup target add armv7-linux-androideabi
2+
rustup target add i686-linux-android
3+
rustup target add aarch64-linux-android
4+
rustup target add x86_64-linux-android
5+
rustup target add aarch64-apple-darwin
6+
rustup target add x86_64-apple-darwin
7+
rustup target add aarch64-unknown-linux-gnu
8+
rustup target add x86_64-unknown-linux-gnu

secp256k1-kmp/native/secp256k1

Submodule secp256k1 updated 102 files

0 commit comments

Comments
 (0)