Skip to content

Commit 63ac2f7

Browse files
authored
[PM-13377] Rename repository (#1191)
Rename repository from sdk to sdk-sm.
1 parent 201a680 commit 63ac2f7

31 files changed

+55
-55
lines changed

.github/workflows/publish-bws.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
id: version-output
4848
run: |
4949
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
50-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("bws")) | .tag_name' | head -1)
50+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("bws")) | .tag_name' | head -1)
5151
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
5252
echo "Latest Released Version: $VERSION"
5353
echo "version=$VERSION" >> $GITHUB_OUTPUT

.github/workflows/publish-dotnet.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: version-output
4545
run: |
4646
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
47-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("dotnet")) | .tag_name' | head -1)
47+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("dotnet")) | .tag_name' | head -1)
4848
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
4949
echo "Latest Released Version: $VERSION"
5050
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
mkdir -p nuget-output
7878
cd nuget-output
79-
wget https://github.com/bitwarden/sdk/releases/download/dotnet-v${{ needs.validate.outputs.version }}/Bitwarden.Sdk.${{ needs.validate.outputs.version }}.nupkg
79+
wget https://github.com/bitwarden/sdk-sm/releases/download/dotnet-v${{ needs.validate.outputs.version }}/Bitwarden.Sdk.${{ needs.validate.outputs.version }}.nupkg
8080
8181
- name: Login to Azure - Prod Subscription
8282
uses: Azure/login@e15b166166a8746d1a47596803bd8c1b595455cf # v1.6.0

.github/workflows/publish-java.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
id: version-output
5151
run: |
5252
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
53-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -rc '.[] | select(.tag_name | contains("java")) | .tag_name' | head -1)
53+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -rc '.[] | select(.tag_name | contains("java")) | .tag_name' | head -1)
5454
VERSION=$(echo $TAG_NAME | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
5555
echo "Latest Released Version: $VERSION"
5656
echo "version=$VERSION" >> $GITHUB_OUTPUT

.github/workflows/publish-napi.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: version-output
4747
run: |
4848
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
49-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("napi")) | .tag_name' | head -1)
49+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("napi")) | .tag_name' | head -1)
5050
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
5151
echo "Latest Released Version: $VERSION"
5252
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Download schemas.ts artifact
9393
run: |
94-
wget https://github.com/bitwarden/sdk/releases/download/napi-v${{ env._PKG_VERSION }}/schemas.ts
94+
wget https://github.com/bitwarden/sdk-sm/releases/download/napi-v${{ env._PKG_VERSION }}/schemas.ts
9595
mv schemas.ts ${{ github.workspace }}/crates/bitwarden-napi/src-ts/bitwarden_client/schemas.ts
9696
9797
- name: Install dependencies
@@ -114,10 +114,10 @@ jobs:
114114

115115
- name: Download sdk-napi artifacts
116116
run: |
117-
wget https://github.com/bitwarden/sdk/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.darwin-arm64.node
118-
wget https://github.com/bitwarden/sdk/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.darwin-x64.node
119-
wget https://github.com/bitwarden/sdk/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.win32-x64-msvc.node
120-
wget https://github.com/bitwarden/sdk/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.linux-x64-gnu.node
117+
wget https://github.com/bitwarden/sdk-sm/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.darwin-arm64.node
118+
wget https://github.com/bitwarden/sdk-sm/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.darwin-x64.node
119+
wget https://github.com/bitwarden/sdk-sm/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.win32-x64-msvc.node
120+
wget https://github.com/bitwarden/sdk-sm/releases/download/napi-v${{ env._PKG_VERSION }}/sdk-napi.linux-x64-gnu.node
121121
mv sdk-napi.*.node ${{ github.workspace }}/crates/bitwarden-napi/artifacts
122122
123123
- name: Move artifacts

