Skip to content

Commit 363fa4f

Browse files
authored
Merge branch 'main' into SM-1571-DisableSMAdsForUsers
2 parents 7db2a84 + 3668a44 commit 363fa4f

File tree

110 files changed

+5252
-2832
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+5252
-2832
lines changed

.github/workflows/ephemeral-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616
with:
1717
project: server
1818
pull_request_number: ${{ github.event.number }}
19-
sync_environment: true
19+
sync_environment: false
2020
secrets: inherit

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55

6-
<Version>2025.10.1</Version>
6+
<Version>2025.11.0</Version>
77

88
<RootNamespace>Bit.$(MSBuildProjectName)</RootNamespace>
99
<ImplicitUsings>enable</ImplicitUsings>

bitwarden_license/src/Sso/package-lock.json

Lines changed: 40 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bitwarden_license/src/Sso/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"mini-css-extract-plugin": "2.9.2",
1919
"sass": "1.93.2",
2020
"sass-loader": "16.0.5",
21-
"webpack": "5.101.3",
21+
"webpack": "5.102.1",
2222
"webpack-cli": "5.1.4"
2323
}
2424
}

src/Admin/AdminConsole/Views/Shared/_OrganizationForm.cshtml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -152,13 +152,10 @@
152152
<input type="checkbox" class="form-check-input" asp-for="UseCustomPermissions" disabled='@(canEditPlan ? null : "disabled")'>
153153
<label class="form-check-label" asp-for="UseCustomPermissions"></label>
154154
</div>
155-
@if(FeatureService.IsEnabled(FeatureFlagKeys.PM17772_AdminInitiatedSponsorships))
156-
{
157-
<div class="form-check">
158-
<input type="checkbox" class="form-check-input" asp-for="UseAdminSponsoredFamilies" disabled='@(canEditPlan ? null : "disabled")'>
159-
<label class="form-check-label" asp-for="UseAdminSponsoredFamilies"></label>
160-
</div>
161-
}
155+
<div class="form-check">
156+
<input type="checkbox" class="form-check-input" asp-for="UseAdminSponsoredFamilies" disabled='@(canEditPlan ? null : "disabled")'>
157+
<label class="form-check-label" asp-for="UseAdminSponsoredFamilies"></label>
158+
</div>
162159
@if(FeatureService.IsEnabled(FeatureFlagKeys.AutomaticConfirmUsers))
163160
{
164161
<div class="form-check">

src/Admin/package-lock.json

Lines changed: 40 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"mini-css-extract-plugin": "2.9.2",
2020
"sass": "1.93.2",
2121
"sass-loader": "16.0.5",
22-
"webpack": "5.101.3",
22+
"webpack": "5.102.1",
2323
"webpack-cli": "5.1.4"
2424
}
2525
}

src/Api/AdminConsole/Authorization/AuthorizationHandlerCollectionExtensions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ public static void AddAdminConsoleAuthorizationHandlers(this IServiceCollection
1212
services.TryAddScoped<IOrganizationContext, OrganizationContext>();
1313

1414
services.TryAddEnumerable([
15-
ServiceDescriptor.Scoped<IAuthorizationHandler, BulkCollectionAuthorizationHandler>(),
15+
ServiceDescriptor.Scoped<IAuthorizationHandler, BulkCollectionAuthorizationHandler>(),
1616
ServiceDescriptor.Scoped<IAuthorizationHandler, CollectionAuthorizationHandler>(),
1717
ServiceDescriptor.Scoped<IAuthorizationHandler, GroupAuthorizationHandler>(),
1818
ServiceDescriptor.Scoped<IAuthorizationHandler, OrganizationRequirementHandler>(),
19+
ServiceDescriptor.Scoped<IAuthorizationHandler, RecoverAccountAuthorizationHandler>(),
1920
]);
2021
}
2122
}

0 commit comments

Comments
 (0)