1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

[PM-24243] Load config service feature flag into SDK client (#15855)

* [PM-24243] Load config service feature flag into SDK client during initialization

* [PM-24243] Bump sdk version

* [PM-24243] Update load_flags to use generic Map instead of strongly typed object

* [PM-24243] Pass entire feature states object into SDK

* [PM-24243] Bump SDK version

* [PM-24243] Fix failing test
This commit is contained in:
Shane Melton
2025-09-03 10:56:55 -07:00
committed by GitHub
parent 2de321d6e8
commit b6ef7716da
5 changed files with 29 additions and 1 deletions

View File

@@ -786,6 +786,7 @@ export default class MainBackground {
this.kdfConfigService,
this.keyService,
this.stateProvider,
this.configService,
);
this.passwordStrengthService = new PasswordStrengthService();

View File

@@ -602,6 +602,7 @@ export class ServiceContainer {
this.kdfConfigService,
this.keyService,
this.stateProvider,
this.configService,
customUserAgent,
);