.github/workflows/publish-python.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: version-output
4747
run: |
4848
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
49-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("python")) | .tag_name' | head -1)
49+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("python")) | .tag_name' | head -1)
5050
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
5151
echo "Latest Released Version: $VERSION"
5252
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -79,7 +79,7 @@ jobs:
7979
- name: Get release assets
8080
working-directory: ${{ github.workspace }}/target/wheels/dist
8181
run: |
82-
ARTIFACT_URLS=$(curl -sSL https://api.github.com/repos/bitwarden/sdk/releases/tags/${{ needs.setup.outputs.tag_name }} | jq -r '.assets[].browser_download_url')
82+
ARTIFACT_URLS=$(curl -sSL https://api.github.com/repos/bitwarden/sdk-sm/releases/tags/${{ needs.setup.outputs.tag_name }} | jq -r '.assets[].browser_download_url')
8383
for url in $ARTIFACT_URLS; do
8484
wget $url
8585
done

.github/workflows/publish-ruby.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: version-output
4747
run: |
4848
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
49-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("ruby")) | .tag_name' | head -1)
49+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("ruby")) | .tag_name' | head -1)
5050
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
5151
echo "Latest Released Version: $VERSION"
5252
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -95,7 +95,7 @@ jobs:
9595
secrets: "rubygem-api-key"
9696

9797
- name: Download ruby artifact
98-
run: wget https://github.com/bitwarden/sdk/releases/download/ruby-v${{ env._VERSION }}/bitwarden-sdk-secrets-${{ env._VERSION }}.gem
98+
run: wget https://github.com/bitwarden/sdk-sm/releases/download/ruby-v${{ env._VERSION }}/bitwarden-sdk-secrets-${{ env._VERSION }}.gem
9999

100100
- name: Push gem to Rubygems
101101
if: ${{ inputs.release_type != 'Dry Run' }}

.github/workflows/publish-rust-crates.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: version-output
4545
run: |
4646
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
47-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("rust")) | .tag_name' | head -1)
47+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("rust")) | .tag_name' | head -1)
4848
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
4949
echo "Latest Released Version: $VERSION"
5050
echo "version=$VERSION" >> $GITHUB_OUTPUT

.github/workflows/publish-wasm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
id: version-output
4747
run: |
4848
if [[ "${{ inputs.version }}" == "latest" || "${{ inputs.version }}" == "" ]]; then
49-
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk/releases" | jq -c '.[] | select(.tag_name | contains("napi")) | .tag_name' | head -1)
49+
TAG_NAME=$(curl "https://api.github.com/repos/bitwarden/sdk-sm/releases" | jq -c '.[] | select(.tag_name | contains("napi")) | .tag_name' | head -1)
5050
VERSION=$(echo $TAG_NAME | grep -ohE '20[0-9]{2}\.([1-9]|1[0-2])\.[0-9]+')
5151
echo "Latest Released Version: $VERSION"
5252
echo "version=$VERSION" >> $GITHUB_OUTPUT
@@ -91,7 +91,7 @@ jobs:
9191
- name: Download artifact
9292
run: |
9393
cd ${{ github.workspace }}/languages/js/wasm
94-
wget https://github.com/bitwarden/sdk/releases/download/wasm-v${{ env._VERSION }}/sdk-bitwarden-wasm.zip
94+
wget https://github.com/bitwarden/sdk-sm/releases/download/wasm-v${{ env._VERSION }}/sdk-bitwarden-wasm.zip
9595
unzip sdk-bitwarden-wasm.zip
9696
rm sdk-bitwarden-wasm.zip
9797

.github/workflows/version-bump.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6262
with:
6363
ref: main
64-
repository: bitwarden/sdk
64+
repository: bitwarden/sdk-sm
6565

6666
- name: Import GPG key
6767
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6.2.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2021"
1111
# Note: Changing rust-version should be considered a breaking change
1212
rust-version = "1.75"
1313
homepage = "https://bitwarden.com"
14-
repository = "https://github.com/bitwarden/sdk"
14+
repository = "https://github.com/bitwarden/sdk-sm"
1515
license-file = "LICENSE"
1616
keywords = ["bitwarden"]
1717

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

about.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ accepted = [
1111
"OpenSSL",
1212
]
1313

14-
# Ring has all the licenses combined into a single file, which causes cargo about to
14+
# Ring has all the licenses combined into a single file, which causes cargo about to
1515
# be confused about it. Thankfully it includes a workaround for this that we can enable.
1616
workarounds = ["ring"]

crates/bitwarden-napi/npm/darwin-arm64/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

crates/bitwarden-napi/npm/darwin-arm64/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@bitwarden/sdk-napi-darwin-arm64",
33
"version": "1.0.0",
4-
"homepage": "https://github.com/bitwarden/sdk#readme",
4+
"homepage": "https://github.com/bitwarden/sdk-sm#readme",
55
"bugs": {
6-
"url": "https://github.com/bitwarden/sdk/issues"
6+
"url": "https://github.com/bitwarden/sdk-sm/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/bitwarden/sdk.git"
10+
"url": "git+https://github.com/bitwarden/sdk-sm.git"
1111
},
1212
"license": "SEE LICENSE IN LICENSE",
1313
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",

