Skip to content

Commit 97d9afb

Browse files
committed
BRE-1355 - Rename Bitwarden Unified to Bitwarden Lite (#6592)
(cherry picked from commit 2b926ef)
1 parent cc0d9cf commit 97d9afb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: Bitwarden Unified Deployment Bug Report
1+
name: Bitwarden Lite Deployment Bug Report
22
description: File a bug report
3-
labels: [bug, bw-unified-deploy]
3+
labels: [bug, bw-lite-deploy]
44
body:
55
- type: markdown
66
attributes:
@@ -74,7 +74,7 @@ body:
7474
id: epic-label
7575
attributes:
7676
label: Issue-Link
77-
description: Link to our pinned issue, tracking all Bitwarden Unified
77+
description: Link to our pinned issue, tracking all Bitwarden Lite
7878
value: |
7979
https://github.com/bitwarden/server/issues/2480
8080
validations:

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,15 +490,15 @@ jobs:
490490
- name: Log out from Azure
491491
uses: bitwarden/gh-actions/azure-logout@main
492492

493-
- name: Trigger self-host build
493+
- name: Trigger Bitwarden Lite build
494494
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
495495
with:
496496
github-token: ${{ steps.retrieve-secret-pat.outputs.github-pat-bitwarden-devops-bot-repo-scope }}
497497
script: |
498498
await github.rest.actions.createWorkflowDispatch({
499499
owner: 'bitwarden',
500500
repo: 'self-host',
501-
workflow_id: 'build-unified.yml',
501+
workflow_id: 'build-bitwarden-lite.yml',
502502
ref: 'main',
503503
inputs: {
504504
server_branch: process.env.GITHUB_REF

.github/workflows/test-database.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
docker compose --profile mssql --profile postgres --profile mysql up -d
6363
shell: pwsh
6464

65-
- name: Add MariaDB for unified
65+
- name: Add MariaDB for Bitwarden Lite
6666
# Use a different port than MySQL
6767
run: |
6868
docker run --detach --name mariadb --env MARIADB_ROOT_PASSWORD=mariadb-password -p 4306:3306 mariadb:10
@@ -133,7 +133,7 @@ jobs:
133133
# Default Sqlite
134134
BW_TEST_DATABASES__3__TYPE: "Sqlite"
135135
BW_TEST_DATABASES__3__CONNECTIONSTRING: "Data Source=${{ runner.temp }}/test.db"
136-
# Unified MariaDB
136+
# Bitwarden Lite MariaDB
137137
BW_TEST_DATABASES__4__TYPE: "MySql"
138138
BW_TEST_DATABASES__4__CONNECTIONSTRING: "server=localhost;port=4306;uid=root;pwd=mariadb-password;database=vault_dev;Allow User Variables=true"
139139
run: dotnet test --logger "trx;LogFileName=infrastructure-test-results.trx" /p:CoverletOutputFormatter="cobertura" --collect:"XPlat Code Coverage"

src/Core/Settings/GlobalSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public GlobalSettings()
2121
}
2222

2323
public bool SelfHosted { get; set; }
24-
public bool UnifiedDeployment { get; set; }
24+
public bool LiteDeployment { get; set; }
2525
public virtual string KnownProxies { get; set; }
2626
public virtual string SiteName { get; set; }
2727
public virtual string ProjectName { get; set; }

src/Core/Settings/IGlobalSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public interface IGlobalSettings
66
{
77
// This interface exists for testing. Add settings here as needed for testing
88
bool SelfHosted { get; set; }
9-
bool UnifiedDeployment { get; set; }
9+
bool LiteDeployment { get; set; }
1010
string KnownProxies { get; set; }
1111
string ProjectName { get; set; }
1212
bool EnableCloudCommunication { get; set; }

src/SharedWeb/Utilities/ServiceCollectionExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ public static void UseForwardedHeaders(this IApplicationBuilder app, IGlobalSett
645645
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
646646
};
647647

648-
if (!globalSettings.UnifiedDeployment)
648+
if (!globalSettings.LiteDeployment)
649649
{
650650
// Trust the X-Forwarded-Host header of the nginx docker container
651651
try

0 commit comments

Comments
 (0)