From 4ba1b6465a07d64b1b2a1e4d73b8607a47534ae9 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Thu, 4 May 2023 21:23:15 +1000 Subject: [PATCH 1/8] docs: add alert for configuration sections (#5380) Signed-off-by: James Elliott --- docs/content/en/configuration/first-factor/file.md | 4 ++++ docs/content/en/configuration/first-factor/introduction.md | 4 ++++ docs/content/en/configuration/first-factor/ldap.md | 4 ++++ .../en/configuration/identity-providers/open-id-connect.md | 4 +++- .../content/en/configuration/miscellaneous/introduction.md | 2 ++ docs/content/en/configuration/miscellaneous/logging.md | 2 ++ docs/content/en/configuration/miscellaneous/ntp.md | 2 ++ .../en/configuration/miscellaneous/privacy-policy.md | 2 ++ .../configuration/miscellaneous/server-endpoints-authz.md | 2 ++ docs/content/en/configuration/miscellaneous/server.md | 2 ++ docs/content/en/configuration/notifications/file.md | 4 ++++ .../content/en/configuration/notifications/introduction.md | 4 ++++ docs/content/en/configuration/notifications/smtp.md | 4 ++++ docs/content/en/configuration/prologue/common.md | 3 ++- docs/content/en/configuration/second-factor/duo.md | 4 ++++ .../second-factor/time-based-one-time-password.md | 4 ++++ docs/content/en/configuration/second-factor/webauthn.md | 4 ++++ docs/content/en/configuration/security/access-control.md | 4 ++++ docs/content/en/configuration/security/password-policy.md | 4 ++++ docs/content/en/configuration/security/regulation.md | 4 ++++ docs/content/en/configuration/session/introduction.md | 4 ++++ docs/content/en/configuration/session/redis.md | 4 ++++ docs/content/en/configuration/storage/introduction.md | 4 ++++ docs/content/en/configuration/storage/mysql.md | 4 ++++ docs/content/en/configuration/storage/postgres.md | 4 ++++ docs/content/en/configuration/storage/sqlite.md | 4 ++++ docs/content/en/configuration/telemetry/metrics.md | 4 ++++ docs/layouts/shortcodes/config-alert-example.html | 7 +++++++ 28 files changed, 100 insertions(+), 2 deletions(-) create mode 100644 docs/layouts/shortcodes/config-alert-example.html diff --git a/docs/content/en/configuration/first-factor/file.md b/docs/content/en/configuration/first-factor/file.md index 856d3da0d..896ec8aa2 100644 --- a/docs/content/en/configuration/first-factor/file.md +++ b/docs/content/en/configuration/first-factor/file.md @@ -16,6 +16,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml authentication_backend: file: @@ -54,6 +56,8 @@ authentication_backend: ## Options +This section describes the individual configuration options. + ### path {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/first-factor/introduction.md b/docs/content/en/configuration/first-factor/introduction.md index 4c620e9c7..434d601cb 100644 --- a/docs/content/en/configuration/first-factor/introduction.md +++ b/docs/content/en/configuration/first-factor/introduction.md @@ -23,6 +23,8 @@ There are two ways to integrate *Authelia* with an authentication backend: ## Configuration +{{< config-alert-example >}} + ```yaml authentication_backend: refresh_interval: 5m @@ -33,6 +35,8 @@ authentication_backend: ## Options +This section describes the individual configuration options. + ### refresh_interval {{< confkey type="duration" default="5m" required="no" >}} diff --git a/docs/content/en/configuration/first-factor/ldap.md b/docs/content/en/configuration/first-factor/ldap.md index 7a0ee0d31..a1f73f7df 100644 --- a/docs/content/en/configuration/first-factor/ldap.md +++ b/docs/content/en/configuration/first-factor/ldap.md @@ -17,6 +17,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml authentication_backend: ldap: @@ -113,6 +115,8 @@ authentication_backend: ## Options +This section describes the individual configuration options. + ### implementation {{< confkey type="string" default="custom" required="no" >}} diff --git a/docs/content/en/configuration/identity-providers/open-id-connect.md b/docs/content/en/configuration/identity-providers/open-id-connect.md index 83abaa8d7..f3fc3f15e 100644 --- a/docs/content/en/configuration/identity-providers/open-id-connect.md +++ b/docs/content/en/configuration/identity-providers/open-id-connect.md @@ -28,7 +28,7 @@ More information about the beta can be found in the [roadmap](../../roadmap/acti ## Configuration -The following snippet provides a sample-configuration for the OIDC identity provider explaining each field in detail. +{{< config-alert-example >}} ```yaml identity_providers: @@ -147,6 +147,8 @@ identity_providers: ## Options +This section describes the individual configuration options. + ### hmac_secret {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/miscellaneous/introduction.md b/docs/content/en/configuration/miscellaneous/introduction.md index b7036e231..907d0e4a5 100644 --- a/docs/content/en/configuration/miscellaneous/introduction.md +++ b/docs/content/en/configuration/miscellaneous/introduction.md @@ -17,6 +17,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml certificates_directory: /config/certs/ default_redirection_url: https://home.example.com:8080/ diff --git a/docs/content/en/configuration/miscellaneous/logging.md b/docs/content/en/configuration/miscellaneous/logging.md index 278511f08..31efd03b8 100644 --- a/docs/content/en/configuration/miscellaneous/logging.md +++ b/docs/content/en/configuration/miscellaneous/logging.md @@ -18,6 +18,8 @@ The logging section tunes the logging settings. ## Configuration +{{< config-alert-example >}} + ```yaml log: level: info diff --git a/docs/content/en/configuration/miscellaneous/ntp.md b/docs/content/en/configuration/miscellaneous/ntp.md index b16751d8e..860beaccb 100644 --- a/docs/content/en/configuration/miscellaneous/ntp.md +++ b/docs/content/en/configuration/miscellaneous/ntp.md @@ -23,6 +23,8 @@ unless configured otherwise. ## Configuration +{{< config-alert-example >}} + ```yaml ntp: address: "time.cloudflare.com:123" diff --git a/docs/content/en/configuration/miscellaneous/privacy-policy.md b/docs/content/en/configuration/miscellaneous/privacy-policy.md index 148e9f0ae..a8a3b4ee1 100644 --- a/docs/content/en/configuration/miscellaneous/privacy-policy.md +++ b/docs/content/en/configuration/miscellaneous/privacy-policy.md @@ -14,6 +14,8 @@ toc: true ## Configuration +{{< config-alert-example >}} + ```yaml privacy_policy: enabled: false diff --git a/docs/content/en/configuration/miscellaneous/server-endpoints-authz.md b/docs/content/en/configuration/miscellaneous/server-endpoints-authz.md index c6763a4e2..1381f04c3 100644 --- a/docs/content/en/configuration/miscellaneous/server-endpoints-authz.md +++ b/docs/content/en/configuration/miscellaneous/server-endpoints-authz.md @@ -16,6 +16,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml server: endpoints: diff --git a/docs/content/en/configuration/miscellaneous/server.md b/docs/content/en/configuration/miscellaneous/server.md index 2eaa4d1db..b679dc406 100644 --- a/docs/content/en/configuration/miscellaneous/server.md +++ b/docs/content/en/configuration/miscellaneous/server.md @@ -17,6 +17,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml server: host: 0.0.0.0 diff --git a/docs/content/en/configuration/notifications/file.md b/docs/content/en/configuration/notifications/file.md index e004fad9c..15f55314c 100644 --- a/docs/content/en/configuration/notifications/file.md +++ b/docs/content/en/configuration/notifications/file.md @@ -21,6 +21,8 @@ This method will use the plain text email template for readability purposes. ## Configuration +{{< config-alert-example >}} + ```yaml notifier: disable_startup_check: false @@ -30,6 +32,8 @@ notifier: ## Options +This section describes the individual configuration options. + ### filename {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/notifications/introduction.md b/docs/content/en/configuration/notifications/introduction.md index eb04def3d..d3752f55a 100644 --- a/docs/content/en/configuration/notifications/introduction.md +++ b/docs/content/en/configuration/notifications/introduction.md @@ -16,6 +16,8 @@ Authelia sends messages to users in order to verify their identity. ## Configuration +{{< config-alert-example >}} + ```yaml notifier: disable_startup_check: false @@ -26,6 +28,8 @@ notifier: ## Options +This section describes the individual configuration options. + ### disable_startup_check {{< confkey type="boolean" default="false" required="no" >}} diff --git a/docs/content/en/configuration/notifications/smtp.md b/docs/content/en/configuration/notifications/smtp.md index e22d4f834..876450a90 100644 --- a/docs/content/en/configuration/notifications/smtp.md +++ b/docs/content/en/configuration/notifications/smtp.md @@ -17,6 +17,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml notifier: disable_startup_check: false @@ -109,6 +111,8 @@ notifier: ## Options +This section describes the individual configuration options. + ### host {{< confkey type="integer" required="yes" >}} diff --git a/docs/content/en/configuration/prologue/common.md b/docs/content/en/configuration/prologue/common.md index 2c549f75c..48aadb745 100644 --- a/docs/content/en/configuration/prologue/common.md +++ b/docs/content/en/configuration/prologue/common.md @@ -184,7 +184,8 @@ especially for containerized deployments.* The private key to be used with the [certificate_chain](#certificatechain) for mutual TLS authentication. -The value must be one private key encoded in the DER base64 ([RFC4648]) encoded PEM format. +The value must be one private key encoded in the DER base64 ([RFC4648]) encoded PEM format. If more than one certificate +is provided, in top down order, each certificate must be signed by the next certificate if provided. [RFC4648]: https://datatracker.ietf.org/doc/html/rfc4648 diff --git a/docs/content/en/configuration/second-factor/duo.md b/docs/content/en/configuration/second-factor/duo.md index 9eacab0e9..6b3bebbfc 100644 --- a/docs/content/en/configuration/second-factor/duo.md +++ b/docs/content/en/configuration/second-factor/duo.md @@ -25,6 +25,8 @@ section of the configuration. ## Configuration +{{< config-alert-example >}} + ```yaml duo_api: disable: false @@ -36,6 +38,8 @@ duo_api: ## Options +This section describes the individual configuration options. + ### Disable {{< confkey type="boolean" default="false" required="no" >}} diff --git a/docs/content/en/configuration/second-factor/time-based-one-time-password.md b/docs/content/en/configuration/second-factor/time-based-one-time-password.md index b93ca987b..9b2279389 100644 --- a/docs/content/en/configuration/second-factor/time-based-one-time-password.md +++ b/docs/content/en/configuration/second-factor/time-based-one-time-password.md @@ -26,6 +26,8 @@ and many only support SHA1. ## Configuration +{{< config-alert-example >}} + ```yaml totp: disable: false @@ -39,6 +41,8 @@ totp: ## Options +This section describes the individual configuration options. + ### disable {{< confkey type="boolean" default="false" required="no" >}} diff --git a/docs/content/en/configuration/second-factor/webauthn.md b/docs/content/en/configuration/second-factor/webauthn.md index 99c66851c..d560354e7 100644 --- a/docs/content/en/configuration/second-factor/webauthn.md +++ b/docs/content/en/configuration/second-factor/webauthn.md @@ -16,6 +16,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml webauthn: disable: false @@ -27,6 +29,8 @@ webauthn: ## Options +This section describes the individual configuration options. + ### disable {{< confkey type="boolean" default="false" required="no" >}} diff --git a/docs/content/en/configuration/security/access-control.md b/docs/content/en/configuration/security/access-control.md index 5dae020d8..5edc77b46 100644 --- a/docs/content/en/configuration/security/access-control.md +++ b/docs/content/en/configuration/security/access-control.md @@ -17,6 +17,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml access_control: default_policy: deny @@ -57,6 +59,8 @@ access_control: ## Options +This section describes the individual configuration options. + ### default_policy {{< confkey type="string" default="deny" required="no" >}} diff --git a/docs/content/en/configuration/security/password-policy.md b/docs/content/en/configuration/security/password-policy.md index 5a759f70e..77a985c45 100644 --- a/docs/content/en/configuration/security/password-policy.md +++ b/docs/content/en/configuration/security/password-policy.md @@ -18,6 +18,8 @@ aliases: ## Configuration +{{< config-alert-example >}} + ```yaml password_policy: standard: @@ -35,6 +37,8 @@ password_policy: ## Options +This section describes the individual configuration options. + ### standard This section allows you to enable standard security policies. diff --git a/docs/content/en/configuration/security/regulation.md b/docs/content/en/configuration/security/regulation.md index 705c7e718..b1ea8f1df 100644 --- a/docs/content/en/configuration/security/regulation.md +++ b/docs/content/en/configuration/security/regulation.md @@ -20,6 +20,8 @@ authentication attempts. This helps prevent brute-force attacks. ## Configuration +{{< config-alert-example >}} + ```yaml regulation: max_retries: 3 @@ -29,6 +31,8 @@ regulation: ## Options +This section describes the individual configuration options. + ### max_retries {{< confkey type="integer" default="3" required="no" >}} diff --git a/docs/content/en/configuration/session/introduction.md b/docs/content/en/configuration/session/introduction.md index 4a5ed19ca..304cbf390 100644 --- a/docs/content/en/configuration/session/introduction.md +++ b/docs/content/en/configuration/session/introduction.md @@ -20,6 +20,8 @@ the session cookie behaviour and the domains which Authelia can service authoriz ## Configuration +{{< config-alert-example >}} + ```yaml session: secret: insecure_session_secret @@ -56,6 +58,8 @@ providers are recommended. ## Options +This section describes the individual configuration options. + ### secret {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/session/redis.md b/docs/content/en/configuration/session/redis.md index fa6b9dd8a..b36d51d08 100644 --- a/docs/content/en/configuration/session/redis.md +++ b/docs/content/en/configuration/session/redis.md @@ -20,6 +20,8 @@ this option and we highly recommend it in production environments. It requires y ## Configuration +{{< config-alert-example >}} + ```yaml session: redis: @@ -119,6 +121,8 @@ session: ## Options +This section describes the individual configuration options. + ### host {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/storage/introduction.md b/docs/content/en/configuration/storage/introduction.md index d2c09e830..97fcf08bf 100644 --- a/docs/content/en/configuration/storage/introduction.md +++ b/docs/content/en/configuration/storage/introduction.md @@ -21,6 +21,8 @@ The available storage backends are listed in the table of contents below. ## Configuration +{{< config-alert-example >}} + ```yaml storage: encryption_key: a_very_important_secret @@ -31,6 +33,8 @@ storage: ## Options +This section describes the individual configuration options. + ### encryption_key {{< confkey type="string" required="yes" >}} diff --git a/docs/content/en/configuration/storage/mysql.md b/docs/content/en/configuration/storage/mysql.md index 227eff96f..c187fbcee 100644 --- a/docs/content/en/configuration/storage/mysql.md +++ b/docs/content/en/configuration/storage/mysql.md @@ -22,6 +22,8 @@ guide for supported version information. ## Configuration +{{< config-alert-example >}} + ```yaml storage: encryption_key: a_very_important_secret @@ -108,6 +110,8 @@ storage: ## Options +This section describes the individual configuration options. + ### encryption_key See the [encryption_key docs](introduction.md#encryption_key). diff --git a/docs/content/en/configuration/storage/postgres.md b/docs/content/en/configuration/storage/postgres.md index 8ea2fae07..8e2c10977 100644 --- a/docs/content/en/configuration/storage/postgres.md +++ b/docs/content/en/configuration/storage/postgres.md @@ -21,6 +21,8 @@ guide for supported version information. ## Configuration +{{< config-alert-example >}} + ```yaml storage: encryption_key: a_very_important_secret @@ -107,6 +109,8 @@ storage: ## Options +This section describes the individual configuration options. + ### encryption_key See the [encryption_key docs](introduction.md#encryption_key). diff --git a/docs/content/en/configuration/storage/sqlite.md b/docs/content/en/configuration/storage/sqlite.md index cdb39a319..631003a7e 100644 --- a/docs/content/en/configuration/storage/sqlite.md +++ b/docs/content/en/configuration/storage/sqlite.md @@ -24,6 +24,8 @@ but this requires you setup an external database such as [PostgreSQL](postgres.m ## Configuration +{{< config-alert-example >}} + ```yaml storage: encryption_key: a_very_important_secret @@ -33,6 +35,8 @@ storage: ## Options +This section describes the individual configuration options. + ### encryption_key See the [encryption_key docs](introduction.md#encryptionkey). diff --git a/docs/content/en/configuration/telemetry/metrics.md b/docs/content/en/configuration/telemetry/metrics.md index 4917637e1..55e6f4dee 100644 --- a/docs/content/en/configuration/telemetry/metrics.md +++ b/docs/content/en/configuration/telemetry/metrics.md @@ -16,6 +16,8 @@ toc: true ## Configuration +{{< config-alert-example >}} + ```yaml telemetry: metrics: @@ -32,6 +34,8 @@ telemetry: ## Options +This section describes the individual configuration options. + ### enabled {{< confkey type="boolean" default="false" required="no" >}} diff --git a/docs/layouts/shortcodes/config-alert-example.html b/docs/layouts/shortcodes/config-alert-example.html new file mode 100644 index 000000000..19f8d1430 --- /dev/null +++ b/docs/layouts/shortcodes/config-alert-example.html @@ -0,0 +1,7 @@ + \ No newline at end of file From f39a153b3dff1f260b63ca08faa1e3649517762d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 May 2023 21:51:29 +1000 Subject: [PATCH 2/8] build(deps): update commitlint monorepo to v17.6.3 (#5381) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- web/package.json | 4 ++-- web/pnpm-lock.yaml | 46 +++++++++++++++++++++++----------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/web/package.json b/web/package.json index 5739f0dd8..8e25aa60b 100644 --- a/web/package.json +++ b/web/package.json @@ -66,8 +66,8 @@ ] }, "devDependencies": { - "@commitlint/cli": "17.6.1", - "@commitlint/config-conventional": "17.6.1", + "@commitlint/cli": "17.6.3", + "@commitlint/config-conventional": "17.6.3", "@limegrass/eslint-plugin-import-alias": "1.0.6", "@testing-library/jest-dom": "5.16.5", "@testing-library/react": "14.0.0", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index 562ee80bb..cc25bad98 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -76,11 +76,11 @@ dependencies: devDependencies: '@commitlint/cli': - specifier: 17.6.1 - version: 17.6.1 + specifier: 17.6.3 + version: 17.6.3 '@commitlint/config-conventional': - specifier: 17.6.1 - version: 17.6.1 + specifier: 17.6.3 + version: 17.6.3 '@limegrass/eslint-plugin-import-alias': specifier: 1.0.6 version: 1.0.6(eslint@8.39.0) @@ -1552,13 +1552,13 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@commitlint/cli@17.6.1: - resolution: {integrity: sha512-kCnDD9LE2ySiTnj/VPaxy4/oRayRcdv4aCuVxtoum8SxIU7OADHc0nJPQfheE8bHcs3zZdWzDMWltRosuT13bg==} + /@commitlint/cli@17.6.3: + resolution: {integrity: sha512-ItSz2fd4F+CujgIbQOfNNerDF1eFlsBGEfp9QcCb1kxTYMuKTYZzA6Nu1YRRrIaaWwe2E7awUGpIMrPoZkOG3A==} engines: {node: '>=v14'} hasBin: true dependencies: '@commitlint/format': 17.4.4 - '@commitlint/lint': 17.6.1 + '@commitlint/lint': 17.6.3 '@commitlint/load': 17.5.0 '@commitlint/read': 17.5.1 '@commitlint/types': 17.4.4 @@ -1572,8 +1572,8 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-conventional@17.6.1: - resolution: {integrity: sha512-ng/ybaSLuTCH9F+7uavSOnEQ9EFMl7lHEjfAEgRh1hwmEe8SpLKpQeMo2aT1IWvHaGMuTb+gjfbzoRf2IR23NQ==} + /@commitlint/config-conventional@17.6.3: + resolution: {integrity: sha512-bLyHEjjRWqlLQWIgYFHmUPbEFMOOLXeF3QbUinDIJev/u9e769tkoTH9YPknEywiuIrAgZaVo+OfzAIsJP0fsw==} engines: {node: '>=v14'} dependencies: conventional-changelog-conventionalcommits: 5.0.0 @@ -1612,19 +1612,19 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored@17.4.4: - resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==} + /@commitlint/is-ignored@17.6.3: + resolution: {integrity: sha512-LQbNdnPbxrpbcrVKR5yf51SvquqktpyZJwqXx3lUMF6+nT9PHB8xn3wLy8pi2EQv5Zwba484JnUwDE1ygVYNQA==} engines: {node: '>=v14'} dependencies: '@commitlint/types': 17.4.4 - semver: 7.3.8 + semver: 7.5.0 dev: true - /@commitlint/lint@17.6.1: - resolution: {integrity: sha512-VARJ9kxH64isgwVnC+ABPafCYzqxpsWJIpDaTuI0gh8aX4GQ0i7cn9tvxtFNfJj4ER2BAJeWJ0vURdNYjK2RQQ==} + /@commitlint/lint@17.6.3: + resolution: {integrity: sha512-fBlXwt6SHJFgm3Tz+luuo3DkydAx9HNC5y4eBqcKuDuMVqHd2ugMNr+bQtx6riv9mXFiPoKp7nE4Xn/ls3iVDA==} engines: {node: '>=v14'} dependencies: - '@commitlint/is-ignored': 17.4.4 + '@commitlint/is-ignored': 17.6.3 '@commitlint/parse': 17.4.4 '@commitlint/rules': 17.6.1 '@commitlint/types': 17.4.4 @@ -3032,7 +3032,7 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.4.0 + semver: 7.5.0 tsutils: 3.21.0(typescript@5.0.4) typescript: 5.0.4 transitivePeerDependencies: @@ -3074,7 +3074,7 @@ packages: '@typescript-eslint/typescript-estree': 5.58.0(typescript@5.0.4) eslint: 8.39.0 eslint-scope: 5.1.1 - semver: 7.4.0 + semver: 7.5.0 transitivePeerDependencies: - supports-color - typescript @@ -3679,7 +3679,7 @@ packages: js-string-escape: 1.0.1 lodash: 4.17.21 md5-hex: 3.0.1 - semver: 7.4.0 + semver: 7.5.0 well-known-symbols: 2.0.0 dev: true @@ -6132,7 +6132,7 @@ packages: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.12.0 - semver: 7.4.0 + semver: 7.5.0 validate-npm-package-license: 3.0.4 dev: true @@ -6823,16 +6823,16 @@ packages: hasBin: true dev: true - /semver@7.3.8: - resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + /semver@7.4.0: + resolution: {integrity: sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true - /semver@7.4.0: - resolution: {integrity: sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==} + /semver@7.5.0: + resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} engines: {node: '>=10'} hasBin: true dependencies: From 45f02ae8789ad3d3a3e8edaec6056918ae84b28c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 4 May 2023 22:07:33 +1000 Subject: [PATCH 3/8] build(deps): update dependency @types/react to v18.2.4 (#5382) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- web/package.json | 2 +- web/pnpm-lock.yaml | 94 +++++++++++++++++++++++----------------------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/web/package.json b/web/package.json index 8e25aa60b..fb7e414ca 100644 --- a/web/package.json +++ b/web/package.json @@ -73,7 +73,7 @@ "@testing-library/react": "14.0.0", "@types/node": "18.16.3", "@types/qrcode.react": "1.0.2", - "@types/react": "18.2.3", + "@types/react": "18.2.4", "@types/react-dom": "18.2.3", "@types/testing-library__jest-dom": "5.14.5", "@types/zxcvbn": "4.4.1", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index cc25bad98..fbb87f3a1 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -6,10 +6,10 @@ dependencies: version: 11.10.8 '@emotion/react': specifier: 11.10.8 - version: 11.10.8(@types/react@18.2.3)(react@18.2.0) + version: 11.10.8(@types/react@18.2.4)(react@18.2.0) '@emotion/styled': specifier: 11.10.8 - version: 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.3)(react@18.2.0) + version: 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) '@fortawesome/fontawesome-svg-core': specifier: 6.4.0 version: 6.4.0 @@ -24,13 +24,13 @@ dependencies: version: 0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@18.2.0) '@mui/icons-material': specifier: 5.11.16 - version: 5.11.16(@mui/material@5.12.3)(@types/react@18.2.3)(react@18.2.0) + version: 5.11.16(@mui/material@5.12.3)(@types/react@18.2.4)(react@18.2.0) '@mui/material': specifier: 5.12.3 - version: 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.3)(react-dom@18.2.0)(react@18.2.0) + version: 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) '@mui/styles': specifier: 5.12.3 - version: 5.12.3(@types/react@18.2.3)(react@18.2.0) + version: 5.12.3(@types/react@18.2.4)(react@18.2.0) axios: specifier: 1.4.0 version: 1.4.0 @@ -97,8 +97,8 @@ devDependencies: specifier: 1.0.2 version: 1.0.2 '@types/react': - specifier: 18.2.3 - version: 18.2.3 + specifier: 18.2.4 + version: 18.2.4 '@types/react-dom': specifier: 18.2.3 version: 18.2.3 @@ -1767,7 +1767,7 @@ packages: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} dev: false - /@emotion/react@11.10.8(@types/react@18.2.3)(react@18.2.0): + /@emotion/react@11.10.8(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-ZfGfiABtJ1P1OXqOBsW08EgCDp5fK6C5I8hUJauc/VcJBGSzqAirMnFslhFWnZJ/w5HxPI36XbvMV0l4KZHl+w==} peerDependencies: '@types/react': '*' @@ -1783,7 +1783,7 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.2.3 + '@types/react': 18.2.4 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -1802,7 +1802,7 @@ packages: resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==} dev: false - /@emotion/styled@11.10.8(@emotion/react@11.10.8)(@types/react@18.2.3)(react@18.2.0): + /@emotion/styled@11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-gow0lF4Uw/QEdX2REMhI8v6wLOabPKJ+4HKNF0xdJ2DJdznN6fxaXpQOx6sNkyBhSUL558Rmcu1Lq/MYlVo4vw==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -1815,11 +1815,11 @@ packages: '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.10.8 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.8(@types/react@18.2.3)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) '@emotion/serialize': 1.1.1 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 - '@types/react': 18.2.3 + '@types/react': 18.2.4 react: 18.2.0 dev: false @@ -2258,7 +2258,7 @@ packages: tsconfig-paths: 3.14.2 dev: true - /@mui/base@5.0.0-alpha.128(@types/react@18.2.3)(react-dom@18.2.0)(react@18.2.0): + /@mui/base@5.0.0-alpha.128(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2271,10 +2271,10 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/is-prop-valid': 1.2.0 - '@mui/types': 7.2.4(@types/react@18.2.3) + '@mui/types': 7.2.4(@types/react@18.2.4) '@mui/utils': 5.12.3(react@18.2.0) '@popperjs/core': 2.11.7 - '@types/react': 18.2.3 + '@types/react': 18.2.4 clsx: 1.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -2286,7 +2286,7 @@ packages: resolution: {integrity: sha512-yiJZ+knaknPHuRKhRk4L6XiwppwkAahVal3LuYpvBH7GkA2g+D9WLEXOEnNYtVFUggyKf6fWGLGnx0iqzkU5YA==} dev: false - /@mui/icons-material@5.11.16(@mui/material@5.12.3)(@types/react@18.2.3)(react@18.2.0): + /@mui/icons-material@5.11.16(@mui/material@5.12.3)(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2298,12 +2298,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@mui/material': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.3)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.3 + '@mui/material': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.4 react: 18.2.0 dev: false - /@mui/material@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.3)(react-dom@18.2.0)(react@18.2.0): + /@mui/material@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xNmKlrEN4HsTaKFNLZfc7ie7CXx2YqEeO//hsXZx2p3MGtDdeMr2sV3jC4hsFs57RhQlF79weY7uVvC8xSuVbg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2321,14 +2321,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@emotion/react': 11.10.8(@types/react@18.2.3)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.3)(react@18.2.0) - '@mui/base': 5.0.0-alpha.128(@types/react@18.2.3)(react-dom@18.2.0)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) + '@mui/base': 5.0.0-alpha.128(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) '@mui/core-downloads-tracker': 5.12.3 - '@mui/system': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.3)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.3) + '@mui/system': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.4) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.3 + '@types/react': 18.2.4 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 csstype: 3.1.2 @@ -2339,7 +2339,7 @@ packages: react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) dev: false - /@mui/private-theming@5.12.3(@types/react@18.2.3)(react@18.2.0): + /@mui/private-theming@5.12.3(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2351,7 +2351,7 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.3 + '@types/react': 18.2.4 prop-types: 15.8.1 react: 18.2.0 dev: false @@ -2371,14 +2371,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/cache': 11.10.8 - '@emotion/react': 11.10.8(@types/react@18.2.3)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.3)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/styles@5.12.3(@types/react@18.2.3)(react@18.2.0): + /@mui/styles@5.12.3(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-y0GN1kTYO2FF/0LH8a0PpVxwLotlcunFqdJpCL5gza0w5Fqz9wxlwauPZW0bDt0+sF79CrohzdzWkh+fxB+oww==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2390,10 +2390,10 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/hash': 0.9.0 - '@mui/private-theming': 5.12.3(@types/react@18.2.3)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.3) + '@mui/private-theming': 5.12.3(@types/react@18.2.4)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.4) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.3 + '@types/react': 18.2.4 clsx: 1.2.1 csstype: 3.1.2 hoist-non-react-statics: 3.3.2 @@ -2409,7 +2409,7 @@ packages: react: 18.2.0 dev: false - /@mui/system@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.3)(react@18.2.0): + /@mui/system@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react@18.2.0): resolution: {integrity: sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2426,20 +2426,20 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@emotion/react': 11.10.8(@types/react@18.2.3)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.3)(react@18.2.0) - '@mui/private-theming': 5.12.3(@types/react@18.2.3)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) + '@mui/private-theming': 5.12.3(@types/react@18.2.4)(react@18.2.0) '@mui/styled-engine': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.3) + '@mui/types': 7.2.4(@types/react@18.2.4) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.3 + '@types/react': 18.2.4 clsx: 1.2.1 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/types@7.2.4(@types/react@18.2.3): + /@mui/types@7.2.4(@types/react@18.2.4): resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==} peerDependencies: '@types/react': '*' @@ -2447,7 +2447,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.3 + '@types/react': 18.2.4 dev: false /@mui/utils@5.12.3(react@18.2.0): @@ -2837,7 +2837,7 @@ packages: /@types/qrcode.react@1.0.2: resolution: {integrity: sha512-I9Oq5Cjlkgy3Tw7krCnCXLw2/zMhizkTere49OOcta23tkvH0xBTP0yInimTh0gstLRtb8Ki9NZVujE5UI6ffQ==} dependencies: - '@types/react': 18.2.3 + '@types/react': 18.2.4 dev: true /@types/qs@6.9.7: @@ -2851,23 +2851,23 @@ packages: /@types/react-dom@18.2.3: resolution: {integrity: sha512-hxXEXWxFJXbY0LMj/T69mznqOZJXNtQMqVxIiirVAZnnpeYiD4zt+lPsgcr/cfWg2VLsxZ1y26vigG03prYB+Q==} dependencies: - '@types/react': 18.2.3 + '@types/react': 18.2.4 dev: true /@types/react-is@17.0.3: resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==} dependencies: - '@types/react': 18.2.3 + '@types/react': 18.2.4 dev: false /@types/react-transition-group@4.4.5: resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} dependencies: - '@types/react': 18.2.3 + '@types/react': 18.2.4 dev: false - /@types/react@18.2.3: - resolution: {integrity: sha512-myU58XyFvSCcF9stRlhYnPbHZu9md7VZNsLukY6D68JHzIHLvqxvutD5luAJLnrUKMswvAgGwdSlEUKKSD+9Fw==} + /@types/react@18.2.4: + resolution: {integrity: sha512-IvAIhJTmKAAJmCIcaa6+5uagjyh+9GvcJ/thPZcw+i+vx+22eHlTy2Q1bJg/prES57jehjebq9DnIhOTtIhmLw==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 From 089c2c82244b4e7aaeb270e6bdb4a67a77f80605 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 05:17:31 +1000 Subject: [PATCH 4/8] build(deps): update dependency happy-dom to v9.10.9 (#5384) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- web/package.json | 2 +- web/pnpm-lock.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/web/package.json b/web/package.json index fb7e414ca..3d97f5679 100644 --- a/web/package.json +++ b/web/package.json @@ -92,7 +92,7 @@ "eslint-plugin-prettier": "4.2.1", "eslint-plugin-react": "7.32.2", "eslint-plugin-react-hooks": "4.6.0", - "happy-dom": "9.10.8", + "happy-dom": "9.10.9", "husky": "8.0.3", "prettier": "2.8.8", "react-test-renderer": "18.2.0", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index fbb87f3a1..7cd094ab3 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -154,8 +154,8 @@ devDependencies: specifier: 4.6.0 version: 4.6.0(eslint@8.39.0) happy-dom: - specifier: 9.10.8 - version: 9.10.8 + specifier: 9.10.9 + version: 9.10.9 husky: specifier: 8.0.3 version: 8.0.3 @@ -185,7 +185,7 @@ devDependencies: version: 4.2.0(typescript@5.0.4)(vite@4.3.4) vitest: specifier: 0.31.0 - version: 0.31.0(happy-dom@9.10.8) + version: 0.31.0(happy-dom@9.10.9) vitest-preview: specifier: 0.0.1 version: 0.0.1 @@ -3148,7 +3148,7 @@ packages: istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 test-exclude: 6.0.0 - vitest: 0.31.0(happy-dom@9.10.8) + vitest: 0.31.0(happy-dom@9.10.9) transitivePeerDependencies: - supports-color dev: true @@ -5161,8 +5161,8 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /happy-dom@9.10.8: - resolution: {integrity: sha512-zcRFDygyTxigkglFyFA/Gim1H36bIdYdWkI28kC1bLG5Kk/Ad8MnVzT+XzaUhMRAhd7SfZrizCQueS8mjf6tDw==} + /happy-dom@9.10.9: + resolution: {integrity: sha512-3RnOyu6buPMpDAyOpp8yfR5Xi/k2p5MhrDwlG/dgpVHkptFN5IqubdbGOQU5luB7ANh6a08GOuiB+Bo9JCzCBw==} dependencies: css.escape: 1.5.1 he: 1.2.0 @@ -7581,7 +7581,7 @@ packages: - terser dev: true - /vitest@0.31.0(happy-dom@9.10.8): + /vitest@0.31.0(happy-dom@9.10.9): resolution: {integrity: sha512-JwWJS9p3GU9GxkG7eBSmr4Q4x4bvVBSswaCFf1PBNHiPx00obfhHRJfgHcnI0ffn+NMlIh9QGvG75FlaIBdKGA==} engines: {node: '>=v14.18.0'} hasBin: true @@ -7626,7 +7626,7 @@ packages: chai: 4.3.7 concordance: 5.0.4 debug: 4.3.4 - happy-dom: 9.10.8 + happy-dom: 9.10.9 local-pkg: 0.4.3 magic-string: 0.30.0 pathe: 1.1.0 From 311c71dbfb0693970ea4ec7560b8fdefc1e4ae90 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 05:32:54 +1000 Subject: [PATCH 5/8] build(deps): update dependency @types/react to v18.2.5 (#5383) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- web/package.json | 2 +- web/pnpm-lock.yaml | 94 +++++++++++++++++++++++----------------------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/web/package.json b/web/package.json index 3d97f5679..0f228baa4 100644 --- a/web/package.json +++ b/web/package.json @@ -73,7 +73,7 @@ "@testing-library/react": "14.0.0", "@types/node": "18.16.3", "@types/qrcode.react": "1.0.2", - "@types/react": "18.2.4", + "@types/react": "18.2.5", "@types/react-dom": "18.2.3", "@types/testing-library__jest-dom": "5.14.5", "@types/zxcvbn": "4.4.1", diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index 7cd094ab3..d8b86b6da 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -6,10 +6,10 @@ dependencies: version: 11.10.8 '@emotion/react': specifier: 11.10.8 - version: 11.10.8(@types/react@18.2.4)(react@18.2.0) + version: 11.10.8(@types/react@18.2.5)(react@18.2.0) '@emotion/styled': specifier: 11.10.8 - version: 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) + version: 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.5)(react@18.2.0) '@fortawesome/fontawesome-svg-core': specifier: 6.4.0 version: 6.4.0 @@ -24,13 +24,13 @@ dependencies: version: 0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@18.2.0) '@mui/icons-material': specifier: 5.11.16 - version: 5.11.16(@mui/material@5.12.3)(@types/react@18.2.4)(react@18.2.0) + version: 5.11.16(@mui/material@5.12.3)(@types/react@18.2.5)(react@18.2.0) '@mui/material': specifier: 5.12.3 - version: 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) + version: 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.5)(react-dom@18.2.0)(react@18.2.0) '@mui/styles': specifier: 5.12.3 - version: 5.12.3(@types/react@18.2.4)(react@18.2.0) + version: 5.12.3(@types/react@18.2.5)(react@18.2.0) axios: specifier: 1.4.0 version: 1.4.0 @@ -97,8 +97,8 @@ devDependencies: specifier: 1.0.2 version: 1.0.2 '@types/react': - specifier: 18.2.4 - version: 18.2.4 + specifier: 18.2.5 + version: 18.2.5 '@types/react-dom': specifier: 18.2.3 version: 18.2.3 @@ -1767,7 +1767,7 @@ packages: resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==} dev: false - /@emotion/react@11.10.8(@types/react@18.2.4)(react@18.2.0): + /@emotion/react@11.10.8(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-ZfGfiABtJ1P1OXqOBsW08EgCDp5fK6C5I8hUJauc/VcJBGSzqAirMnFslhFWnZJ/w5HxPI36XbvMV0l4KZHl+w==} peerDependencies: '@types/react': '*' @@ -1783,7 +1783,7 @@ packages: '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 - '@types/react': 18.2.4 + '@types/react': 18.2.5 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -1802,7 +1802,7 @@ packages: resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==} dev: false - /@emotion/styled@11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0): + /@emotion/styled@11.10.8(@emotion/react@11.10.8)(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-gow0lF4Uw/QEdX2REMhI8v6wLOabPKJ+4HKNF0xdJ2DJdznN6fxaXpQOx6sNkyBhSUL558Rmcu1Lq/MYlVo4vw==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 @@ -1815,11 +1815,11 @@ packages: '@babel/runtime': 7.21.0 '@emotion/babel-plugin': 11.10.8 '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.5)(react@18.2.0) '@emotion/serialize': 1.1.1 '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 - '@types/react': 18.2.4 + '@types/react': 18.2.5 react: 18.2.0 dev: false @@ -2258,7 +2258,7 @@ packages: tsconfig-paths: 3.14.2 dev: true - /@mui/base@5.0.0-alpha.128(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0): + /@mui/base@5.0.0-alpha.128(@types/react@18.2.5)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wub3wxNN+hUp8hzilMlXX3sZrPo75vsy1cXEQpqdTfIFlE9HprP1jlulFiPg5tfPst2OKmygXr2hhmgvAKRrzQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2271,10 +2271,10 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/is-prop-valid': 1.2.0 - '@mui/types': 7.2.4(@types/react@18.2.4) + '@mui/types': 7.2.4(@types/react@18.2.5) '@mui/utils': 5.12.3(react@18.2.0) '@popperjs/core': 2.11.7 - '@types/react': 18.2.4 + '@types/react': 18.2.5 clsx: 1.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -2286,7 +2286,7 @@ packages: resolution: {integrity: sha512-yiJZ+knaknPHuRKhRk4L6XiwppwkAahVal3LuYpvBH7GkA2g+D9WLEXOEnNYtVFUggyKf6fWGLGnx0iqzkU5YA==} dev: false - /@mui/icons-material@5.11.16(@mui/material@5.12.3)(@types/react@18.2.4)(react@18.2.0): + /@mui/icons-material@5.11.16(@mui/material@5.12.3)(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-oKkx9z9Kwg40NtcIajF9uOXhxiyTZrrm9nmIJ4UjkU2IdHpd4QVLbCc/5hZN/y0C6qzi2Zlxyr9TGddQx2vx2A==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2298,12 +2298,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@mui/material': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.4 + '@mui/material': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.5)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.5 react: 18.2.0 dev: false - /@mui/material@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0): + /@mui/material@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.5)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-xNmKlrEN4HsTaKFNLZfc7ie7CXx2YqEeO//hsXZx2p3MGtDdeMr2sV3jC4hsFs57RhQlF79weY7uVvC8xSuVbg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2321,14 +2321,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) - '@mui/base': 5.0.0-alpha.128(@types/react@18.2.4)(react-dom@18.2.0)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.5)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.5)(react@18.2.0) + '@mui/base': 5.0.0-alpha.128(@types/react@18.2.5)(react-dom@18.2.0)(react@18.2.0) '@mui/core-downloads-tracker': 5.12.3 - '@mui/system': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.4) + '@mui/system': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.5)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.5) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.4 + '@types/react': 18.2.5 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 csstype: 3.1.2 @@ -2339,7 +2339,7 @@ packages: react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) dev: false - /@mui/private-theming@5.12.3(@types/react@18.2.4)(react@18.2.0): + /@mui/private-theming@5.12.3(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-o1e7Z1Bp27n4x2iUHhegV4/Jp6H3T6iBKHJdLivS5GbwsuAE/5l4SnZ+7+K+e5u9TuhwcAKZLkjvqzkDe8zqfA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2351,7 +2351,7 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.4 + '@types/react': 18.2.5 prop-types: 15.8.1 react: 18.2.0 dev: false @@ -2371,14 +2371,14 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/cache': 11.10.8 - '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.5)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.5)(react@18.2.0) csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/styles@5.12.3(@types/react@18.2.4)(react@18.2.0): + /@mui/styles@5.12.3(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-y0GN1kTYO2FF/0LH8a0PpVxwLotlcunFqdJpCL5gza0w5Fqz9wxlwauPZW0bDt0+sF79CrohzdzWkh+fxB+oww==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2390,10 +2390,10 @@ packages: dependencies: '@babel/runtime': 7.21.0 '@emotion/hash': 0.9.0 - '@mui/private-theming': 5.12.3(@types/react@18.2.4)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.4) + '@mui/private-theming': 5.12.3(@types/react@18.2.5)(react@18.2.0) + '@mui/types': 7.2.4(@types/react@18.2.5) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.4 + '@types/react': 18.2.5 clsx: 1.2.1 csstype: 3.1.2 hoist-non-react-statics: 3.3.2 @@ -2409,7 +2409,7 @@ packages: react: 18.2.0 dev: false - /@mui/system@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.4)(react@18.2.0): + /@mui/system@5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(@types/react@18.2.5)(react@18.2.0): resolution: {integrity: sha512-JB/6sypHqeJCqwldWeQ1MKkijH829EcZAKKizxbU2MJdxGG5KSwZvTBa5D9qiJUA1hJFYYupjiuy9ZdJt6rV6w==} engines: {node: '>=12.0.0'} peerDependencies: @@ -2426,20 +2426,20 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@emotion/react': 11.10.8(@types/react@18.2.4)(react@18.2.0) - '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.4)(react@18.2.0) - '@mui/private-theming': 5.12.3(@types/react@18.2.4)(react@18.2.0) + '@emotion/react': 11.10.8(@types/react@18.2.5)(react@18.2.0) + '@emotion/styled': 11.10.8(@emotion/react@11.10.8)(@types/react@18.2.5)(react@18.2.0) + '@mui/private-theming': 5.12.3(@types/react@18.2.5)(react@18.2.0) '@mui/styled-engine': 5.12.3(@emotion/react@11.10.8)(@emotion/styled@11.10.8)(react@18.2.0) - '@mui/types': 7.2.4(@types/react@18.2.4) + '@mui/types': 7.2.4(@types/react@18.2.5) '@mui/utils': 5.12.3(react@18.2.0) - '@types/react': 18.2.4 + '@types/react': 18.2.5 clsx: 1.2.1 csstype: 3.1.2 prop-types: 15.8.1 react: 18.2.0 dev: false - /@mui/types@7.2.4(@types/react@18.2.4): + /@mui/types@7.2.4(@types/react@18.2.5): resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==} peerDependencies: '@types/react': '*' @@ -2447,7 +2447,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.4 + '@types/react': 18.2.5 dev: false /@mui/utils@5.12.3(react@18.2.0): @@ -2837,7 +2837,7 @@ packages: /@types/qrcode.react@1.0.2: resolution: {integrity: sha512-I9Oq5Cjlkgy3Tw7krCnCXLw2/zMhizkTere49OOcta23tkvH0xBTP0yInimTh0gstLRtb8Ki9NZVujE5UI6ffQ==} dependencies: - '@types/react': 18.2.4 + '@types/react': 18.2.5 dev: true /@types/qs@6.9.7: @@ -2851,23 +2851,23 @@ packages: /@types/react-dom@18.2.3: resolution: {integrity: sha512-hxXEXWxFJXbY0LMj/T69mznqOZJXNtQMqVxIiirVAZnnpeYiD4zt+lPsgcr/cfWg2VLsxZ1y26vigG03prYB+Q==} dependencies: - '@types/react': 18.2.4 + '@types/react': 18.2.5 dev: true /@types/react-is@17.0.3: resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==} dependencies: - '@types/react': 18.2.4 + '@types/react': 18.2.5 dev: false /@types/react-transition-group@4.4.5: resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==} dependencies: - '@types/react': 18.2.4 + '@types/react': 18.2.5 dev: false - /@types/react@18.2.4: - resolution: {integrity: sha512-IvAIhJTmKAAJmCIcaa6+5uagjyh+9GvcJ/thPZcw+i+vx+22eHlTy2Q1bJg/prES57jehjebq9DnIhOTtIhmLw==} + /@types/react@18.2.5: + resolution: {integrity: sha512-RuoMedzJ5AOh23Dvws13LU9jpZHIc/k90AgmK7CecAYeWmSr3553L4u5rk4sWAPBuQosfT7HmTfG4Rg5o4nGEA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 From cf63e52030b7b0f74afe1ec1cbd7b725ebab1ff2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 07:59:22 +1000 Subject: [PATCH 6/8] build(deps): update dependency vite-plugin-svgr to v3 (#5371) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- web/package.json | 2 +- web/pnpm-lock.yaml | 93 ++++++++++++++++++++++------------------------ 2 files changed, 46 insertions(+), 49 deletions(-) diff --git a/web/package.json b/web/package.json index 0f228baa4..59e453cd8 100644 --- a/web/package.json +++ b/web/package.json @@ -100,7 +100,7 @@ "vite": "4.3.4", "vite-plugin-eslint": "1.8.1", "vite-plugin-istanbul": "4.0.1", - "vite-plugin-svgr": "2.4.0", + "vite-plugin-svgr": "3.2.0", "vite-tsconfig-paths": "4.2.0", "vitest": "0.31.0", "vitest-preview": "0.0.1" diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml index d8b86b6da..a40067889 100644 --- a/web/pnpm-lock.yaml +++ b/web/pnpm-lock.yaml @@ -178,8 +178,8 @@ devDependencies: specifier: 4.0.1 version: 4.0.1(vite@4.3.4) vite-plugin-svgr: - specifier: 2.4.0 - version: 2.4.0(vite@4.3.4) + specifier: 3.2.0 + version: 3.2.0(vite@4.3.4) vite-tsconfig-paths: specifier: 4.2.0 version: 4.2.0(typescript@5.0.4)(vite@4.3.4) @@ -2542,9 +2542,9 @@ packages: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} dev: true - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} - engines: {node: '>=10'} + /@svgr/babel-plugin-add-jsx-attribute@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-khWbXesWIP9v8HuKCl2NU2HNAyqpSQ/vkIl36Nbn4HIwEYSRWL0H7Gs6idJdha2DkpFDWlsqMELvoCE8lfFY6Q==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2569,44 +2569,44 @@ packages: '@babel/core': 7.21.4 dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} - engines: {node: '>=10'} + /@svgr/babel-plugin-replace-jsx-attribute-value@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-i6MaAqIZXDOJeikJuzocByBf8zO+meLwfQ/qMHIjCcvpnfvWf82PFvredEZElErB5glQFJa2KVKk8N2xV6tRRA==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 dev: true - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} - engines: {node: '>=10'} + /@svgr/babel-plugin-svg-dynamic-title@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-BoVSh6ge3SLLpKC0pmmN9DFlqgFy4NxNgdZNLPNJWBUU7TQpDWeBuyVuDW88iXydb5Cv0ReC+ffa5h3VrKfk1w==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 dev: true - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} - engines: {node: '>=10'} + /@svgr/babel-plugin-svg-em-dimensions@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-tNDcBa+hYn0gO+GkP/AuNKdVtMufVhU9fdzu+vUQsR18RIJ9RWe7h/pSBY338RO08wArntwbDk5WhQBmhf2PaA==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 dev: true - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} - engines: {node: '>=10'} + /@svgr/babel-plugin-transform-react-native-svg@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-qw54u8ljCJYL2KtBOjI5z7Nzg8LnSvQOP5hPKj77H4VQL4+HdKbAT5pnkkZLmHKYwzsIHSYKXxHouD8zZamCFQ==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} + /@svgr/babel-plugin-transform-svg-component@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-CcFECkDj98daOg9jE3Bh3uyD9kzevCAnZ+UtzG6+BQG/jOQ2OA3jHnX6iG4G1MCJkUQFnUvEv33NvQfqrb/F3A==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2614,54 +2614,50 @@ packages: '@babel/core': 7.21.4 dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.21.4): - resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} - engines: {node: '>=10'} + /@svgr/babel-preset@7.0.0(@babel/core@7.21.4): + resolution: {integrity: sha512-EX/NHeFa30j5UjldQGVQikuuQNHUdGmbh9kEpBKofGUtF0GUPJ4T4rhoYiqDAOmBOxojyot36JIFiDUHUK1ilQ==} + engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.4) + '@svgr/babel-plugin-add-jsx-attribute': 7.0.0(@babel/core@7.21.4) '@svgr/babel-plugin-remove-jsx-attribute': 7.0.0(@babel/core@7.21.4) '@svgr/babel-plugin-remove-jsx-empty-expression': 7.0.0(@babel/core@7.21.4) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.4) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.4) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.4) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.4) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.4) + '@svgr/babel-plugin-replace-jsx-attribute-value': 7.0.0(@babel/core@7.21.4) + '@svgr/babel-plugin-svg-dynamic-title': 7.0.0(@babel/core@7.21.4) + '@svgr/babel-plugin-svg-em-dimensions': 7.0.0(@babel/core@7.21.4) + '@svgr/babel-plugin-transform-react-native-svg': 7.0.0(@babel/core@7.21.4) + '@svgr/babel-plugin-transform-svg-component': 7.0.0(@babel/core@7.21.4) dev: true - /@svgr/core@6.5.1: - resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} - engines: {node: '>=10'} + /@svgr/core@7.0.0: + resolution: {integrity: sha512-ztAoxkaKhRVloa3XydohgQQCb0/8x9T63yXovpmHzKMkHO6pkjdsIAWKOS4bE95P/2quVh1NtjSKlMRNzSBffw==} + engines: {node: '>=14'} dependencies: '@babel/core': 7.21.4 - '@svgr/babel-preset': 6.5.1(@babel/core@7.21.4) - '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) + '@svgr/babel-preset': 7.0.0(@babel/core@7.21.4) camelcase: 6.3.0 - cosmiconfig: 7.1.0 + cosmiconfig: 8.1.3 transitivePeerDependencies: - supports-color dev: true - /@svgr/hast-util-to-babel-ast@6.5.1: - resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} - engines: {node: '>=10'} + /@svgr/hast-util-to-babel-ast@7.0.0: + resolution: {integrity: sha512-42Ej9sDDEmsJKjrfQ1PHmiDiHagh/u9AHO9QWbeNx4KmD9yS5d1XHmXUNINfUcykAU+4431Cn+k6Vn5mWBYimQ==} + engines: {node: '>=14'} dependencies: '@babel/types': 7.21.4 entities: 4.4.0 dev: true - /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1): - resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/core': ^6.0.0 + /@svgr/plugin-jsx@7.0.0: + resolution: {integrity: sha512-SWlTpPQmBUtLKxXWgpv8syzqIU8XgFRvyhfkam2So8b3BE0OS0HPe5UfmlJ2KIC+a7dpuuYovPR2WAQuSyMoPw==} + engines: {node: '>=14'} dependencies: '@babel/core': 7.21.4 - '@svgr/babel-preset': 6.5.1(@babel/core@7.21.4) - '@svgr/core': 6.5.1 - '@svgr/hast-util-to-babel-ast': 6.5.1 + '@svgr/babel-preset': 7.0.0(@babel/core@7.21.4) + '@svgr/hast-util-to-babel-ast': 7.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color @@ -7466,13 +7462,14 @@ packages: - supports-color dev: true - /vite-plugin-svgr@2.4.0(vite@4.3.4): - resolution: {integrity: sha512-q+mJJol6ThvqkkJvvVFEndI4EaKIjSI0I3jNFgSoC9fXAz1M7kYTVUin8fhUsFojFDKZ9VHKtX6NXNaOLpbsHA==} + /vite-plugin-svgr@3.2.0(vite@4.3.4): + resolution: {integrity: sha512-Uvq6niTvhqJU6ga78qLKBFJSDvxWhOnyfQSoKpDPMAGxJPo5S3+9hyjExE5YDj6Lpa4uaLkGc1cBgxXov+LjSw==} peerDependencies: vite: ^2.6.0 || 3 || 4 dependencies: '@rollup/pluginutils': 5.0.2 - '@svgr/core': 6.5.1 + '@svgr/core': 7.0.0 + '@svgr/plugin-jsx': 7.0.0 vite: 4.3.4(@types/node@18.16.3) transitivePeerDependencies: - rollup From 96d14c5f532912bbe476418cc2e76d4e8a61dfa7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 08:10:27 +1000 Subject: [PATCH 7/8] build(deps): update module golang.org/x/sync to v0.2.0 (#5385) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index e4a0cd907..5f1562509 100644 --- a/go.mod +++ b/go.mod @@ -46,7 +46,7 @@ require ( github.com/valyala/fasthttp v1.47.0 github.com/wneessen/go-mail v0.3.9 golang.org/x/net v0.9.0 - golang.org/x/sync v0.1.0 + golang.org/x/sync v0.2.0 golang.org/x/term v0.7.0 golang.org/x/text v0.9.0 gopkg.in/square/go-jose.v2 v2.6.0 diff --git a/go.sum b/go.sum index 26060e47d..baa0d2e68 100644 --- a/go.sum +++ b/go.sum @@ -583,8 +583,9 @@ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.2.0 h1:PUR+T4wwASmuSTYdKjYHI5TD22Wy5ogLU5qZCOLxBrI= +golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= From 5eee13a04e4d1ab893dfb1e5ba8a9aeb0e606c90 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 5 May 2023 08:22:01 +1000 Subject: [PATCH 8/8] build(deps): update module golang.org/x/term to v0.8.0 (#5386) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- go.mod | 4 ++-- go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 5f1562509..a5ca1d37a 100644 --- a/go.mod +++ b/go.mod @@ -47,7 +47,7 @@ require ( github.com/wneessen/go-mail v0.3.9 golang.org/x/net v0.9.0 golang.org/x/sync v0.2.0 - golang.org/x/term v0.7.0 + golang.org/x/term v0.8.0 golang.org/x/text v0.9.0 gopkg.in/square/go-jose.v2 v2.6.0 gopkg.in/yaml.v3 v3.0.1 @@ -118,7 +118,7 @@ require ( golang.org/x/crypto v0.7.0 // indirect golang.org/x/mod v0.10.0 // indirect golang.org/x/oauth2 v0.5.0 // indirect - golang.org/x/sys v0.7.0 // indirect + golang.org/x/sys v0.8.0 // indirect golang.org/x/tools v0.7.0 // indirect google.golang.org/appengine v1.6.7 // indirect google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd // indirect diff --git a/go.sum b/go.sum index baa0d2e68..6fd047db3 100644 --- a/go.sum +++ b/go.sum @@ -634,13 +634,13 @@ golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= -golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= +golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=