crates/bitwarden-napi/npm/darwin-x64/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

crates/bitwarden-napi/npm/darwin-x64/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@bitwarden/sdk-napi-darwin-x64",
33
"version": "1.0.0",
4-
"homepage": "https://github.com/bitwarden/sdk#readme",
4+
"homepage": "https://github.com/bitwarden/sdk-sm#readme",
55
"bugs": {
6-
"url": "https://github.com/bitwarden/sdk/issues"
6+
"url": "https://github.com/bitwarden/sdk-sm/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/bitwarden/sdk.git"
10+
"url": "git+https://github.com/bitwarden/sdk-sm.git"
1111
},
1212
"license": "SEE LICENSE IN LICENSE",
1313
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",

crates/bitwarden-napi/npm/linux-x64-gnu/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

crates/bitwarden-napi/npm/linux-x64-gnu/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@bitwarden/sdk-napi-linux-x64-gnu",
33
"version": "1.0.0",
4-
"homepage": "https://github.com/bitwarden/sdk#readme",
4+
"homepage": "https://github.com/bitwarden/sdk-sm#readme",
55
"bugs": {
6-
"url": "https://github.com/bitwarden/sdk/issues"
6+
"url": "https://github.com/bitwarden/sdk-sm/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/bitwarden/sdk.git"
10+
"url": "git+https://github.com/bitwarden/sdk-sm.git"
1111
},
1212
"license": "SEE LICENSE IN LICENSE",
1313
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",

crates/bitwarden-napi/npm/win32-x64-msvc/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

crates/bitwarden-napi/npm/win32-x64-msvc/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@bitwarden/sdk-napi-win32-x64-msvc",
33
"version": "1.0.0",
4-
"homepage": "https://github.com/bitwarden/sdk#readme",
4+
"homepage": "https://github.com/bitwarden/sdk-sm#readme",
55
"bugs": {
6-
"url": "https://github.com/bitwarden/sdk/issues"
6+
"url": "https://github.com/bitwarden/sdk-sm/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/bitwarden/sdk.git"
10+
"url": "git+https://github.com/bitwarden/sdk-sm.git"
1111
},
1212
"license": "SEE LICENSE IN LICENSE",
1313
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",

crates/bitwarden-napi/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@bitwarden/sdk-napi",
33
"version": "1.0.0",
4-
"homepage": "https://github.com/bitwarden/sdk#readme",
4+
"homepage": "https://github.com/bitwarden/sdk-sm#readme",
55
"bugs": {
6-
"url": "https://github.com/bitwarden/sdk/issues"
6+
"url": "https://github.com/bitwarden/sdk-sm/issues"
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/bitwarden/sdk.git"
10+
"url": "git+https://github.com/bitwarden/sdk-sm.git"
1111
},
1212
"license": "SEE LICENSE IN LICENSE",
1313
"author": "Bitwarden Inc. <[email protected]> (https://bitwarden.com)",

crates/bws/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ the `bws` binary and the configuration directory (`~/.bws`).
2828

2929
### GitHub Releases (Manual)
3030

