fix(deps): update dependency js-yaml to v5 [security] (#30440)

Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot] 2026-07-31 13:24:39 +02:00 committed by GitHub
parent 8e0ad9b2c4
commit 36cb86c886
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

4
pnpm-lock.yaml generated
View file

@ -536,8 +536,8 @@ importers:
specifier: ^6.0.0
version: 6.2.4
js-yaml:
specifier: ^4.1.0
version: 4.3.0
specifier: ^5.0.0
version: 5.2.1
jsonwebtoken:
specifier: ^9.0.2
version: 9.0.3

View file

@ -82,7 +82,7 @@
"i18n-iso-countries": "^7.6.0",
"ioredis": "^5.8.2",
"jose": "^6.0.0",
"js-yaml": "^4.1.0",
"js-yaml": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"kysely": "0.28.17",
"kysely-postgres-js": "^3.0.0",

View file

@ -362,7 +362,7 @@ describe(SystemConfigService.name, () => {
expect(mocks.logger.error).toHaveBeenCalledTimes(2);
expect(mocks.logger.error.mock.calls[0][0]).toEqual('Unable to load configuration file: immich-config.json');
expect(mocks.logger.error.mock.calls[1][0].toString()).toEqual(
expect.stringContaining('YAMLException: duplicated mapping key (1:20)'),
expect.stringContaining('YAMLException: duplicated mapping key (1:21)'),
);
});