31-
Download a pre-built binary from the [Releases](https://github.com/bitwarden/sdk/releases) page.
31+
Download a pre-built binary from the [Releases](https://github.com/bitwarden/sdk-sm/releases) page.
3232

3333
## Usage
3434

crates/bws/scripts/install.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function Test-BwsInstallation {
3232
function Invoke-BwsDownload {
3333
Write-Host "Detected architecture: $arch"
3434

35-
$bwsUrl = "https://github.com/bitwarden/sdk/releases/download/bws-v$bwsVersion/bws-$arch-pc-windows-msvc-$bwsVersion.zip"
35+
$bwsUrl = "https://github.com/bitwarden/sdk-sm/releases/download/bws-v$bwsVersion/bws-$arch-pc-windows-msvc-$bwsVersion.zip"
3636
Write-Host "Downloading bws from: $bwsUrl"
3737
$outputPath = Join-Path $env:TEMP "bws.zip"
3838
Invoke-WebRequest -Uri $bwsUrl -OutFile $outputPath
@@ -43,7 +43,7 @@ function Test-Checksum {
4343
param($zipPath)
4444
Write-Host "Validating checksum..."
4545

46-
$checksumUrl = "https://github.com/bitwarden/sdk/releases/download/bws-v$bwsVersion/bws-sha256-checksums-$bwsVersion.txt"
46+
$checksumUrl = "https://github.com/bitwarden/sdk-sm/releases/download/bws-v$bwsVersion/bws-sha256-checksums-$bwsVersion.txt"
4747
$checksumFile = Join-Path $env:TEMP "bws-checksums.txt"
4848
Invoke-WebRequest -Uri $checksumUrl -OutFile $checksumFile
4949

crates/bws/scripts/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ extract() {
9999
}
100100

101101
download_bws() {
102-
bws_url="https://github.com/bitwarden/sdk/releases/download/bws-v${BWS_VERSION}/bws-${ARCH}-${PLATFORM}-${BWS_VERSION}.zip"
102+
bws_url="https://github.com/bitwarden/sdk-sm/releases/download/bws-v${BWS_VERSION}/bws-${ARCH}-${PLATFORM}-${BWS_VERSION}.zip"
103103
echo "Downloading bws from: $bws_url"
104104
tmp_dir="$(mktemp -d)"
105105
downloader "$bws_url" "$tmp_dir/bws.zip"
106106
}
107107

108108
validate_checksum() {
109-
checksum_url="https://github.com/bitwarden/sdk/releases/download/bws-v${BWS_VERSION}/bws-sha256-checksums-${BWS_VERSION}.txt"
109+
checksum_url="https://github.com/bitwarden/sdk-sm/releases/download/bws-v${BWS_VERSION}/bws-sha256-checksums-${BWS_VERSION}.txt"
110110
echo "Downloading checksum file from: $checksum_url"
111111
checksum_file="$tmp_dir/bws-checksums.txt"
112112
downloader "$checksum_url" "$checksum_file"

languages/cpp/vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bitwarden-sdk-secrets",
33
"version": "0.1.0",
4-
"homepage": "https://github.com/bitwarden/sdk/tree/languages/cpp",
4+
"homepage": "https://github.com/bitwarden/sdk-sm/tree/languages/cpp",
55
"description": "Bitwarden Secrets Manager SDK for C++",
66
"dependencies": [
77
"boost-uuid",

languages/csharp/Bitwarden.Sdk/Bitwarden.Sdk.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Copyright>Bitwarden Inc.</Copyright>
1313
<Product>SDK</Product>
1414

15-
<RepositoryUrl>https://github.com/bitwarden/sdk/tree/main/languages/csharp</RepositoryUrl>
15+
<RepositoryUrl>https://github.com/bitwarden/sdk-sm/tree/main/languages/csharp</RepositoryUrl>
1616
<RepositoryType>Git</RepositoryType>
1717

1818
<PackageProjectUrl>https://bitwarden.com/products/secrets-manager/</PackageProjectUrl>

languages/csharp/LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Version 1, 17 March 2023
55

66
1.1 The Bitwarden Software Development Kit (referred to in the License Agreement
77
as the "SDK" and available for download at the following URL
8-
https://github.com/bitwarden/sdk) is licensed to you subject to the terms of
8+
https://github.com/bitwarden/sdk-sm) is licensed to you subject to the terms of
99
this License Agreement. The License Agreement forms a legally binding contract
1010
between you and the Company in relation to your use of the SDK.
1111

languages/java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ repositories {
4444
repositories {
4545
maven {
4646
name = "GitHubPackages"
47-
url = "https://maven.pkg.github.com/bitwarden/sdk"
47+
url = "https://maven.pkg.github.com/bitwarden/sdk-sm"
4848
credentials {
4949
username = System.getenv("GITHUB_ACTOR")
5050
password = System.getenv("GITHUB_TOKEN")

languages/php/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "PHP bindings for interacting with the Bitwarden Secrets Manager. This is a beta release and might be missing some functionality.",
44
"type": "library",
55
"keywords": ["bitwarden","sdk","password-manager"],
6-
"homepage": "https://github.com/bitwarden/sdk",
6+
"homepage": "https://github.com/bitwarden/sdk-sm",
77
"version": "1.0.0",
88
"require": {
99
"php": "^8.0",

0 commit comments

Comments
 (0)