From e8932d12827819faa005052bb0ffa991740cb3d2 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 26 Jun 2024 09:29:20 -0400 Subject: [PATCH 01/23] [Fix] Updates table `nullMessage` descriptions (#10789) * Update Default message for an empty table * Move messages to tableMessages * Remove description fallback * Add nullMessage description for tables with add * Add custom nullMessage descriptions for tables with add * Remove unreferenced message --- .../Table/ResponsiveTable/NullMessage.tsx | 21 ++------ .../web/src/components/Table/tableMessages.ts | 8 +-- apps/web/src/lang/fr.json | 52 ++++++++++++++----- .../components/ClassificationTable.tsx | 8 +++ .../components/DepartmentTable.tsx | 7 +++ .../IndexPoolPage/components/PoolTable.tsx | 7 +++ .../components/SkillFamilyTable.tsx | 8 +++ .../pages/Skills/components/SkillTable.tsx | 7 +++ .../components/TeamTable/TeamTable.tsx | 7 +++ .../Teams/TeamMembersPage/TeamMembersPage.tsx | 7 +++ .../components/IndividualRoleTable.tsx | 7 +++ .../components/TeamRoleTable.tsx | 8 +++ 12 files changed, 115 insertions(+), 32 deletions(-) diff --git a/apps/web/src/components/Table/ResponsiveTable/NullMessage.tsx b/apps/web/src/components/Table/ResponsiveTable/NullMessage.tsx index 98c297a3b2c..ac2a5e632ee 100644 --- a/apps/web/src/components/Table/ResponsiveTable/NullMessage.tsx +++ b/apps/web/src/components/Table/ResponsiveTable/NullMessage.tsx @@ -3,6 +3,8 @@ import { ReactNode } from "react"; import { Heading, Well } from "@gc-digital-talent/ui"; +import tableMessages from "../tableMessages"; + export interface NullMessageProps { /** Heading for the message */ title?: ReactNode; @@ -23,23 +25,10 @@ const NullMessage = ({ title, description }: NullMessageProps) => { return ( - - {title || - intl.formatMessage({ - defaultMessage: "There aren't any items here yet.", - id: "H5kSPB", - description: "Default message for an empty table", - })} + + {title || intl.formatMessage(tableMessages.noItemsTitle)} -

- {description || - intl.formatMessage({ - defaultMessage: - 'Get started by adding an item using the "Add a new item" button provided.', - id: "/GIL9l", - description: "Default description for an empty table", - })} -

+ {description &&

{description}

}
); }; diff --git a/apps/web/src/components/Table/tableMessages.ts b/apps/web/src/components/Table/tableMessages.ts index 7f34368e0b8..f024dc55833 100644 --- a/apps/web/src/components/Table/tableMessages.ts +++ b/apps/web/src/components/Table/tableMessages.ts @@ -1,10 +1,10 @@ import { defineMessages } from "react-intl"; const messages = defineMessages({ - noItems: { - defaultMessage: "There are no items to display.", - id: "cIqhQK", - description: "Message when there is no data to display in a table", + noItemsTitle: { + defaultMessage: "There aren't any items here.", + id: "84XrK+", + description: "Default message for an empty table", }, }); diff --git a/apps/web/src/lang/fr.json b/apps/web/src/lang/fr.json index 3b1604bdd8c..c6179a3b47b 100644 --- a/apps/web/src/lang/fr.json +++ b/apps/web/src/lang/fr.json @@ -191,6 +191,10 @@ "defaultMessage": "Voir {name} {hiddenLabel}", "description": "Title displayed for the View Item column." }, + "+zSc5y": { + "defaultMessage": "Utilisez le bouton \"Créer une équipe\" pour commencer.", + "description": "Instructions for adding a team item." + }, "/+naWC": { "defaultMessage": "À évaluer", "description": "Message displayed when candidate has yet to be assessed at a specific assessment step" @@ -231,10 +235,6 @@ "defaultMessage": "J'envisagerais d'accepter un emploi d'une durée de...", "description": "Legend Text for required work preferences options in work preferences form" }, - "/GIL9l": { - "defaultMessage": "Ajoutez un élément pour commencer en cliquant sur le bouton afficher « Ajouter un nouvel élément ».", - "description": "Default description for an empty table" - }, "/I7wrY": { "defaultMessage": "Lier des compétences en vedette", "description": "Title for skills on Experience form" @@ -351,6 +351,10 @@ "defaultMessage": "Statut du bassin de candidats", "description": "Label for the current applications pool status" }, + "/pbxol": { + "defaultMessage": "Utilisez le bouton \"Ajouter une nouvelle adhésion\" pour commencer.", + "description": "Instructions for adding team membership to a user." + }, "/qN7tM": { "defaultMessage": "Expérience supprimée", "description": "Message displayed to user after experience deleted." @@ -403,6 +407,10 @@ "defaultMessage": "Avez-vous d'autres questions? N'hésitez pas à communiquer avec notre équipe pour obtenir de plus amples renseignements. ", "description": "Third paragraph for pool closing date dialog" }, + "07sCDh": { + "defaultMessage": "Utilisez le bouton \"Créer un processus\" pour commencer.", + "description": "Instructions for adding a process item." + }, "08rkLr": { "defaultMessage": "Durée de la possibilité", "description": "Label for a process' opportunity employment duration" @@ -531,6 +539,10 @@ "defaultMessage": "Complet", "description": "Simplified status label for a complete process advertisement or assessment" }, + "0jwdac": { + "defaultMessage": "Utilisez le bouton \"Créer une compétence\" pour commencer.", + "description": "Instructions for adding a skill item." + }, "0k6j4V": { "defaultMessage": "Tâches de travail (anglais)", "description": "Label for a process' English work tasks" @@ -1819,6 +1831,10 @@ "defaultMessage": "J'envisagerais d'accepter un emploi qui...", "description": "Legend for optional work preferences check list in work preferences form" }, + "84XrK+": { + "defaultMessage": "On ne trouve aucun élément ici.", + "description": "Default message for an empty table" + }, "84rSVg": { "defaultMessage": "Permettre une croissance dans le cadre de sa portée de recrutement, en ciblant d’autres domaines professionnels à l’avenir.", "description": "Talent portal strategy item 2 content" @@ -3463,10 +3479,6 @@ "defaultMessage": "En savoir plus sur cette possibilité et commencer à rédiger une demande d'emploi.", "description": "Subtitle for a pool advertisement page" }, - "H5kSPB": { - "defaultMessage": "On ne trouve aucun élément jusqu’à présent.", - "description": "Default message for an empty table" - }, "H8cs1r": { "defaultMessage": "Services consultatifs auprès des secteurs d’activité de la TI", "description": "Title for the 'business line advisory services' IT work stream" @@ -5479,6 +5491,10 @@ "defaultMessage": "Vous recevrez des candidats qui ont :", "description": "Title for the candidate list in the 'Indigenous talent ready for IT apprenticeships' section" }, + "SfbDLA": { + "defaultMessage": "Utilisez le bouton \"Ajouter un nouveau membre\" pour commencer.", + "description": "Instructions for adding a member to a team." + }, "SfhT1q": { "defaultMessage": "Acquérir de l'expérience en matière d'embauche", "description": "Title to get hiring experience" @@ -5647,6 +5663,10 @@ "defaultMessage": "Solutions logicielles de la TI", "description": "Title for the 'software solutions' IT work stream" }, + "Tl2FNA": { + "defaultMessage": "Utilisez le bouton \"Créer une classification\" pour commencer.", + "description": "Instructions for adding a classification item." + }, "TomxAe": { "defaultMessage": "{time} le {date}", "description": "A datetime formatted as a certain time on a certain date" @@ -6086,6 +6106,10 @@ "defaultMessage": "{title} évaluation - {skillName}", "description": "Header for application screening decision dialog." }, + "WCOVvw": { + "defaultMessage": "Utilisez le bouton \"Ajouter un nouveau rôle\" pour commencer.", + "description": "Instructions for adding a role to a user." + }, "WDKT2K": { "defaultMessage": "Qu'est-ce qu'une CléGC?", "description": "GCKey question for what is GCKey" @@ -7274,10 +7298,6 @@ "defaultMessage": "Candidature", "description": "Label for the application link column" }, - "cIqhQK": { - "defaultMessage": "Il n'y a aucun élément à afficher.", - "description": "Message when there is no data to display in a table" - }, "cL3OoZ": { "defaultMessage": "Notification non lue", "description": "Link text to show unread notifications" @@ -11302,6 +11322,10 @@ "defaultMessage": "Un code d’identification de dossier personnel (CIDP)", "description": "Item 4 in the candidate list in the 'Indigenous talent ready for IT apprenticeships' section" }, + "yat9wx": { + "defaultMessage": "Utilisez le bouton \"Créer un ministère\" pour commencer.", + "description": "Instructions for adding a department item." + }, "ybzxmU": { "defaultMessage": "Membre des FAC", "description": "Veteran/member label" @@ -11478,6 +11502,10 @@ "defaultMessage": "Sélectionner des compétences dans votre bibliothèque ou en ajouter de toutes nouvelles.", "description": "Subtitle for the find a skill dialog within the skill showcase" }, + "zp1ShM": { + "defaultMessage": "Utilisez le bouton \"Créer une famille de compétences\" pour commencer.", + "description": "Instructions for adding a skill family item." + }, "zp8FqH": { "defaultMessage": "Vos réponses aux questions de présélection seront évaluées dans le cadre de votre demande d'emploi. Veillez donc à consacrer à chaque question le temps et la réflexion nécessaires pour donner une réponse qui vous reflète réellement votre identité et votre expérience.", "description": "Application step for additional questions, introduction description, paragraph two" diff --git a/apps/web/src/pages/Classifications/components/ClassificationTable.tsx b/apps/web/src/pages/Classifications/components/ClassificationTable.tsx index f88ab6c54b2..02790f7a203 100644 --- a/apps/web/src/pages/Classifications/components/ClassificationTable.tsx +++ b/apps/web/src/pages/Classifications/components/ClassificationTable.tsx @@ -157,6 +157,14 @@ export const ClassificationTable = ({ from: currentUrl, }, }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: + 'Use the "Create Classification" button to get started.', + id: "Tl2FNA", + description: "Instructions for adding a classification item.", + }), + }} /> ); }; diff --git a/apps/web/src/pages/Departments/components/DepartmentTable.tsx b/apps/web/src/pages/Departments/components/DepartmentTable.tsx index bfb68757b4f..77d40221903 100644 --- a/apps/web/src/pages/Departments/components/DepartmentTable.tsx +++ b/apps/web/src/pages/Departments/components/DepartmentTable.tsx @@ -111,6 +111,13 @@ export const DepartmentTable = ({ from: currentUrl, }, }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: 'Use the "Create Department" button to get started.', + id: "yat9wx", + description: "Instructions for adding a department item.", + }), + }} /> ); }; diff --git a/apps/web/src/pages/Pools/IndexPoolPage/components/PoolTable.tsx b/apps/web/src/pages/Pools/IndexPoolPage/components/PoolTable.tsx index 1a8fd21d3ac..54fc6a77c71 100644 --- a/apps/web/src/pages/Pools/IndexPoolPage/components/PoolTable.tsx +++ b/apps/web/src/pages/Pools/IndexPoolPage/components/PoolTable.tsx @@ -440,6 +440,13 @@ const PoolTable = ({ title, initialFilterInput }: PoolTableProps) => { }), }, }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: 'Use the "Create process" button to get started.', + id: "07sCDh", + description: "Instructions for adding a process item.", + }), + }} /> ); }; diff --git a/apps/web/src/pages/SkillFamilies/components/SkillFamilyTable.tsx b/apps/web/src/pages/SkillFamilies/components/SkillFamilyTable.tsx index 7d467d12837..4aa80c938b5 100644 --- a/apps/web/src/pages/SkillFamilies/components/SkillFamilyTable.tsx +++ b/apps/web/src/pages/SkillFamilies/components/SkillFamilyTable.tsx @@ -108,6 +108,14 @@ export const SkillFamilyTable = ({ from: currentUrl, }, }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: + 'Use the "Create Skill Family" button to get started.', + id: "zp1ShM", + description: "Instructions for adding a skill family item.", + }), + }} /> ); }; diff --git a/apps/web/src/pages/Skills/components/SkillTable.tsx b/apps/web/src/pages/Skills/components/SkillTable.tsx index 16d01fddd83..07927e04f1a 100644 --- a/apps/web/src/pages/Skills/components/SkillTable.tsx +++ b/apps/web/src/pages/Skills/components/SkillTable.tsx @@ -300,6 +300,13 @@ const SkillTable = ({ } : undefined } + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: 'Use the "Create skill" button to get started.', + id: "0jwdac", + description: "Instructions for adding a skill item.", + }), + }} filter={{ state: filterState, component: ( diff --git a/apps/web/src/pages/Teams/IndexTeamPage/components/TeamTable/TeamTable.tsx b/apps/web/src/pages/Teams/IndexTeamPage/components/TeamTable/TeamTable.tsx index f38885e69b3..d8caa5af074 100644 --- a/apps/web/src/pages/Teams/IndexTeamPage/components/TeamTable/TeamTable.tsx +++ b/apps/web/src/pages/Teams/IndexTeamPage/components/TeamTable/TeamTable.tsx @@ -158,6 +158,13 @@ export const TeamTable = ({ from: currentUrl, }, }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: 'Use the "Create Team" button to get started.', + id: "+zSc5y", + description: "Instructions for adding a team item.", + }), + }} /> ); }; diff --git a/apps/web/src/pages/Teams/TeamMembersPage/TeamMembersPage.tsx b/apps/web/src/pages/Teams/TeamMembersPage/TeamMembersPage.tsx index e2c4415f3bf..24116c78153 100644 --- a/apps/web/src/pages/Teams/TeamMembersPage/TeamMembersPage.tsx +++ b/apps/web/src/pages/Teams/TeamMembersPage/TeamMembersPage.tsx @@ -125,6 +125,13 @@ const TeamMembers = ({ teamQuery }: TeamMembersProps) => { add: { component: , }, + nullMessage: { + description: intl.formatMessage({ + defaultMessage: 'Use the "Add new member" button to get started.', + id: "SfbDLA", + description: "Instructions for adding a member to a team.", + }), + }, })} /> diff --git a/apps/web/src/pages/Users/UpdateUserPage/components/IndividualRoleTable.tsx b/apps/web/src/pages/Users/UpdateUserPage/components/IndividualRoleTable.tsx index 92fcf6f7eb4..12a06df972c 100644 --- a/apps/web/src/pages/Users/UpdateUserPage/components/IndividualRoleTable.tsx +++ b/apps/web/src/pages/Users/UpdateUserPage/components/IndividualRoleTable.tsx @@ -100,6 +100,13 @@ const IndividualRoleTable = ({ /> ), }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: 'Use the "Add new role" button to get started.', + id: "WCOVvw", + description: "Instructions for adding a role to a user.", + }), + }} /> ); diff --git a/apps/web/src/pages/Users/UpdateUserPage/components/TeamRoleTable.tsx b/apps/web/src/pages/Users/UpdateUserPage/components/TeamRoleTable.tsx index c1a764edef1..b6ada1474da 100644 --- a/apps/web/src/pages/Users/UpdateUserPage/components/TeamRoleTable.tsx +++ b/apps/web/src/pages/Users/UpdateUserPage/components/TeamRoleTable.tsx @@ -178,6 +178,14 @@ const TeamRoleTable = ({ /> ), }} + nullMessage={{ + description: intl.formatMessage({ + defaultMessage: + 'Use the "Add new membership" button to get started.', + id: "/pbxol", + description: "Instructions for adding team membership to a user.", + }), + }} /> ); From b9e01a17ce68aff1b950e7b6cedb907d1ce67c20 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 26 Jun 2024 12:44:53 -0400 Subject: [PATCH 02/23] [Feature] Adds Storybook `ToastDecorator` (#10792) * Add ToastDecorator * Remove Toast * Move ToastDecorator to avoid circular dependency * Remove problematic import --- apps/web/.storybook/preview.js | 2 ++ .../SkillBrowser/SkillBrowserDialog.stories.tsx | 8 +------- .../src/components/ToastDecorator/ToastDecorator.tsx | 12 ++++++++++++ .../toast/src/components/ToastDecorator/index.ts | 3 +++ packages/toast/src/index.tsx | 3 ++- 5 files changed, 20 insertions(+), 8 deletions(-) create mode 100644 packages/toast/src/components/ToastDecorator/ToastDecorator.tsx create mode 100644 packages/toast/src/components/ToastDecorator/index.ts diff --git a/apps/web/.storybook/preview.js b/apps/web/.storybook/preview.js index 4ad595c3c6f..e7df930d37d 100644 --- a/apps/web/.storybook/preview.js +++ b/apps/web/.storybook/preview.js @@ -8,6 +8,7 @@ import { ThemeDecorator, VIEWPORTS, } from "@gc-digital-talent/storybook-helpers"; +import { ToastDecorator } from "@gc-digital-talent/toast"; import { richTextElements as defaultRichTextElements } from "@gc-digital-talent/i18n"; import frCommonCompiled from "@gc-digital-talent/i18n/frCompiled.json"; @@ -62,6 +63,7 @@ export const parameters = { export const decorators = [ FeatureFlagDecorator, HelmetDecorator, + ToastDecorator, ReducedMotionDecorator, MockGraphqlDecorator, ThemeDecorator, diff --git a/apps/web/src/components/SkillBrowser/SkillBrowserDialog.stories.tsx b/apps/web/src/components/SkillBrowser/SkillBrowserDialog.stories.tsx index 21f3525d59c..cf491e1d17d 100644 --- a/apps/web/src/components/SkillBrowser/SkillBrowserDialog.stories.tsx +++ b/apps/web/src/components/SkillBrowser/SkillBrowserDialog.stories.tsx @@ -3,7 +3,6 @@ import { action } from "@storybook/addon-actions"; import { faker } from "@faker-js/faker/locale/en"; import { OverlayOrDialogDecorator } from "@gc-digital-talent/storybook-helpers"; -import Toast from "@gc-digital-talent/toast"; import { getStaticSkills } from "@gc-digital-talent/fake-data"; import { Skill } from "@gc-digital-talent/graphql"; @@ -29,12 +28,7 @@ const Template: StoryFn = (args) => { }); }; - return ( - <> - - - - ); + return ; }; export const Default = Template.bind({}); diff --git a/packages/toast/src/components/ToastDecorator/ToastDecorator.tsx b/packages/toast/src/components/ToastDecorator/ToastDecorator.tsx new file mode 100644 index 00000000000..895d615eccf --- /dev/null +++ b/packages/toast/src/components/ToastDecorator/ToastDecorator.tsx @@ -0,0 +1,12 @@ +import { StoryFn } from "@storybook/react"; + +import Toast from "../Toast"; + +const ToastDecorator = (Story: StoryFn) => ( + <> + + + +); + +export default ToastDecorator; diff --git a/packages/toast/src/components/ToastDecorator/index.ts b/packages/toast/src/components/ToastDecorator/index.ts new file mode 100644 index 00000000000..c2759ec75b8 --- /dev/null +++ b/packages/toast/src/components/ToastDecorator/index.ts @@ -0,0 +1,3 @@ +import ToastDecorator from "./ToastDecorator"; + +export default ToastDecorator; diff --git a/packages/toast/src/index.tsx b/packages/toast/src/index.tsx index d482eb8b748..64aa852f889 100644 --- a/packages/toast/src/index.tsx +++ b/packages/toast/src/index.tsx @@ -1,5 +1,6 @@ import toast from "./toast"; import Toast from "./components/Toast"; +import ToastDecorator from "./components/ToastDecorator"; export default Toast; -export { toast }; +export { toast, ToastDecorator }; From b9c15a38dbf5ca39141460a26d657692f2578b99 Mon Sep 17 00:00:00 2001 From: Peter Giles <8978655+petertgiles@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:40:29 -0400 Subject: [PATCH 03/23] [Fix] Add postgresql client to app service (#10781) * add client to post-deploy * update local env docker to match * bug fixes --- Makefile | 2 +- docker-compose.yml | 5 +++-- infrastructure/bin/post_deployment.sh | 2 +- infrastructure/maintenance-container/Dockerfile | 2 +- infrastructure/webserver.Dockerfile | 9 +++++++++ 5 files changed, 15 insertions(+), 5 deletions(-) create mode 100644 infrastructure/webserver.Dockerfile diff --git a/Makefile b/Makefile index 590e403aca8..8f419aefa78 100644 --- a/Makefile +++ b/Makefile @@ -45,4 +45,4 @@ lint-php: $(DOCKER_API) "vendor/bin/pint --test" queue-work: - docker-compose exec sh -c "runuser -u www-data -- php /home/site/wwwroot/api/artisan queue:work" + docker-compose exec webserver sh -c "runuser -u www-data -- php /home/site/wwwroot/api/artisan queue:work" diff --git a/docker-compose.yml b/docker-compose.yml index 2d4328b8332..2515aa50e52 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -21,8 +21,9 @@ services: - 8080:8080 webserver: - # All images: https://mcr.microsoft.com/v2/appsvc/php/tags/list - image: mcr.microsoft.com/appsvc/php:8.2-fpm-xdebug_20230908.3.tuxprod + build: + context: ./ + dockerfile: infrastructure/webserver.Dockerfile restart: always volumes: - ./:/home/site/wwwroot diff --git a/infrastructure/bin/post_deployment.sh b/infrastructure/bin/post_deployment.sh index ecf47ea0b67..14bd4829715 100755 --- a/infrastructure/bin/post_deployment.sh +++ b/infrastructure/bin/post_deployment.sh @@ -28,7 +28,7 @@ fi BLOCKS="{ \"type\": \"header\", \"text\": { \"type\": \"plain_text\", \"text\": \"Post-deployment script was run\" } }" # Install packages from repository -if apt-get update && apt-get install -y supervisor cron; then +if apt-get update && apt-get install --yes --no-install-recommends supervisor cron postgresql-client; then add_section_block ":white_check_mark: Install packages from repository *successful*." else add_section_block ":X: Install packages from repository *failed*. $MENTION" diff --git a/infrastructure/maintenance-container/Dockerfile b/infrastructure/maintenance-container/Dockerfile index d5b1a20596b..1e31a38f62c 100644 --- a/infrastructure/maintenance-container/Dockerfile +++ b/infrastructure/maintenance-container/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata \ && apt-get install -y perl unzip wget curl \ && apt-get install -y php8.2 php-mbstring php-xml php-pgsql php-zip php-curl php-bcmath php-gd \ - && apt-get install ---yes --no-install-recommends git postgresql-client + && apt-get install --yes --no-install-recommends git postgresql-client # install node from official image # https://gist.github.com/BretFisher/da34530726ff8076b83b583e527e91ed diff --git a/infrastructure/webserver.Dockerfile b/infrastructure/webserver.Dockerfile new file mode 100644 index 00000000000..254d142a857 --- /dev/null +++ b/infrastructure/webserver.Dockerfile @@ -0,0 +1,9 @@ +# This setup should only install things that are set up in infrastructure/bin/post_deployment.sh as well + +# All images: https://mcr.microsoft.com/v2/appsvc/php/tags/list +FROM mcr.microsoft.com/appsvc/php:8.2-fpm-xdebug_20230908.3.tuxprod + +RUN apt-get update \ + && apt-get install --yes --no-install-recommends supervisor cron postgresql-client \ + && apt-get --yes autoremove \ + && apt-get clean From 6d1a72d6c9f4d5a97b2f2188a4152659fb8a6442 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 07:45:43 -0400 Subject: [PATCH 04/23] Bump web-token/jwt-library from 3.4.3 to 3.4.4 in /api (#10800) Bumps [web-token/jwt-library](https://github.com/web-token/jwt-library) from 3.4.3 to 3.4.4. - [Commits](https://github.com/web-token/jwt-library/compare/3.4.3...3.4.4) --- updated-dependencies: - dependency-name: web-token/jwt-library dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- api/composer.lock | 118 ++++++++++++++-------------------------------- 1 file changed, 35 insertions(+), 83 deletions(-) diff --git a/api/composer.lock b/api/composer.lock index 60c88fa824f..118f696f27b 100644 --- a/api/composer.lock +++ b/api/composer.lock @@ -3550,24 +3550,24 @@ }, { "name": "paragonie/constant_time_encoding", - "version": "v2.6.3", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "58c3f47f650c94ec05a151692652a868995d2938" + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", - "reference": "58c3f47f650c94ec05a151692652a868995d2938", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", "shasum": "" }, "require": { - "php": "^7|^8" + "php": "^8" }, "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", - "vimeo/psalm": "^1|^2|^3|^4" + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4|^5" }, "type": "library", "autoload": { @@ -3613,82 +3613,32 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2022-06-14T06:56:20+00:00" - }, - { - "name": "paragonie/random_compat", - "version": "v9.99.100", - "source": { - "type": "git", - "url": "https://github.com/paragonie/random_compat.git", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", - "shasum": "" - }, - "require": { - "php": ">= 7" - }, - "require-dev": { - "phpunit/phpunit": "4.*|5.*", - "vimeo/psalm": "^1" - }, - "suggest": { - "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." - }, - "type": "library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com" - } - ], - "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", - "keywords": [ - "csprng", - "polyfill", - "pseudorandom", - "random" - ], - "support": { - "email": "info@paragonie.com", - "issues": "https://github.com/paragonie/random_compat/issues", - "source": "https://github.com/paragonie/random_compat" - }, - "time": "2020-10-15T08:29:30+00:00" + "time": "2024-05-08T12:36:18+00:00" }, { "name": "paragonie/sodium_compat", - "version": "v1.20.1", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "1840b98d228bdad83869b191d7e51f9bb6624d8d" + "reference": "f65c82939ab17aeff538f9bf6d582f65cc7f255e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/1840b98d228bdad83869b191d7e51f9bb6624d8d", - "reference": "1840b98d228bdad83869b191d7e51f9bb6624d8d", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/f65c82939ab17aeff538f9bf6d582f65cc7f255e", + "reference": "f65c82939ab17aeff538f9bf6d582f65cc7f255e", "shasum": "" }, "require": { - "paragonie/random_compat": ">=1", - "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8" + "php": "^8.1", + "php-64bit": "*" }, "require-dev": { - "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9" + "phpunit/phpunit": "^7|^8|^9", + "vimeo/psalm": "^4|^5" }, "suggest": { - "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.", - "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." + "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security." }, "type": "library", "autoload": { @@ -3747,9 +3697,9 @@ ], "support": { "issues": "https://github.com/paragonie/sodium_compat/issues", - "source": "https://github.com/paragonie/sodium_compat/tree/v1.20.1" + "source": "https://github.com/paragonie/sodium_compat/tree/v2.0.1" }, - "time": "2024-04-05T21:00:10+00:00" + "time": "2024-04-24T12:06:31+00:00" }, { "name": "phpoffice/math", @@ -5889,21 +5839,22 @@ }, { "name": "symfony/http-client", - "version": "v7.0.6", + "version": "v7.1.1", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858" + "reference": "1ec24a54d1885b11e862d6ddab31bd6749720d20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/6e70473909f46fe5dd3b994a0f1b20ecb6b2f858", - "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858", + "url": "https://api.github.com/repos/symfony/http-client/zipball/1ec24a54d1885b11e862d6ddab31bd6749720d20", + "reference": "1ec24a54d1885b11e862d6ddab31bd6749720d20", "shasum": "" }, "require": { "php": ">=8.2", "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-client-contracts": "^3.4.1", "symfony/service-contracts": "^2.5|^3" }, @@ -5930,6 +5881,7 @@ "symfony/http-kernel": "^6.4|^7.0", "symfony/messenger": "^6.4|^7.0", "symfony/process": "^6.4|^7.0", + "symfony/rate-limiter": "^6.4|^7.0", "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", @@ -5961,7 +5913,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v7.0.6" + "source": "https://github.com/symfony/http-client/tree/v7.1.1" }, "funding": [ { @@ -5977,7 +5929,7 @@ "type": "tidelift" } ], - "time": "2024-04-01T20:49:44+00:00" + "time": "2024-05-31T14:57:53+00:00" }, { "name": "symfony/http-client-contracts", @@ -8121,24 +8073,24 @@ }, { "name": "web-token/jwt-library", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/web-token/jwt-library.git", - "reference": "4b09510eec25c328525048cbdf6042a39a7c28d8" + "reference": "48cb17a2c3622ffab69f0d48753e132e1cf23ba6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/web-token/jwt-library/zipball/4b09510eec25c328525048cbdf6042a39a7c28d8", - "reference": "4b09510eec25c328525048cbdf6042a39a7c28d8", + "url": "https://api.github.com/repos/web-token/jwt-library/zipball/48cb17a2c3622ffab69f0d48753e132e1cf23ba6", + "reference": "48cb17a2c3622ffab69f0d48753e132e1cf23ba6", "shasum": "" }, "require": { "brick/math": "^0.9|^0.10|^0.11|^0.12", "ext-json": "*", "ext-mbstring": "*", - "paragonie/constant_time_encoding": "^2.6", - "paragonie/sodium_compat": "^1.20", + "paragonie/constant_time_encoding": "^2.6|^3.0", + "paragonie/sodium_compat": "^1.20|^2.0", "php": ">=8.1", "psr/cache": "^3.0", "psr/clock": "^1.0", @@ -8203,7 +8155,7 @@ ], "support": { "issues": "https://github.com/web-token/jwt-library/issues", - "source": "https://github.com/web-token/jwt-library/tree/3.4.3" + "source": "https://github.com/web-token/jwt-library/tree/3.4.4" }, "funding": [ { @@ -8215,7 +8167,7 @@ "type": "patreon" } ], - "time": "2024-04-17T17:41:33+00:00" + "time": "2024-06-24T16:31:57+00:00" }, { "name": "webmozart/assert", From 6a686bb1b604208a4c1e57919cc46e78f4920809 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:46:07 +0000 Subject: [PATCH 05/23] Bump typescript-eslint from 7.13.1 to 7.14.1 (#10817) Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) from 7.13.1 to 7.14.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/typescript-eslint) --- updated-dependencies: - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/playwright/package.json | 2 +- pnpm-lock.yaml | 141 +++++++++++++++++++++++++++++++++-- 2 files changed, 135 insertions(+), 8 deletions(-) diff --git a/apps/playwright/package.json b/apps/playwright/package.json index bee36f80900..488a39b22c7 100644 --- a/apps/playwright/package.json +++ b/apps/playwright/package.json @@ -26,7 +26,7 @@ "eslint": "^8.57.0", "eslint-plugin-playwright": "^1.6.2", "sinon": "^18.0.0", - "typescript-eslint": "^7.13.1" + "typescript-eslint": "^7.14.1" }, "dependencies": { "@axe-core/playwright": "^4.9.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 70e73499969..646c6e9f072 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -58,8 +58,8 @@ importers: specifier: ^18.0.0 version: 18.0.0 typescript-eslint: - specifier: ^7.13.1 - version: 7.13.1(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.14.1 + version: 7.14.1(eslint@8.57.0)(typescript@5.4.5) apps/web: dependencies: @@ -6971,6 +6971,33 @@ packages: - supports-color dev: true + /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.1 + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.14.1 + '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.14.1 + eslint: 8.57.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A==} engines: {node: ^18.18.0 || >=20.0.0} @@ -6992,6 +7019,27 @@ packages: - supports-color dev: true + /@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 7.14.1 + '@typescript-eslint/types': 7.14.1 + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.14.1 + debug: 4.3.5 + eslint: 8.57.0 + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/scope-manager@5.62.0: resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7024,6 +7072,14 @@ packages: '@typescript-eslint/visitor-keys': 7.13.1 dev: true + /@typescript-eslint/scope-manager@7.14.1: + resolution: {integrity: sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==} + engines: {node: ^18.18.0 || >=20.0.0} + dependencies: + '@typescript-eslint/types': 7.14.1 + '@typescript-eslint/visitor-keys': 7.14.1 + dev: true + /@typescript-eslint/type-utils@7.13.1(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-aWDbLu1s9bmgPGXSzNCxELu+0+HQOapV/y+60gPXafR8e2g1Bifxzevaa+4L2ytCWm+CHqpELq4CSoN9ELiwCg==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7044,6 +7100,26 @@ packages: - supports-color dev: true + /@typescript-eslint/type-utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + debug: 4.3.5 + eslint: 8.57.0 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/types@5.62.0: resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7064,6 +7140,11 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} dev: true + /@typescript-eslint/types@7.14.1: + resolution: {integrity: sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==} + engines: {node: ^18.18.0 || >=20.0.0} + dev: true + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7151,6 +7232,28 @@ packages: - supports-color dev: true + /@typescript-eslint/typescript-estree@7.14.1(typescript@5.4.5): + resolution: {integrity: sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 7.14.1 + '@typescript-eslint/visitor-keys': 7.14.1 + debug: 4.3.5 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.4 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7222,6 +7325,22 @@ packages: - typescript dev: true + /@typescript-eslint/utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 7.14.1 + '@typescript-eslint/types': 7.14.1 + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + /@typescript-eslint/visitor-keys@5.62.0: resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7254,6 +7373,14 @@ packages: eslint-visitor-keys: 3.4.3 dev: true + /@typescript-eslint/visitor-keys@7.14.1: + resolution: {integrity: sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==} + engines: {node: ^18.18.0 || >=20.0.0} + dependencies: + '@typescript-eslint/types': 7.14.1 + eslint-visitor-keys: 3.4.3 + dev: true + /@ungap/structured-clone@1.2.0: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true @@ -14679,8 +14806,8 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /typescript-eslint@7.13.1(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-pvLEuRs8iS9s3Cnp/Wt//hpK8nKc8hVa3cLljHqzaJJQYP8oys8GUyIFqtlev+2lT/fqMPcyQko+HJ6iYK3nFA==} + /typescript-eslint@7.14.1(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-Eo1X+Y0JgGPspcANKjeR6nIqXl4VL5ldXLc15k4m9upq+eY5fhU2IueiEZL6jmHrKH8aCfbIvM/v3IrX5Hg99w==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -14689,9 +14816,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 typescript: 5.4.5 transitivePeerDependencies: From 65123b5d1b9da594c201643eca8c69f63dc84c6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 07:48:01 -0400 Subject: [PATCH 06/23] Bump nuwave/lighthouse from 6.38.0 to 6.38.1 in /api (#10801) Bumps [nuwave/lighthouse](https://github.com/nuwave/lighthouse) from 6.38.0 to 6.38.1. - [Release notes](https://github.com/nuwave/lighthouse/releases) - [Changelog](https://github.com/nuwave/lighthouse/blob/master/CHANGELOG.md) - [Commits](https://github.com/nuwave/lighthouse/compare/v6.38.0...v6.38.1) --- updated-dependencies: - dependency-name: nuwave/lighthouse dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- api/composer.lock | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/api/composer.lock b/api/composer.lock index 118f696f27b..c1d7126aa28 100644 --- a/api/composer.lock +++ b/api/composer.lock @@ -1620,16 +1620,16 @@ }, { "name": "laravel/framework", - "version": "v10.48.13", + "version": "v10.48.14", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "2c6816d697a4362c09c066118addda251b70b98a" + "reference": "27cb4736bb7e60a5311ec73160068dfbcf98336b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/2c6816d697a4362c09c066118addda251b70b98a", - "reference": "2c6816d697a4362c09c066118addda251b70b98a", + "url": "https://api.github.com/repos/laravel/framework/zipball/27cb4736bb7e60a5311ec73160068dfbcf98336b", + "reference": "27cb4736bb7e60a5311ec73160068dfbcf98336b", "shasum": "" }, "require": { @@ -1823,7 +1823,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2024-06-18T16:46:35+00:00" + "time": "2024-06-21T10:06:42+00:00" }, { "name": "laravel/prompts", @@ -3416,16 +3416,16 @@ }, { "name": "nuwave/lighthouse", - "version": "v6.38.0", + "version": "v6.38.1", "source": { "type": "git", "url": "https://github.com/nuwave/lighthouse.git", - "reference": "d15b988aaf18938d39d58ac0bb9c155928b409db" + "reference": "16ffb6f45207b7cb25697730694b14887f736421" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nuwave/lighthouse/zipball/d15b988aaf18938d39d58ac0bb9c155928b409db", - "reference": "d15b988aaf18938d39d58ac0bb9c155928b409db", + "url": "https://api.github.com/repos/nuwave/lighthouse/zipball/16ffb6f45207b7cb25697730694b14887f736421", + "reference": "16ffb6f45207b7cb25697730694b14887f736421", "shasum": "" }, "require": { @@ -3546,7 +3546,7 @@ "type": "patreon" } ], - "time": "2024-06-19T10:13:56+00:00" + "time": "2024-06-21T10:12:39+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -8229,16 +8229,16 @@ }, { "name": "webonyx/graphql-php", - "version": "v15.12.4", + "version": "v15.12.5", "source": { "type": "git", "url": "https://github.com/webonyx/graphql-php.git", - "reference": "4ddba1634c4c2d09c39623d6c13fa550588ed8b1" + "reference": "7bcd31d1dcf67781ed5cb493b22c519c539c05e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/4ddba1634c4c2d09c39623d6c13fa550588ed8b1", - "reference": "4ddba1634c4c2d09c39623d6c13fa550588ed8b1", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/7bcd31d1dcf67781ed5cb493b22c519c539c05e6", + "reference": "7bcd31d1dcf67781ed5cb493b22c519c539c05e6", "shasum": "" }, "require": { @@ -8291,7 +8291,7 @@ ], "support": { "issues": "https://github.com/webonyx/graphql-php/issues", - "source": "https://github.com/webonyx/graphql-php/tree/v15.12.4" + "source": "https://github.com/webonyx/graphql-php/tree/v15.12.5" }, "funding": [ { @@ -8299,7 +8299,7 @@ "type": "open_collective" } ], - "time": "2024-06-19T13:54:11+00:00" + "time": "2024-06-23T11:30:58+00:00" } ], "packages-dev": [ From 5089a995dcaac3b9f07dc53e32d82f59a1d9d0a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 07:53:52 -0400 Subject: [PATCH 07/23] Bump eslint-plugin-jsx-a11y from 6.8.0 to 6.9.0 (#10816) Bumps [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) from 6.8.0 to 6.9.0. - [Release notes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/releases) - [Changelog](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md) - [Commits](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/compare/v6.8.0...v6.9.0) --- updated-dependencies: - dependency-name: eslint-plugin-jsx-a11y dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/eslint-config-custom/package.json | 2 +- pnpm-lock.yaml | 93 +++++++++++++++++----- 2 files changed, 74 insertions(+), 21 deletions(-) diff --git a/packages/eslint-config-custom/package.json b/packages/eslint-config-custom/package.json index 3816b077f2f..214cbcd360b 100644 --- a/packages/eslint-config-custom/package.json +++ b/packages/eslint-config-custom/package.json @@ -16,7 +16,7 @@ "eslint-plugin-deprecation": "^3.0.0", "eslint-plugin-formatjs": "^4.13.3", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-jsx-a11y": "^6.8.0", + "eslint-plugin-jsx-a11y": "^6.9.0", "eslint-plugin-no-only-tests": "^3.1.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^5.1.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 646c6e9f072..47d0b353c80 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -490,7 +490,7 @@ importers: version: 7.13.1(eslint@8.57.0)(typescript@5.4.5) eslint-config-airbnb: specifier: ^19.0.4 - version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0) + version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.9.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.0) @@ -510,8 +510,8 @@ importers: specifier: ^2.29.1 version: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: - specifier: ^6.8.0 - version: 6.8.0(eslint@8.57.0) + specifier: ^6.9.0 + version: 6.9.0(eslint@8.57.0) eslint-plugin-no-only-tests: specifier: ^3.1.0 version: 3.1.0 @@ -7656,6 +7656,12 @@ packages: dependencies: tslib: 2.6.3 + /aria-query@5.1.3: + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + dependencies: + deep-equal: 2.2.3 + dev: true + /aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: @@ -7845,19 +7851,14 @@ packages: engines: {node: '>=4'} dev: true - /axe-core@4.7.0: - resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} - engines: {node: '>=4'} - dev: true - /axe-core@4.9.1: resolution: {integrity: sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==} engines: {node: '>=4'} - /axobject-query@3.2.1: - resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + /axobject-query@3.1.1: + resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} dependencies: - dequal: 2.0.3 + deep-equal: 2.2.3 dev: true /babel-core@7.0.0-bridge.0(@babel/core@7.24.7): @@ -8843,6 +8844,30 @@ packages: babel-plugin-macros: optional: true + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 + es-get-iterator: 1.1.3 + get-intrinsic: 1.2.4 + is-arguments: 1.1.1 + is-array-buffer: 3.0.4 + is-date-object: 1.0.5 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.3 + isarray: 2.0.5 + object-is: 1.1.6 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + side-channel: 1.0.6 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.2 + which-typed-array: 1.1.15 + dev: true + /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true @@ -9210,6 +9235,20 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} + /es-get-iterator@1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + is-arguments: 1.1.1 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.0.7 + isarray: 2.0.5 + stop-iteration-iterator: 1.0.0 + dev: true + /es-iterator-helpers@1.0.19: resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} engines: {node: '>= 0.4'} @@ -9391,7 +9430,7 @@ packages: semver: 6.3.1 dev: true - /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0): + /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.9.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0): resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9404,7 +9443,7 @@ packages: eslint: 8.57.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) + eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) eslint-plugin-react: 7.34.3(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) object.assign: 4.1.5 @@ -9575,19 +9614,18 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): - resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + /eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.0): + resolution: {integrity: sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.24.7 - aria-query: 5.3.0 + aria-query: 5.1.3 array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 ast-types-flow: 0.0.8 - axe-core: 4.7.0 - axobject-query: 3.2.1 + axe-core: 4.9.1 + axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 es-iterator-helpers: 1.0.19 @@ -9596,8 +9634,9 @@ packages: jsx-ast-utils: 3.3.5 language-tags: 1.0.9 minimatch: 3.1.2 - object.entries: 1.1.8 object.fromentries: 2.0.8 + safe-regex-test: 1.0.3 + string.prototype.includes: 2.0.0 dev: true /eslint-plugin-no-only-tests@3.1.0: @@ -14180,6 +14219,13 @@ packages: engines: {node: '>= 0.8'} dev: true + /stop-iteration-iterator@1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + dependencies: + internal-slot: 1.0.7 + dev: true + /store2@2.14.3: resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} dev: true @@ -14248,6 +14294,13 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.1.0 + /string.prototype.includes@2.0.0: + resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==} + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.3 + dev: true + /string.prototype.matchall@4.0.11: resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} engines: {node: '>= 0.4'} From 331f9285556dc1bb0d97ddf7dcc4b39678784974 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 07:56:16 -0400 Subject: [PATCH 08/23] Bump tsx from 4.15.6 to 4.15.7 (#10813) Bumps [tsx](https://github.com/privatenumber/tsx) from 4.15.6 to 4.15.7. - [Release notes](https://github.com/privatenumber/tsx/releases) - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs) - [Commits](https://github.com/privatenumber/tsx/compare/v4.15.6...v4.15.7) --- updated-dependencies: - dependency-name: tsx dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/i18n/package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 478ce82b05b..a034bf2adb2 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -41,7 +41,7 @@ "react-intl": "^6.6.8", "react-router-dom": "^6.23.1", "tsconfig": "workspace:*", - "tsx": "^4.15.6", + "tsx": "^4.15.7", "typescript": "^5.4.5", "yargs": "^17.7.2" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 47d0b353c80..813dfd26c40 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -817,8 +817,8 @@ importers: specifier: workspace:* version: link:../tsconfig tsx: - specifier: ^4.15.6 - version: 4.15.6 + specifier: ^4.15.7 + version: 4.15.7 typescript: specifier: ^5.4.5 version: 5.4.5 @@ -14698,8 +14698,8 @@ packages: typescript: 5.4.5 dev: true - /tsx@4.15.6: - resolution: {integrity: sha512-is0VQQlfNZRHEuSSTKA6m4xw74IU4AizmuB6lAYLRt9XtuyeQnyJYexhNZOPCB59SqC4JzmSzPnHGBXxf3k0hA==} + /tsx@4.15.7: + resolution: {integrity: sha512-u3H0iSFDZM3za+VxkZ1kywdCeHCn+8/qHQS1MNoO2sONDgD95HlWtt8aB23OzeTmFP9IU4/8bZUdg58Uu5J4cg==} engines: {node: '>=18.0.0'} hasBin: true dependencies: From 48330ffa4bf78876c722ffcdaa62bf616e9ddc68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:00:52 -0400 Subject: [PATCH 09/23] Bump @radix-ui/react-dialog from 1.1.0 to 1.1.1 (#10803) Bumps [@radix-ui/react-dialog](https://github.com/radix-ui/primitives) from 1.1.0 to 1.1.1. - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md) - [Commits](https://github.com/radix-ui/primitives/commits) --- updated-dependencies: - dependency-name: "@radix-ui/react-dialog" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/ui/package.json | 2 +- pnpm-lock.yaml | 60 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 58 insertions(+), 4 deletions(-) diff --git a/packages/ui/package.json b/packages/ui/package.json index c848856e042..5618a2b863f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -24,7 +24,7 @@ "@radix-ui/react-accordion": "^1.2.0", "@radix-ui/react-alert-dialog": "^1.1.0", "@radix-ui/react-collapsible": "^1.1.0", - "@radix-ui/react-dialog": "^1.1.0", + "@radix-ui/react-dialog": "^1.1.1", "@radix-ui/react-dropdown-menu": "^2.1.0", "@radix-ui/react-navigation-menu": "^1.2.0", "@radix-ui/react-scroll-area": "^1.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 813dfd26c40..ef29f6d02a5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1113,8 +1113,8 @@ importers: specifier: ^1.1.0 version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-dialog': - specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + specifier: ^1.1.1 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-dropdown-menu': specifier: ^2.1.0 version: 2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -4778,6 +4778,39 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) + dev: false + + /@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@radix-ui/primitive': 1.1.0 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + aria-hidden: 1.2.4 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) /@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1): resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==} @@ -5004,6 +5037,27 @@ packages: '@types/react-dom': 18.3.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + dev: false + + /@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1) + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) /@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==} @@ -5889,7 +5943,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta dependencies: - '@radix-ui/react-dialog': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@storybook/client-logger': 8.1.10 '@storybook/csf': 0.1.8 From 4ac37dacb1d06e04633793d43f8475d6000fa9e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:08:00 -0400 Subject: [PATCH 10/23] Bump framer-motion from 11.2.11 to 11.2.12 (#10815) Bumps [framer-motion](https://github.com/framer/motion) from 11.2.11 to 11.2.12. - [Changelog](https://github.com/framer/motion/blob/main/CHANGELOG.md) - [Commits](https://github.com/framer/motion/compare/v11.2.11...v11.2.12) --- updated-dependencies: - dependency-name: framer-motion dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/web/package.json | 2 +- packages/forms/package.json | 2 +- packages/storybook-helpers/package.json | 2 +- packages/ui/package.json | 2 +- pnpm-lock.yaml | 20 ++++++++++---------- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index fbd929d99ae..048cbcf6335 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -53,7 +53,7 @@ "@tanstack/react-table": "^8.17.3", "dataloader": "^2.2.2", "date-fns": "^3.6.0", - "framer-motion": "^11.2.11", + "framer-motion": "^11.2.12", "graphql": "^16.8.2", "lodash": "^4.17.21", "path-browserify": "^1.0.1", diff --git a/packages/forms/package.json b/packages/forms/package.json index d9cda78c39a..dab1f06e0e4 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -30,7 +30,7 @@ "@tiptap/starter-kit": "^2.4.0", "date-fns": "^3.6.0", "downshift": "^9.0.6", - "framer-motion": "^11.2.11", + "framer-motion": "^11.2.12", "lodash": "^4.17.21", "react-dom": "^18.2.0" }, diff --git a/packages/storybook-helpers/package.json b/packages/storybook-helpers/package.json index 3087555f90e..c824e773f00 100644 --- a/packages/storybook-helpers/package.json +++ b/packages/storybook-helpers/package.json @@ -15,7 +15,7 @@ "@storybook/react": "^8.1.10", "@urql/core": "^5.0.4", "chromatic": "^11.5.4", - "framer-motion": "^11.2.11", + "framer-motion": "^11.2.12", "graphql": "^16.8.2", "lodash": "^4.17.21", "react-helmet-async": "^2.0.5", diff --git a/packages/ui/package.json b/packages/ui/package.json index 5618a2b863f..09f3f79f067 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -35,7 +35,7 @@ "@radix-ui/react-toggle": "^1.1.0", "@radix-ui/react-toggle-group": "^1.1.0", "chromatic": "^11.5.4", - "framer-motion": "^11.2.11", + "framer-motion": "^11.2.12", "lodash": "^4.17.21", "react-csv-downloader": "^3.1.0", "react-dom": "^18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef29f6d02a5..20e81f05fcf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -121,8 +121,8 @@ importers: specifier: ^3.6.0 version: 3.6.0 framer-motion: - specifier: ^11.2.11 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + specifier: ^11.2.12 + version: 11.2.12(react-dom@18.3.1)(react@18.3.1) graphql: specifier: ^16.8.2 version: 16.8.2 @@ -622,8 +622,8 @@ importers: specifier: ^9.0.6 version: 9.0.6(react@18.3.1) framer-motion: - specifier: ^11.2.11 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + specifier: ^11.2.12 + version: 11.2.12(react-dom@18.3.1)(react@18.3.1) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -952,8 +952,8 @@ importers: specifier: ^11.5.4 version: 11.5.4 framer-motion: - specifier: ^11.2.11 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + specifier: ^11.2.12 + version: 11.2.12(react-dom@18.3.1)(react@18.3.1) graphql: specifier: ^16.8.2 version: 16.8.2 @@ -1146,8 +1146,8 @@ importers: specifier: ^11.5.4 version: 11.5.4 framer-motion: - specifier: ^11.2.11 - version: 11.2.11(react-dom@18.3.1)(react@18.3.1) + specifier: ^11.2.12 + version: 11.2.12(react-dom@18.3.1)(react@18.3.1) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -10261,8 +10261,8 @@ packages: engines: {node: '>= 0.6'} dev: true - /framer-motion@11.2.11(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-n+ozoEzgJu/2h9NoQMokF+CwNqIRVyuRC4RwMPwklfrrTjbVV32k9uBIgqYAwn7Jfpt5LuDVCtT57MWz1FbaLw==} + /framer-motion@11.2.12(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-lCjkV4nA9rWOy2bhR4RZzkp2xpB++kFmUZ6D44V9VQaxk+JDmbDd5lq+u58DjJIIllE8AZEXp9OG/TyDN4FB/w==} peerDependencies: '@emotion/is-prop-valid': '*' react: ^18.0.0 From babc03a87c55e6fd08b09ab4641922863266b219 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:12:38 -0400 Subject: [PATCH 11/23] Bump @playwright/test from 1.44.1 to 1.45.0 (#10814) Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.44.1 to 1.45.0. - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.44.1...v1.45.0) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/playwright/package.json | 2 +- pnpm-lock.yaml | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/apps/playwright/package.json b/apps/playwright/package.json index 488a39b22c7..3bf58cbd4a1 100644 --- a/apps/playwright/package.json +++ b/apps/playwright/package.json @@ -18,7 +18,7 @@ "@gc-digital-talent/env": "workspace:*", "@gc-digital-talent/eslint-config": "workspace:*", "@gc-digital-talent/graphql": "workspace:*", - "@playwright/test": "^1.44.1", + "@playwright/test": "^1.45.0", "@types/node": "^20.14.6", "@types/sinon": "^17.0.3", "axe-core": "^4.9.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 20e81f05fcf..e6f739d44fb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: dependencies: '@axe-core/playwright': specifier: ^4.9.1 - version: 4.9.1(playwright-core@1.44.1) + version: 4.9.1(playwright-core@1.45.0) devDependencies: '@gc-digital-talent/date-helpers': specifier: workspace:* @@ -34,8 +34,8 @@ importers: specifier: workspace:* version: link:../../packages/graphql '@playwright/test': - specifier: ^1.44.1 - version: 1.44.1 + specifier: ^1.45.0 + version: 1.45.0 '@types/node': specifier: ^20.14.6 version: 20.14.6 @@ -1299,13 +1299,13 @@ packages: default-browser-id: 3.0.0 dev: true - /@axe-core/playwright@4.9.1(playwright-core@1.44.1): + /@axe-core/playwright@4.9.1(playwright-core@1.45.0): resolution: {integrity: sha512-8m4WZbZq7/aq7ZY5IG8GqV+ZdvtGn/iJdom+wBg+iv/3BAOBIfNQtIu697a41438DzEEyptXWmC3Xl5Kx/o9/g==} peerDependencies: playwright-core: '>= 1.0.0' dependencies: axe-core: 4.9.1 - playwright-core: 1.44.1 + playwright-core: 1.45.0 dev: false /@babel/code-frame@7.24.7: @@ -4581,12 +4581,12 @@ packages: engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dev: true - /@playwright/test@1.44.1: - resolution: {integrity: sha512-1hZ4TNvD5z9VuhNJ/walIjvMVvYkZKf71axoF/uiAqpntQJXpG64dlXhoDXE3OczPuTuvjf/M5KWFg5VAVUS3Q==} - engines: {node: '>=16'} + /@playwright/test@1.45.0: + resolution: {integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==} + engines: {node: '>=18'} hasBin: true dependencies: - playwright: 1.44.1 + playwright: 1.45.0 dev: true /@popperjs/core@2.11.8: @@ -13004,17 +13004,17 @@ packages: dependencies: find-up: 5.0.0 - /playwright-core@1.44.1: - resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==} - engines: {node: '>=16'} + /playwright-core@1.45.0: + resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} + engines: {node: '>=18'} hasBin: true - /playwright@1.44.1: - resolution: {integrity: sha512-qr/0UJ5CFAtloI3avF95Y0L1xQo6r3LQArLIg/z/PoGJ6xa+EwzrwO5lpNr/09STxdHuUoP2mvuELJS+hLdtgg==} - engines: {node: '>=16'} + /playwright@1.45.0: + resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} + engines: {node: '>=18'} hasBin: true dependencies: - playwright-core: 1.44.1 + playwright-core: 1.45.0 optionalDependencies: fsevents: 2.3.2 dev: true From ee6775d0b3322a6455ec765005c8d6afa4666cf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:13:46 -0400 Subject: [PATCH 12/23] Bump eslint-plugin-turbo from 2.0.4 to 2.0.5 (#10809) Bumps [eslint-plugin-turbo](https://github.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo) from 2.0.4 to 2.0.5. - [Release notes](https://github.com/vercel/turbo/releases) - [Changelog](https://github.com/vercel/turbo/blob/main/release.md) - [Commits](https://github.com/vercel/turbo/commits/v2.0.5/packages/eslint-plugin-turbo) --- updated-dependencies: - dependency-name: eslint-plugin-turbo dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/eslint-config-custom/package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/eslint-config-custom/package.json b/packages/eslint-config-custom/package.json index 214cbcd360b..fa76380e829 100644 --- a/packages/eslint-config-custom/package.json +++ b/packages/eslint-config-custom/package.json @@ -24,7 +24,7 @@ "eslint-plugin-react": "^7.34.3", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-testing-library": "^6.2.2", - "eslint-plugin-turbo": "^2.0.4", + "eslint-plugin-turbo": "^2.0.5", "prettier": "^3.3.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e6f739d44fb..38f4e08fb7c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -534,8 +534,8 @@ importers: specifier: ^6.2.2 version: 6.2.2(eslint@8.57.0)(typescript@5.4.5) eslint-plugin-turbo: - specifier: ^2.0.4 - version: 2.0.4(eslint@8.57.0) + specifier: ^2.0.5 + version: 2.0.5(eslint@8.57.0) prettier: specifier: ^3.3.2 version: 3.3.2 @@ -9806,8 +9806,8 @@ packages: - typescript dev: true - /eslint-plugin-turbo@2.0.4(eslint@8.57.0): - resolution: {integrity: sha512-Ozn//vTXJeqIEvEkThM2vuuldMckPqAne7vg/S3GxF+BBY516cjdp7+dYpCU5Q0083hVm638c8542ubccNE+8w==} + /eslint-plugin-turbo@2.0.5(eslint@8.57.0): + resolution: {integrity: sha512-nCTXZdaKmdRybBdjnMrDFG+ppLc9toUqB01Hf0pfhkQw8OoC29oJIVPsCSvuL/W58RKD02CNEUrwnVt57t36IQ==} peerDependencies: eslint: '>6.6.0' dependencies: From 4d190f88686546ed49d1e81306a5521f39d91275 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:17:04 -0400 Subject: [PATCH 13/23] Bump react-hook-form from 7.51.5 to 7.52.0 (#10808) Bumps [react-hook-form](https://github.com/react-hook-form/react-hook-form) from 7.51.5 to 7.52.0. - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.51.5...v7.52.0) --- updated-dependencies: - dependency-name: react-hook-form dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/web/package.json | 2 +- packages/forms/package.json | 2 +- pnpm-lock.yaml | 20 ++++++++++---------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 048cbcf6335..97a6a70225e 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -60,7 +60,7 @@ "react": "^18.3.1", "react-dom": "^18.2.0", "react-helmet-async": "^2.0.5", - "react-hook-form": "^7.51.5", + "react-hook-form": "^7.52.0", "react-intl": "^6.6.8", "react-router-dom": "^6.23.1", "react-to-print": "^2.15.1", diff --git a/packages/forms/package.json b/packages/forms/package.json index dab1f06e0e4..65092490be1 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -54,7 +54,7 @@ "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "react": "^18.3.1", - "react-hook-form": "^7.51.5", + "react-hook-form": "^7.52.0", "react-intl": "^6.6.8", "tsconfig": "workspace:*", "typescript": "^5.4.5" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 38f4e08fb7c..6b9023c0d34 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -142,8 +142,8 @@ importers: specifier: ^2.0.5 version: 2.0.5(react@18.3.1) react-hook-form: - specifier: ^7.51.5 - version: 7.51.5(react@18.3.1) + specifier: ^7.52.0 + version: 7.52.0(react@18.3.1) react-intl: specifier: ^6.6.8 version: 6.6.8(react@18.3.1)(typescript@5.4.5) @@ -602,7 +602,7 @@ importers: version: 2.1.4(react@18.3.1) '@hookform/error-message': specifier: ^2.0.1 - version: 2.0.1(react-dom@18.3.1)(react-hook-form@7.51.5)(react@18.3.1) + version: 2.0.1(react-dom@18.3.1)(react-hook-form@7.52.0)(react@18.3.1) '@tiptap/extension-character-count': specifier: ^2.4.0 version: 2.4.0(@tiptap/core@2.4.0)(@tiptap/pm@2.4.0) @@ -689,8 +689,8 @@ importers: specifier: ^18.3.1 version: 18.3.1 react-hook-form: - specifier: ^7.51.5 - version: 7.51.5(react@18.3.1) + specifier: ^7.52.0 + version: 7.52.0(react@18.3.1) react-intl: specifier: ^6.6.8 version: 6.6.8(react@18.3.1)(typescript@5.4.5) @@ -3894,7 +3894,7 @@ packages: react: 18.3.1 dev: false - /@hookform/error-message@2.0.1(react-dom@18.3.1)(react-hook-form@7.51.5)(react@18.3.1): + /@hookform/error-message@2.0.1(react-dom@18.3.1)(react-hook-form@7.52.0)(react@18.3.1): resolution: {integrity: sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==} peerDependencies: react: '>=16.8.0' @@ -3903,7 +3903,7 @@ packages: dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-hook-form: 7.51.5(react@18.3.1) + react-hook-form: 7.52.0(react@18.3.1) dev: false /@humanwhocodes/config-array@0.11.14: @@ -13470,11 +13470,11 @@ packages: shallowequal: 1.1.0 dev: false - /react-hook-form@7.51.5(react@18.3.1): - resolution: {integrity: sha512-J2ILT5gWx1XUIJRETiA7M19iXHlG74+6O3KApzvqB/w8S5NQR7AbU8HVZrMALdmDgWpRPYiZJl0zx8Z4L2mP6Q==} + /react-hook-form@7.52.0(react@18.3.1): + resolution: {integrity: sha512-mJX506Xc6mirzLsmXUJyqlAI3Kj9Ph2RhplYhUVffeOQSnubK2uVqBFOBJmvKikvbFV91pxVXmDiR+QMF19x6A==} engines: {node: '>=12.22.0'} peerDependencies: - react: ^16.8.0 || ^17 || ^18 + react: ^16.8.0 || ^17 || ^18 || ^19 dependencies: react: 18.3.1 From 6678866c65534ea1a8d570744d12493df3183530 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:28:59 -0400 Subject: [PATCH 14/23] Bump @typescript-eslint/eslint-plugin from 7.13.1 to 7.14.1 (#10804) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 7.13.1 to 7.14.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/eslint-config-custom/package.json | 2 +- pnpm-lock.yaml | 52 ++++------------------ 2 files changed, 9 insertions(+), 45 deletions(-) diff --git a/packages/eslint-config-custom/package.json b/packages/eslint-config-custom/package.json index fa76380e829..a4d5cc9face 100644 --- a/packages/eslint-config-custom/package.json +++ b/packages/eslint-config-custom/package.json @@ -7,7 +7,7 @@ }, "license": "AGPL-3.0", "devDependencies": { - "@typescript-eslint/eslint-plugin": "^7.13.1", + "@typescript-eslint/eslint-plugin": "^7.14.1", "@typescript-eslint/parser": "^7.13.1", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^9.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6b9023c0d34..2c947f0def7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -483,8 +483,8 @@ importers: packages/eslint-config-custom: devDependencies: '@typescript-eslint/eslint-plugin': - specifier: ^7.13.1 - version: 7.13.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5) + specifier: ^7.14.1 + version: 7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': specifier: ^7.13.1 version: 7.13.1(eslint@8.57.0)(typescript@5.4.5) @@ -6998,8 +6998,8 @@ packages: dependencies: '@types/yargs-parser': 21.0.3 - /@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-kZqi+WZQaZfPKnsflLJQCz6Ze9FFSMfXrrIOcyargekQxG37ES7DJNpJUE9Q/X5n3yTIP/WPutVNzgknQ7biLg==} + /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -7011,10 +7011,10 @@ packages: dependencies: '@eslint-community/regexpp': 4.10.1 '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.13.1 - '@typescript-eslint/type-utils': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.13.1 + '@typescript-eslint/scope-manager': 7.14.1 + '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.14.1 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -7134,26 +7134,6 @@ packages: '@typescript-eslint/visitor-keys': 7.14.1 dev: true - /@typescript-eslint/type-utils@7.13.1(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-aWDbLu1s9bmgPGXSzNCxELu+0+HQOapV/y+60gPXafR8e2g1Bifxzevaa+4L2ytCWm+CHqpELq4CSoN9ELiwCg==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.5) - '@typescript-eslint/utils': 7.13.1(eslint@8.57.0)(typescript@5.4.5) - debug: 4.3.5 - eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/type-utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7363,22 +7343,6 @@ packages: - typescript dev: true - /@typescript-eslint/utils@7.13.1(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-h5MzFBD5a/Gh/fvNdp9pTfqJAbuQC4sCN2WzuXme71lqFJsZtLbjxfSk4r3p02WIArOF9N94pdsLiGutpDbrXQ==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - eslint: ^8.56.0 - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@typescript-eslint/scope-manager': 7.13.1 - '@typescript-eslint/types': 7.13.1 - '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.5) - eslint: 8.57.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /@typescript-eslint/utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==} engines: {node: ^18.18.0 || >=20.0.0} From edbfc53bcccf6e08172c7947d50c14bca17195aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 08:42:03 -0400 Subject: [PATCH 15/23] Bump @radix-ui/react-alert-dialog from 1.1.0 to 1.1.1 (#10805) Bumps [@radix-ui/react-alert-dialog](https://github.com/radix-ui/primitives) from 1.1.0 to 1.1.1. - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md) - [Commits](https://github.com/radix-ui/primitives/commits) --- updated-dependencies: - dependency-name: "@radix-ui/react-alert-dialog" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/ui/package.json | 2 +- pnpm-lock.yaml | 43 +++++----------------------------------- 2 files changed, 6 insertions(+), 39 deletions(-) diff --git a/packages/ui/package.json b/packages/ui/package.json index 09f3f79f067..46ad7751b8b 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -22,7 +22,7 @@ "@gc-digital-talent/jest-helpers": "workspace:*", "@heroicons/react": "^2.1.4", "@radix-ui/react-accordion": "^1.2.0", - "@radix-ui/react-alert-dialog": "^1.1.0", + "@radix-ui/react-alert-dialog": "^1.1.1", "@radix-ui/react-collapsible": "^1.1.0", "@radix-ui/react-dialog": "^1.1.1", "@radix-ui/react-dropdown-menu": "^2.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2c947f0def7..43bb2165e4d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1107,8 +1107,8 @@ importers: specifier: ^1.2.0 version: 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-alert-dialog': - specifier: ^1.1.0 - version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + specifier: ^1.1.1 + version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-collapsible': specifier: ^1.1.0 version: 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -4628,8 +4628,8 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: false - /@radix-ui/react-alert-dialog@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-kM8Pfn78tg0aqFD2E1KfO0sZDY75hTkrZd9DIWkncQFwlIB1FV96J0+KsNvK1AotgQO8IMxntRyPMrh8+2vghA==} + /@radix-ui/react-alert-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-wmCoJwj7byuVuiLKqDLlX7ClSUU0vd9sdCeM+2Ls+uf13+cpSJoMgwysHq1SGVVkJj5Xn0XWi1NoRCdkMpr6Mw==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -4644,7 +4644,7 @@ packages: '@radix-ui/primitive': 1.1.0 '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-dialog': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@types/react': 18.3.3 @@ -4747,39 +4747,6 @@ packages: '@types/react': 18.3.3 react: 18.3.1 - /@radix-ui/react-dialog@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-oiSJcsjbdC8JqbXrOuhOd7oaEaPp3x2L2zn6V7ie6SSpEjrAha/WabDX4po6laGwbhAu9DT0XxHL0DmcIXrR0A==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@radix-ui/primitive': 1.1.0 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-portal': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - aria-hidden: 1.2.4 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.7(@types/react@18.3.3)(react@18.3.1) - dev: false - /@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==} peerDependencies: From e6d34be026a4aecc757a63c0d95705d93c0b1ece Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 09:30:56 -0400 Subject: [PATCH 16/23] Bump typescript from 5.4.5 to 5.5.2 (#10812) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.5 to 5.5.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/web/package.json | 2 +- packages/app-insights/package.json | 2 +- packages/auth/package.json | 2 +- packages/client/package.json | 2 +- packages/date-helpers/package.json | 2 +- packages/env/package.json | 2 +- packages/fake-data/package.json | 2 +- packages/forms/package.json | 2 +- packages/graphql/package.json | 2 +- packages/i18n/package.json | 2 +- packages/jest-helpers/package.json | 2 +- packages/logger/package.json | 2 +- packages/storage/package.json | 2 +- packages/theme/package.json | 2 +- packages/toast/package.json | 2 +- packages/ui/package.json | 2 +- pnpm-lock.yaml | 300 ++++++++++++++--------------- 17 files changed, 166 insertions(+), 166 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 97a6a70225e..28b20cc177c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -97,7 +97,7 @@ "prettier": "^3.3.2", "ts-jest": "^29.1.5", "tsconfig": "workspace:*", - "typescript": "^5.4.5", + "typescript": "^5.5.2", "vite": "^5.3.0", "vite-plugin-html": "^3.2.2" } diff --git a/packages/app-insights/package.json b/packages/app-insights/package.json index 3a44c10a530..9f07af65bde 100644 --- a/packages/app-insights/package.json +++ b/packages/app-insights/package.json @@ -23,6 +23,6 @@ "eslint": "^8.57.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/auth/package.json b/packages/auth/package.json index 29134575319..e14a9f7184a 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -35,6 +35,6 @@ "eslint": "^8.57.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/client/package.json b/packages/client/package.json index d072e91568f..0cfdf98af3b 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -41,6 +41,6 @@ "jest": "^29.7.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/date-helpers/package.json b/packages/date-helpers/package.json index 2377dff7438..48a167db7bc 100644 --- a/packages/date-helpers/package.json +++ b/packages/date-helpers/package.json @@ -29,6 +29,6 @@ "eslint": "^8.57.0", "jest": "^29.7.0", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/env/package.json b/packages/env/package.json index cdd21b52841..cc1e3a67809 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -17,6 +17,6 @@ "eslint": "^8.57.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/fake-data/package.json b/packages/fake-data/package.json index 8fb67ac527f..93e82b149c8 100644 --- a/packages/fake-data/package.json +++ b/packages/fake-data/package.json @@ -22,6 +22,6 @@ "@types/lodash": "^4.17.5", "eslint": "^8.57.0", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/forms/package.json b/packages/forms/package.json index 65092490be1..83014228698 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -57,6 +57,6 @@ "react-hook-form": "^7.52.0", "react-intl": "^6.6.8", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 93fc5311333..b5b33c7e350 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -16,7 +16,7 @@ "@parcel/watcher": "^2.4.1", "graphql": "^16.8.2", "tsconfig": "workspace:*", - "typescript": "^5.4.5", + "typescript": "^5.5.2", "urql": "^4.1.0" } } diff --git a/packages/i18n/package.json b/packages/i18n/package.json index a034bf2adb2..4e17841125e 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -42,7 +42,7 @@ "react-router-dom": "^6.23.1", "tsconfig": "workspace:*", "tsx": "^4.15.7", - "typescript": "^5.4.5", + "typescript": "^5.5.2", "yargs": "^17.7.2" } } diff --git a/packages/jest-helpers/package.json b/packages/jest-helpers/package.json index 54e7be66b95..4dfe3538b44 100644 --- a/packages/jest-helpers/package.json +++ b/packages/jest-helpers/package.json @@ -31,6 +31,6 @@ "jest-axe": "^9.0.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/logger/package.json b/packages/logger/package.json index 5d25b0afd91..f7fa6584108 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -18,6 +18,6 @@ "@gc-digital-talent/eslint-config": "workspace:*", "eslint": "^8.57.0", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/storage/package.json b/packages/storage/package.json index cc8f95da5d8..09801e64e5d 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -16,6 +16,6 @@ "eslint": "^8.57.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/theme/package.json b/packages/theme/package.json index c0de10fe3b3..f007d3dbc41 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -27,6 +27,6 @@ "jest": "^29.7.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/toast/package.json b/packages/toast/package.json index ac3fa889ff0..fffc63ce15d 100644 --- a/packages/toast/package.json +++ b/packages/toast/package.json @@ -25,6 +25,6 @@ "eslint": "^8.57.0", "react": "^18.3.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/packages/ui/package.json b/packages/ui/package.json index 46ad7751b8b..e2203743ee1 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -66,6 +66,6 @@ "react-intl": "^6.6.8", "react-router-dom": "^6.23.1", "tsconfig": "workspace:*", - "typescript": "^5.4.5" + "typescript": "^5.5.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 43bb2165e4d..0ffb5d0d918 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -59,7 +59,7 @@ importers: version: 18.0.0 typescript-eslint: specifier: ^7.14.1 - version: 7.14.1(eslint@8.57.0)(typescript@5.4.5) + version: 7.14.1(eslint@8.57.0)(typescript@5.5.2) apps/web: dependencies: @@ -146,7 +146,7 @@ importers: version: 7.52.0(react@18.3.1) react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: specifier: ^6.23.1 version: 6.23.1(react-dom@18.3.1)(react@18.3.1) @@ -186,7 +186,7 @@ importers: version: 8.1.10 '@storybook/react': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@testing-library/jest-dom': specifier: ^6.4.6 version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) @@ -240,13 +240,13 @@ importers: version: 3.3.2 ts-jest: specifier: ^29.1.5 - version: 29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.5) + version: 29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.5.2) tsconfig: specifier: workspace:* version: link:../../packages/tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 vite: specifier: ^5.3.0 version: 5.3.1 @@ -282,8 +282,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/auth: dependencies: @@ -340,8 +340,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/client: dependencies: @@ -380,7 +380,7 @@ importers: version: 4.17.21 react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) urql: specifier: ^4.1.0 version: 4.1.0(@urql/core@5.0.4)(react@18.3.1) @@ -416,8 +416,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/date-helpers: dependencies: @@ -435,7 +435,7 @@ importers: version: 3.0.0(date-fns@3.6.0) react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) devDependencies: '@gc-digital-talent/eslint-config': specifier: workspace:* @@ -456,8 +456,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/env: devDependencies: @@ -477,17 +477,17 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/eslint-config-custom: devDependencies: '@typescript-eslint/eslint-plugin': specifier: ^7.14.1 - version: 7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5) + version: 7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/parser': specifier: ^7.13.1 - version: 7.13.1(eslint@8.57.0)(typescript@5.4.5) + version: 7.13.1(eslint@8.57.0)(typescript@5.5.2) eslint-config-airbnb: specifier: ^19.0.4 version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.9.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0) @@ -502,7 +502,7 @@ importers: version: 3.6.1(@typescript-eslint/parser@7.13.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-plugin-deprecation: specifier: ^3.0.0 - version: 3.0.0(eslint@8.57.0)(typescript@5.4.5) + version: 3.0.0(eslint@8.57.0)(typescript@5.5.2) eslint-plugin-formatjs: specifier: ^4.13.3 version: 4.13.3(eslint@8.57.0) @@ -532,7 +532,7 @@ importers: version: 4.6.2(eslint@8.57.0) eslint-plugin-testing-library: specifier: ^6.2.2 - version: 6.2.2(eslint@8.57.0)(typescript@5.4.5) + version: 6.2.2(eslint@8.57.0)(typescript@5.5.2) eslint-plugin-turbo: specifier: ^2.0.5 version: 2.0.5(eslint@8.57.0) @@ -571,8 +571,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/forms: dependencies: @@ -654,7 +654,7 @@ importers: version: 8.1.10 '@storybook/react': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@testing-library/jest-dom': specifier: ^6.4.6 version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) @@ -693,19 +693,19 @@ importers: version: 7.52.0(react@18.3.1) react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) tsconfig: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/graphql: devDependencies: '@graphql-codegen/cli': specifier: ^5.0.2 - version: 5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.4.5) + version: 5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.5.2) '@graphql-codegen/client-preset': specifier: ^4.2.6 version: 4.3.0(graphql@16.8.2) @@ -719,8 +719,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 urql: specifier: ^4.1.0 version: 4.1.0(@urql/core@5.0.4)(react@18.3.1) @@ -809,7 +809,7 @@ importers: version: 18.3.1 react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: specifier: ^6.23.1 version: 6.23.1(react-dom@18.3.1)(react@18.3.1) @@ -820,8 +820,8 @@ importers: specifier: ^4.15.7 version: 4.15.7 typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 yargs: specifier: ^17.7.2 version: 17.7.2 @@ -839,7 +839,7 @@ importers: version: 2.0.5(react@18.3.1) react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: specifier: ^6.23.1 version: 6.23.1(react-dom@18.3.1)(react@18.3.1) @@ -875,8 +875,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/jest-presets: dependencies: @@ -885,7 +885,7 @@ importers: version: 9.0.0 ts-jest: specifier: ^29.1.5 - version: 29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.5) + version: 29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.5.2) devDependencies: jest-environment-jsdom: specifier: ^29.7.0 @@ -910,8 +910,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/storage: devDependencies: @@ -931,8 +931,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/storybook-helpers: dependencies: @@ -944,7 +944,7 @@ importers: version: link:../theme '@storybook/react': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@urql/core': specifier: ^5.0.4 version: 5.0.4(graphql@16.8.2) @@ -990,10 +990,10 @@ importers: version: 8.1.10 '@storybook/builder-vite': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(typescript@5.4.5)(vite@5.3.1) + version: 8.1.10(prettier@3.3.2)(typescript@5.5.2)(vite@5.3.1) '@storybook/react-vite': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(vite@5.3.1) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vite@5.3.1) '@storybook/types': specifier: ^8.1.10 version: 8.1.10 @@ -1044,8 +1044,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/toast: dependencies: @@ -1067,7 +1067,7 @@ importers: version: link:../storybook-helpers '@storybook/react': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@types/react': specifier: ^18.3.3 version: 18.3.3 @@ -1081,8 +1081,8 @@ importers: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages/tsconfig: {} @@ -1187,7 +1187,7 @@ importers: version: 8.1.10 '@storybook/react': specifier: ^8.1.10 - version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@testing-library/jest-dom': specifier: ^6.4.6 version: 6.4.6(@types/jest@29.5.12)(jest@29.7.0) @@ -1223,13 +1223,13 @@ importers: version: 18.3.1 react-intl: specifier: ^6.6.8 - version: 6.6.8(react@18.3.1)(typescript@5.4.5) + version: 6.6.8(react@18.3.1)(typescript@5.5.2) tsconfig: specifier: workspace:* version: link:../tsconfig typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.5.2 + version: 5.5.2 packages: @@ -3252,7 +3252,7 @@ packages: dependencies: tslib: 2.6.3 - /@formatjs/intl@2.10.4(typescript@5.4.5): + /@formatjs/intl@2.10.4(typescript@5.5.2): resolution: {integrity: sha512-56483O+HVcL0c7VucAS2tyH020mt9XTozZO67cwtGg0a7KWDukS/FzW3OnvaHmTHDuYsoPIzO+ZHVfU6fT/bJw==} peerDependencies: typescript: ^4.7 || 5 @@ -3267,7 +3267,7 @@ packages: '@formatjs/intl-listformat': 7.5.7 intl-messageformat: 10.5.14 tslib: 2.6.3 - typescript: 5.4.5 + typescript: 5.5.2 /@formatjs/ts-transformer@3.13.14: resolution: {integrity: sha512-TP/R54lxQ9Drzzimxrrt6yBT/xBofTgYl5wSTpyKe3Aq9vIBVcFmS6EOqycj0X34KGu3EpDPGO0ng8ZQZGLIFg==} @@ -3283,7 +3283,7 @@ packages: chalk: 4.1.2 json-stable-stringify: 1.1.1 tslib: 2.6.3 - typescript: 5.4.5 + typescript: 5.5.2 dev: true /@graphql-codegen/add@5.0.3(graphql@16.8.2): @@ -3296,7 +3296,7 @@ packages: tslib: 2.6.3 dev: true - /@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.4.5): + /@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.5.2): resolution: {integrity: sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==} hasBin: true peerDependencies: @@ -3325,11 +3325,11 @@ packages: '@parcel/watcher': 2.4.1 '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.4.5) + cosmiconfig: 8.3.6(typescript@5.5.2) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.8.2 - graphql-config: 5.0.3(graphql@16.8.2)(typescript@5.4.5) + graphql-config: 5.0.3(graphql@16.8.2)(typescript@5.5.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -4170,7 +4170,7 @@ packages: '@types/yargs': 17.0.32 chalk: 4.1.2 - /@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.4.5)(vite@5.3.1): + /@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.5.2)(vite@5.3.1): resolution: {integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==} peerDependencies: typescript: '>= 4.3.x' @@ -4182,8 +4182,8 @@ packages: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 - react-docgen-typescript: 2.2.2(typescript@5.4.5) - typescript: 5.4.5 + react-docgen-typescript: 2.2.2(typescript@5.5.2) + typescript: 5.5.2 vite: 5.3.1 dev: true @@ -5778,7 +5778,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite@8.1.10(prettier@3.3.2)(typescript@5.4.5)(vite@5.3.1): + /@storybook/builder-vite@8.1.10(prettier@3.3.2)(typescript@5.5.2)(vite@5.3.1): resolution: {integrity: sha512-8A/i5OEyRVKkTROLgxXEEJRAS8gmdonr4xA15TqAvjOtdYjwP6JoQ4cjNOqH7fPPGPdx/t49Z/7E+v7Ovv6cAw==} peerDependencies: '@preact/preset-vite': '*' @@ -5810,7 +5810,7 @@ packages: fs-extra: 11.2.0 magic-string: 0.30.10 ts-dedent: 2.2.0 - typescript: 5.4.5 + typescript: 5.5.2 vite: 5.3.1 transitivePeerDependencies: - encoding @@ -6157,7 +6157,7 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /@storybook/react-vite@8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5)(vite@5.3.1): + /@storybook/react-vite@8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vite@5.3.1): resolution: {integrity: sha512-whYMmHcVxoUBOdKcqCZFAIQrknUHV6OKyPeW8+dOdmWBHMd1q6vAv5O58LVhx1JWTChPmTvJfaQc8aOrhXLn9A==} engines: {node: '>=18.0.0'} peerDependencies: @@ -6165,11 +6165,11 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta vite: ^4.0.0 || ^5.0.0 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.4.5)(vite@5.3.1) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.5.2)(vite@5.3.1) '@rollup/pluginutils': 5.1.0 - '@storybook/builder-vite': 8.1.10(prettier@3.3.2)(typescript@5.4.5)(vite@5.3.1) + '@storybook/builder-vite': 8.1.10(prettier@3.3.2)(typescript@5.5.2)(vite@5.3.1) '@storybook/node-logger': 8.1.10 - '@storybook/react': 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5) + '@storybook/react': 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@storybook/types': 8.1.10 find-up: 5.0.0 magic-string: 0.30.10 @@ -6189,7 +6189,7 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react@8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.4.5): + /@storybook/react@8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2): resolution: {integrity: sha512-y0ycq19tTLLk+4rB+nfCPCtoFBWC0QvmMaJY32dbAjWPk+UNFGhWdqjg0oP1NwXYL18WnhRzlyz1Rojw0aXk1w==} engines: {node: '>=18.0.0'} peerDependencies: @@ -6222,7 +6222,7 @@ packages: semver: 7.6.2 ts-dedent: 2.2.0 type-fest: 2.19.0 - typescript: 5.4.5 + typescript: 5.5.2 util-deprecate: 1.0.2 transitivePeerDependencies: - encoding @@ -6965,7 +6965,7 @@ packages: dependencies: '@types/yargs-parser': 21.0.3 - /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -6977,22 +6977,22 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.1 - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/scope-manager': 7.14.1 - '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/visitor-keys': 7.14.1 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7004,22 +7004,22 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.1 - '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/scope-manager': 7.14.1 - '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/visitor-keys': 7.14.1 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7031,16 +7031,16 @@ packages: dependencies: '@typescript-eslint/scope-manager': 7.13.1 '@typescript-eslint/types': 7.13.1 - '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2) '@typescript-eslint/visitor-keys': 7.13.1 debug: 4.3.5 eslint: 8.57.0 - typescript: 5.4.5 + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7052,11 +7052,11 @@ packages: dependencies: '@typescript-eslint/scope-manager': 7.14.1 '@typescript-eslint/types': 7.14.1 - '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.5.2) '@typescript-eslint/visitor-keys': 7.14.1 debug: 4.3.5 eslint: 8.57.0 - typescript: 5.4.5 + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true @@ -7101,7 +7101,7 @@ packages: '@typescript-eslint/visitor-keys': 7.14.1 dev: true - /@typescript-eslint/type-utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/type-utils@7.14.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7111,12 +7111,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) - '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.5.2) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) debug: 4.3.5 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true @@ -7146,7 +7146,7 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5): + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.2): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7161,13 +7161,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.4.5) - typescript: 5.4.5 + tsutils: 3.21.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5): + /@typescript-eslint/typescript-estree@6.21.0(typescript@5.5.2): resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -7183,13 +7183,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.13.0(typescript@5.4.5): + /@typescript-eslint/typescript-estree@7.13.0(typescript@5.5.2): resolution: {integrity: sha512-cAvBvUoobaoIcoqox1YatXOnSl3gx92rCZoMRPzMNisDiM12siGilSM4+dJAekuuHTibI2hVC2fYK79iSFvWjw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7205,13 +7205,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.13.1(typescript@5.4.5): + /@typescript-eslint/typescript-estree@7.13.1(typescript@5.5.2): resolution: {integrity: sha512-uxNr51CMV7npU1BxZzYjoVz9iyjckBduFBP0S5sLlh1tXYzHzgZ3BR9SVsNed+LmwKrmnqN3Kdl5t7eZ5TS1Yw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7227,13 +7227,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.14.1(typescript@5.4.5): + /@typescript-eslint/typescript-estree@7.14.1(typescript@5.5.2): resolution: {integrity: sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7249,13 +7249,13 @@ packages: is-glob: 4.0.3 minimatch: 9.0.4 semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.4.5) - typescript: 5.4.5 + ts-api-utils: 1.3.0(typescript@5.5.2) + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7266,7 +7266,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.2 @@ -7275,7 +7275,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -7286,7 +7286,7 @@ packages: '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.2) eslint: 8.57.0 semver: 7.6.2 transitivePeerDependencies: @@ -7294,7 +7294,7 @@ packages: - typescript dev: true - /@typescript-eslint/utils@7.13.0(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/utils@7.13.0(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-jceD8RgdKORVnB4Y6BqasfIkFhl4pajB1wVxrF4akxD2QPM8GNYjgGwEzYS+437ewlqqrg7Dw+6dhdpjMpeBFQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7303,14 +7303,14 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@typescript-eslint/scope-manager': 7.13.0 '@typescript-eslint/types': 7.13.0 - '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.13.0(typescript@5.5.2) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@7.14.1(eslint@8.57.0)(typescript@5.4.5): + /@typescript-eslint/utils@7.14.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -7319,7 +7319,7 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@typescript-eslint/scope-manager': 7.14.1 '@typescript-eslint/types': 7.14.1 - '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.14.1(typescript@5.5.2) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -8560,7 +8560,7 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig@8.3.6(typescript@5.4.5): + /cosmiconfig@8.3.6(typescript@5.5.2): resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} peerDependencies: @@ -8573,7 +8573,7 @@ packages: js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - typescript: 5.4.5 + typescript: 5.5.2 dev: true /cp-file@10.0.0: @@ -9507,7 +9507,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 @@ -9516,17 +9516,17 @@ packages: - supports-color dev: true - /eslint-plugin-deprecation@3.0.0(eslint@8.57.0)(typescript@5.4.5): + /eslint-plugin-deprecation@3.0.0(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-JuVLdNg/uf0Adjg2tpTyYoYaMbwQNn/c78P1HcccokvhtRphgnRjZDKmhlxbxYptppex03zO76f97DD/yQHv7A==} peerDependencies: eslint: ^8.0.0 typescript: ^4.2.4 || ^5.0.0 dependencies: - '@typescript-eslint/utils': 7.13.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.13.0(eslint@8.57.0)(typescript@5.5.2) eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.4.5) + ts-api-utils: 1.3.0(typescript@5.5.2) tslib: 2.6.3 - typescript: 5.4.5 + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true @@ -9551,13 +9551,13 @@ packages: '@formatjs/ts-transformer': 3.13.14 '@types/eslint': 8.56.10 '@types/picomatch': 2.3.3 - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.2) emoji-regex: 10.3.0 eslint: 8.57.0 magic-string: 0.30.10 picomatch: 2.3.1 tslib: 2.6.2 - typescript: 5.4.5 + typescript: 5.5.2 unicode-emoji-utils: 1.2.0 transitivePeerDependencies: - supports-color @@ -9574,7 +9574,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -9724,13 +9724,13 @@ packages: string.prototype.matchall: 4.0.11 dev: true - /eslint-plugin-testing-library@6.2.2(eslint@8.57.0)(typescript@5.4.5): + /eslint-plugin-testing-library@6.2.2(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-1E94YOTUDnOjSLyvOwmbVDzQi/WkKm3WVrMXu6SmBr6DN95xTGZmI6HJ/eOkSXh/DlheRsxaPsJvZByDBhWLVQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -10476,7 +10476,7 @@ packages: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true - /graphql-config@5.0.3(graphql@16.8.2)(typescript@5.4.5): + /graphql-config@5.0.3(graphql@16.8.2)(typescript@5.5.2): resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==} engines: {node: '>= 16.0.0'} peerDependencies: @@ -10492,7 +10492,7 @@ packages: '@graphql-tools/merge': 9.0.4(graphql@16.8.2) '@graphql-tools/url-loader': 8.0.2(graphql@16.8.2) '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - cosmiconfig: 8.3.6(typescript@5.4.5) + cosmiconfig: 8.3.6(typescript@5.5.2) graphql: 16.8.2 jiti: 1.21.6 minimatch: 4.2.3 @@ -13320,12 +13320,12 @@ packages: react: 18.3.1 dev: false - /react-docgen-typescript@2.2.2(typescript@5.4.5): + /react-docgen-typescript@2.2.2(typescript@5.5.2): resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 5.4.5 + typescript: 5.5.2 dev: true /react-docgen@7.0.3: @@ -13409,7 +13409,7 @@ packages: dependencies: react: 18.3.1 - /react-intl@6.6.8(react@18.3.1)(typescript@5.4.5): + /react-intl@6.6.8(react@18.3.1)(typescript@5.5.2): resolution: {integrity: sha512-M0pkhzcgV31h++2901BiRXWl69hp2zPyLxRrSwRjd1ErXbNoubz/f4M6DrRTd4OiSUrT4ajRQzrmtS5plG4FtA==} peerDependencies: react: ^16.6.0 || 17 || 18 @@ -13420,7 +13420,7 @@ packages: dependencies: '@formatjs/ecma402-abstract': 2.0.0 '@formatjs/icu-messageformat-parser': 2.7.8 - '@formatjs/intl': 2.10.4(typescript@5.4.5) + '@formatjs/intl': 2.10.4(typescript@5.5.2) '@formatjs/intl-displaynames': 6.6.8 '@formatjs/intl-listformat': 7.5.7 '@types/hoist-non-react-statics': 3.3.5 @@ -13429,7 +13429,7 @@ packages: intl-messageformat: 10.5.14 react: 18.3.1 tslib: 2.6.3 - typescript: 5.4.5 + typescript: 5.5.2 /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} @@ -14224,7 +14224,7 @@ packages: peerDependencies: react-intl: ^5.24.0 || ^6.0.0 dependencies: - react-intl: 6.6.8(react@18.3.1)(typescript@5.4.5) + react-intl: 6.6.8(react@18.3.1)(typescript@5.5.2) storybook-i18n: 3.0.1 dev: true @@ -14591,20 +14591,20 @@ packages: punycode: 2.3.1 dev: true - /ts-api-utils@1.3.0(typescript@5.4.5): + /ts-api-utils@1.3.0(typescript@5.5.2): resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} peerDependencies: typescript: '>=4.2.0' dependencies: - typescript: 5.4.5 + typescript: 5.5.2 dev: true /ts-dedent@2.2.0: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} - /ts-jest@29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.4.5): + /ts-jest@29.1.5(@babel/core@7.24.7)(esbuild@0.20.2)(jest@29.7.0)(typescript@5.5.2): resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -14638,7 +14638,7 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.2 - typescript: 5.4.5 + typescript: 5.5.2 yargs-parser: 21.1.1 /ts-log@2.2.5: @@ -14673,14 +14673,14 @@ packages: /tslib@2.6.3: resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} - /tsutils@3.21.0(typescript@5.4.5): + /tsutils@3.21.0(typescript@5.5.2): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.4.5 + typescript: 5.5.2 dev: true /tsx@4.15.7: @@ -14844,7 +14844,7 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /typescript-eslint@7.14.1(eslint@8.57.0)(typescript@5.4.5): + /typescript-eslint@7.14.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-Eo1X+Y0JgGPspcANKjeR6nIqXl4VL5ldXLc15k4m9upq+eY5fhU2IueiEZL6jmHrKH8aCfbIvM/v3IrX5Hg99w==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: @@ -14854,17 +14854,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) eslint: 8.57.0 - typescript: 5.4.5 + typescript: 5.5.2 transitivePeerDependencies: - supports-color dev: true - /typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + /typescript@5.5.2: + resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==} engines: {node: '>=14.17'} hasBin: true From 30f70986a75786c7b50723c025654492457a508f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 09:33:55 -0400 Subject: [PATCH 17/23] Bump @radix-ui/react-dropdown-menu from 2.1.0 to 2.1.1 (#10807) Bumps [@radix-ui/react-dropdown-menu](https://github.com/radix-ui/primitives) from 2.1.0 to 2.1.1. - [Changelog](https://github.com/radix-ui/primitives/blob/main/release-process.md) - [Commits](https://github.com/radix-ui/primitives/commits) --- updated-dependencies: - dependency-name: "@radix-ui/react-dropdown-menu" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/ui/package.json | 2 +- pnpm-lock.yaml | 36 ++++++++---------------------------- 2 files changed, 9 insertions(+), 29 deletions(-) diff --git a/packages/ui/package.json b/packages/ui/package.json index e2203743ee1..73d55f5f6aa 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -25,7 +25,7 @@ "@radix-ui/react-alert-dialog": "^1.1.1", "@radix-ui/react-collapsible": "^1.1.0", "@radix-ui/react-dialog": "^1.1.1", - "@radix-ui/react-dropdown-menu": "^2.1.0", + "@radix-ui/react-dropdown-menu": "^2.1.1", "@radix-ui/react-navigation-menu": "^1.2.0", "@radix-ui/react-scroll-area": "^1.1.0", "@radix-ui/react-separator": "^1.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0ffb5d0d918..6a09ffbd4cc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1116,8 +1116,8 @@ importers: specifier: ^1.1.1 version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-dropdown-menu': - specifier: ^2.1.0 - version: 2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + specifier: ^2.1.1 + version: 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-navigation-menu': specifier: ^1.2.0 version: 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -4815,8 +4815,8 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - /@radix-ui/react-dropdown-menu@2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-8fAz27yxVaYTkXMm5dVOcKCHOiio9b4nl7rO1HmK8rpzcEl0kSSmwFQsYDyJxB/Em48PvXTez/iaBj3VEd2N4g==} + /@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -4832,7 +4832,7 @@ packages: '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) - '@radix-ui/react-menu': 2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@types/react': 18.3.3 @@ -4887,8 +4887,8 @@ packages: '@types/react': 18.3.3 react: 18.3.1 - /@radix-ui/react-menu@2.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-0AxIUQJpimipHDgTVISZbdOY+wZzgICKAsqfI1rF2Hp0Jh3YSv9e9J1tYYyurPBONe5vKi3hZPtVt2E85Sac7A==} + /@radix-ui/react-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -4910,7 +4910,7 @@ packages: '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1) '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@radix-ui/react-portal': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) + '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -4986,26 +4986,6 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: false - /@radix-ui/react-portal@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-0tXZ5O6qAVvuN9SWP0X+zadHf9hzHiMf/vxOU+kXO+fbtS8lS57MXa6EmikDxk9s/Bmkk80+dcxgbvisIyeqxg==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' - react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc - peerDependenciesMeta: - '@types/react': - optional: true - '@types/react-dom': - optional: true - dependencies: - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) - '@types/react': 18.3.3 - '@types/react-dom': 18.3.0 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: false - /@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==} peerDependencies: From bc1213f893909f58ab7ab28e5f587d1629f8f4a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 10:26:08 -0400 Subject: [PATCH 18/23] Bump @typescript-eslint/parser from 7.13.1 to 7.14.1 (#10811) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 7.13.1 to 7.14.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- packages/eslint-config-custom/package.json | 2 +- pnpm-lock.yaml | 125 +++------------------ 2 files changed, 18 insertions(+), 109 deletions(-) diff --git a/packages/eslint-config-custom/package.json b/packages/eslint-config-custom/package.json index a4d5cc9face..c067bfe6fac 100644 --- a/packages/eslint-config-custom/package.json +++ b/packages/eslint-config-custom/package.json @@ -8,7 +8,7 @@ "license": "AGPL-3.0", "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.14.1", - "@typescript-eslint/parser": "^7.13.1", + "@typescript-eslint/parser": "^7.14.1", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-alias": "^1.1.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6a09ffbd4cc..13fcc52e89f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -484,10 +484,10 @@ importers: devDependencies: '@typescript-eslint/eslint-plugin': specifier: ^7.14.1 - version: 7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.5.2) + version: 7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.5.2) '@typescript-eslint/parser': - specifier: ^7.13.1 - version: 7.13.1(eslint@8.57.0)(typescript@5.5.2) + specifier: ^7.14.1 + version: 7.14.1(eslint@8.57.0)(typescript@5.5.2) eslint-config-airbnb: specifier: ^19.0.4 version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.9.0)(eslint-plugin-react-hooks@4.6.2)(eslint-plugin-react@7.34.3)(eslint@8.57.0) @@ -499,7 +499,7 @@ importers: version: 1.1.2(eslint-plugin-import@2.29.1) eslint-import-resolver-typescript: specifier: ^3.6.1 - version: 3.6.1(@typescript-eslint/parser@7.13.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + version: 3.6.1(@typescript-eslint/parser@7.14.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-plugin-deprecation: specifier: ^3.0.0 version: 3.0.0(eslint@8.57.0)(typescript@5.5.2) @@ -508,7 +508,7 @@ importers: version: 4.13.3(eslint@8.57.0) eslint-plugin-import: specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: specifier: ^6.9.0 version: 6.9.0(eslint@8.57.0) @@ -6945,33 +6945,6 @@ packages: dependencies: '@types/yargs-parser': 21.0.3 - /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.13.1)(eslint@8.57.0)(typescript@5.5.2): - resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@eslint-community/regexpp': 4.10.1 - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) - '@typescript-eslint/scope-manager': 7.14.1 - '@typescript-eslint/type-utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) - '@typescript-eslint/utils': 7.14.1(eslint@8.57.0)(typescript@5.5.2) - '@typescript-eslint/visitor-keys': 7.14.1 - eslint: 8.57.0 - graphemer: 1.4.0 - ignore: 5.3.1 - natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.2) - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/eslint-plugin@7.14.1(@typescript-eslint/parser@7.14.1)(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==} engines: {node: ^18.18.0 || >=20.0.0} @@ -6999,27 +6972,6 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@7.13.1(eslint@8.57.0)(typescript@5.5.2): - resolution: {integrity: sha512-1ELDPlnLvDQ5ybTSrMhRTFDfOQEOXNM+eP+3HT/Yq7ruWpciQw+Avi73pdEbA4SooCawEWo3dtYbF68gN7Ed1A==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - eslint: ^8.56.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 7.13.1 - '@typescript-eslint/types': 7.13.1 - '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2) - '@typescript-eslint/visitor-keys': 7.13.1 - debug: 4.3.5 - eslint: 8.57.0 - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/parser@7.14.1(eslint@8.57.0)(typescript@5.5.2): resolution: {integrity: sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7065,14 +7017,6 @@ packages: '@typescript-eslint/visitor-keys': 7.13.0 dev: true - /@typescript-eslint/scope-manager@7.13.1: - resolution: {integrity: sha512-adbXNVEs6GmbzaCpymHQ0MB6E4TqoiVbC0iqG3uijR8ZYfpAXMGttouQzF4Oat3P2GxDVIrg7bMI/P65LiQZdg==} - engines: {node: ^18.18.0 || >=20.0.0} - dependencies: - '@typescript-eslint/types': 7.13.1 - '@typescript-eslint/visitor-keys': 7.13.1 - dev: true - /@typescript-eslint/scope-manager@7.14.1: resolution: {integrity: sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7116,11 +7060,6 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/types@7.13.1: - resolution: {integrity: sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==} - engines: {node: ^18.18.0 || >=20.0.0} - dev: true - /@typescript-eslint/types@7.14.1: resolution: {integrity: sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7191,28 +7130,6 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.13.1(typescript@5.5.2): - resolution: {integrity: sha512-uxNr51CMV7npU1BxZzYjoVz9iyjckBduFBP0S5sLlh1tXYzHzgZ3BR9SVsNed+LmwKrmnqN3Kdl5t7eZ5TS1Yw==} - engines: {node: ^18.18.0 || >=20.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 7.13.1 - '@typescript-eslint/visitor-keys': 7.13.1 - debug: 4.3.5 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.4 - semver: 7.6.2 - ts-api-utils: 1.3.0(typescript@5.5.2) - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree@7.14.1(typescript@5.5.2): resolution: {integrity: sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -7330,14 +7247,6 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@7.13.1: - resolution: {integrity: sha512-k/Bfne7lrP7hcb7m9zSsgcBmo+8eicqqfNAJ7uUY+jkTFpKeH2FSkWpFRtimBxgkyvqfu9jTPRbYOvud6isdXA==} - engines: {node: ^18.18.0 || >=20.0.0} - dependencies: - '@typescript-eslint/types': 7.13.1 - eslint-visitor-keys: 3.4.3 - dev: true - /@typescript-eslint/visitor-keys@7.14.1: resolution: {integrity: sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==} engines: {node: ^18.18.0 || >=20.0.0} @@ -9389,7 +9298,7 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 @@ -9407,7 +9316,7 @@ packages: dependencies: eslint: 8.57.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) eslint-plugin-react: 7.34.3(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) @@ -9430,7 +9339,7 @@ packages: peerDependencies: eslint-plugin-import: '>=1.4.0' dependencies: - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) dev: true /eslint-import-resolver-node@0.3.9: @@ -9443,7 +9352,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.13.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0): + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.14.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0): resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -9453,8 +9362,8 @@ packages: debug: 4.3.5 enhanced-resolve: 5.17.0 eslint: 8.57.0 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) fast-glob: 3.3.2 get-tsconfig: 4.7.5 is-core-module: 2.13.1 @@ -9466,7 +9375,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): + /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} engines: {node: '>=4'} peerDependencies: @@ -9487,11 +9396,11 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.13.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.14.1)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color dev: true @@ -9544,7 +9453,7 @@ packages: - ts-jest dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: @@ -9554,7 +9463,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 7.13.1(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 7.14.1(eslint@8.57.0)(typescript@5.5.2) array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 array.prototype.flat: 1.3.2 @@ -9563,7 +9472,7 @@ packages: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.14.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 From a77d573bc1d45e1c5d70f8c3bdea1b826078bb29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 10:27:31 -0400 Subject: [PATCH 19/23] Bump graphql from 16.8.2 to 16.9.0 (#10806) Bumps [graphql](https://github.com/graphql/graphql-js) from 16.8.2 to 16.9.0. - [Release notes](https://github.com/graphql/graphql-js/releases) - [Commits](https://github.com/graphql/graphql-js/compare/v16.8.2...v16.9.0) --- updated-dependencies: - dependency-name: graphql dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/web/package.json | 2 +- packages/client/package.json | 2 +- packages/graphql/package.json | 2 +- packages/helpers/package.json | 2 +- packages/storybook-helpers/package.json | 2 +- pnpm-lock.yaml | 404 ++++++++++++------------ 6 files changed, 207 insertions(+), 207 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 28b20cc177c..efd9b70f796 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -54,7 +54,7 @@ "dataloader": "^2.2.2", "date-fns": "^3.6.0", "framer-motion": "^11.2.12", - "graphql": "^16.8.2", + "graphql": "^16.9.0", "lodash": "^4.17.21", "path-browserify": "^1.0.1", "react": "^18.3.1", diff --git a/packages/client/package.json b/packages/client/package.json index 0cfdf98af3b..28437bbab3c 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -24,7 +24,7 @@ "@gc-digital-talent/env": "workspace:*", "@urql/core": "^5.0.4", "@urql/exchange-auth": "^2.2.0", - "graphql": "^16.8.2", + "graphql": "^16.9.0", "jwt-decode": "^4.0.0", "lodash": "^4.17.21", "react-intl": "^6.6.8", diff --git a/packages/graphql/package.json b/packages/graphql/package.json index b5b33c7e350..d24c29bd54f 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -14,7 +14,7 @@ "@graphql-codegen/cli": "^5.0.2", "@graphql-codegen/client-preset": "^4.2.6", "@parcel/watcher": "^2.4.1", - "graphql": "^16.8.2", + "graphql": "^16.9.0", "tsconfig": "workspace:*", "typescript": "^5.5.2", "urql": "^4.1.0" diff --git a/packages/helpers/package.json b/packages/helpers/package.json index 7e817d2ee9f..d6ab36cb8b2 100644 --- a/packages/helpers/package.json +++ b/packages/helpers/package.json @@ -14,7 +14,7 @@ "dependencies": { "@gc-digital-talent/graphql": "workspace:*", "@gc-digital-talent/storage": "workspace:*", - "graphql": "^16.8.2", + "graphql": "^16.9.0", "lodash": "^4.17.21", "react": "^18.3.1", "urql": "^4.1.0" diff --git a/packages/storybook-helpers/package.json b/packages/storybook-helpers/package.json index c824e773f00..55796981642 100644 --- a/packages/storybook-helpers/package.json +++ b/packages/storybook-helpers/package.json @@ -16,7 +16,7 @@ "@urql/core": "^5.0.4", "chromatic": "^11.5.4", "framer-motion": "^11.2.12", - "graphql": "^16.8.2", + "graphql": "^16.9.0", "lodash": "^4.17.21", "react-helmet-async": "^2.0.5", "react-router-dom": "^6.23.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 13fcc52e89f..3bd1021ebc7 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -124,8 +124,8 @@ importers: specifier: ^11.2.12 version: 11.2.12(react-dom@18.3.1)(react@18.3.1) graphql: - specifier: ^16.8.2 - version: 16.8.2 + specifier: ^16.9.0 + version: 16.9.0 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -365,13 +365,13 @@ importers: version: link:../toast '@urql/core': specifier: ^5.0.4 - version: 5.0.4(graphql@16.8.2) + version: 5.0.4(graphql@16.9.0) '@urql/exchange-auth': specifier: ^2.2.0 version: 2.2.0(@urql/core@5.0.4) graphql: - specifier: ^16.8.2 - version: 16.8.2 + specifier: ^16.9.0 + version: 16.9.0 jwt-decode: specifier: ^4.0.0 version: 4.0.0 @@ -705,16 +705,16 @@ importers: devDependencies: '@graphql-codegen/cli': specifier: ^5.0.2 - version: 5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.5.2) + version: 5.0.2(@parcel/watcher@2.4.1)(graphql@16.9.0)(typescript@5.5.2) '@graphql-codegen/client-preset': specifier: ^4.2.6 - version: 4.3.0(graphql@16.8.2) + version: 4.3.0(graphql@16.9.0) '@parcel/watcher': specifier: ^2.4.1 version: 2.4.1 graphql: - specifier: ^16.8.2 - version: 16.8.2 + specifier: ^16.9.0 + version: 16.9.0 tsconfig: specifier: workspace:* version: link:../tsconfig @@ -734,8 +734,8 @@ importers: specifier: workspace:* version: link:../storage graphql: - specifier: ^16.8.2 - version: 16.8.2 + specifier: ^16.9.0 + version: 16.9.0 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -947,7 +947,7 @@ importers: version: 8.1.10(prettier@3.3.2)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2) '@urql/core': specifier: ^5.0.4 - version: 5.0.4(graphql@16.8.2) + version: 5.0.4(graphql@16.9.0) chromatic: specifier: ^11.5.4 version: 11.5.4 @@ -955,8 +955,8 @@ importers: specifier: ^11.2.12 version: 11.2.12(react-dom@18.3.1)(react@18.3.1) graphql: - specifier: ^16.8.2 - version: 16.8.2 + specifier: ^16.9.0 + version: 16.9.0 lodash: specifier: ^4.17.21 version: 4.17.21 @@ -1233,7 +1233,7 @@ importers: packages: - /@0no-co/graphql.web@1.0.7(graphql@16.8.2): + /@0no-co/graphql.web@1.0.7(graphql@16.9.0): resolution: {integrity: sha512-E3Qku4mTzdrlwVWGPxklDnME5ANrEGetvYw4i2GCRlppWXXE4QD66j7pwb8HelZwS6LnqEChhrSOGCXpbiu6MQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1241,7 +1241,7 @@ packages: graphql: optional: true dependencies: - graphql: 16.8.2 + graphql: 16.9.0 /@adobe/css-tools@4.4.0: resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} @@ -1254,7 +1254,7 @@ packages: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - /@ardatan/relay-compiler@12.0.0(graphql@16.8.2): + /@ardatan/relay-compiler@12.0.0(graphql@16.9.0): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: @@ -1271,7 +1271,7 @@ packages: fb-watchman: 2.0.2 fbjs: 3.0.5 glob: 7.2.3 - graphql: 16.8.2 + graphql: 16.9.0 immutable: 3.7.6 invariant: 2.2.4 nullthrows: 1.1.1 @@ -3286,17 +3286,17 @@ packages: typescript: 5.5.2 dev: true - /@graphql-codegen/add@5.0.3(graphql@16.8.2): + /@graphql-codegen/add@5.0.3(graphql@16.9.0): resolution: {integrity: sha512-SxXPmramkth8XtBlAHu4H4jYcYXM/o3p01+psU+0NADQowA8jtYkK6MW5rV6T+CxkEaNZItfSmZRPgIuypcqnA==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(graphql@16.8.2)(typescript@5.5.2): + /@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(graphql@16.9.0)(typescript@5.5.2): resolution: {integrity: sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==} hasBin: true peerDependencies: @@ -3309,27 +3309,27 @@ packages: '@babel/generator': 7.24.7 '@babel/template': 7.24.7 '@babel/types': 7.24.7 - '@graphql-codegen/client-preset': 4.3.0(graphql@16.8.2) - '@graphql-codegen/core': 4.0.2(graphql@16.8.2) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/code-file-loader': 8.1.2(graphql@16.8.2) - '@graphql-tools/git-loader': 8.0.6(graphql@16.8.2) - '@graphql-tools/github-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/load': 8.0.2(graphql@16.8.2) - '@graphql-tools/prisma-loader': 8.0.4(graphql@16.8.2) - '@graphql-tools/url-loader': 8.0.2(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-codegen/client-preset': 4.3.0(graphql@16.9.0) + '@graphql-codegen/core': 4.0.2(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/code-file-loader': 8.1.2(graphql@16.9.0) + '@graphql-tools/git-loader': 8.0.6(graphql@16.9.0) + '@graphql-tools/github-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/load': 8.0.2(graphql@16.9.0) + '@graphql-tools/prisma-loader': 8.0.4(graphql@16.9.0) + '@graphql-tools/url-loader': 8.0.2(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@parcel/watcher': 2.4.1 '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.5.2) debounce: 1.2.1 detect-indent: 6.1.0 - graphql: 16.8.2 - graphql-config: 5.0.3(graphql@16.8.2)(typescript@5.5.2) + graphql: 16.9.0 + graphql-config: 5.0.3(graphql@16.9.0)(typescript@5.5.2) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -3354,145 +3354,145 @@ packages: - utf-8-validate dev: true - /@graphql-codegen/client-preset@4.3.0(graphql@16.8.2): + /@graphql-codegen/client-preset@4.3.0(graphql@16.9.0): resolution: {integrity: sha512-p2szj5YiyLUYnQn1h7S4dsSY2Jc1LNrm32ptkb6CGtqPo3w9vgqki2WRJwgeJN8s3bhifqWRPzhoid/smrFVgA==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: '@babel/helper-plugin-utils': 7.24.7 '@babel/template': 7.24.7 - '@graphql-codegen/add': 5.0.3(graphql@16.8.2) - '@graphql-codegen/gql-tag-operations': 4.0.7(graphql@16.8.2) - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/typed-document-node': 5.0.7(graphql@16.8.2) - '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2) - '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) - '@graphql-tools/documents': 1.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-codegen/add': 5.0.3(graphql@16.9.0) + '@graphql-codegen/gql-tag-operations': 4.0.7(graphql@16.9.0) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-codegen/typed-document-node': 5.0.7(graphql@16.9.0) + '@graphql-codegen/typescript': 4.0.7(graphql@16.9.0) + '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.9.0) + '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.9.0) + '@graphql-tools/documents': 1.0.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/core@4.0.2(graphql@16.8.2): + /@graphql-codegen/core@4.0.2(graphql@16.9.0): resolution: {integrity: sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-tools/schema': 10.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-codegen/gql-tag-operations@4.0.7(graphql@16.8.2): + /@graphql-codegen/gql-tag-operations@4.0.7(graphql@16.9.0): resolution: {integrity: sha512-2I69+IDC8pqAohH6cgKse/vPfJ/4TRTJX96PkAKz8S4RD54PUHtBmzCdBInIFEP/vQuH5mFUAaIKXXjznmGOsg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) auto-bind: 4.0.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.2): + /@graphql-codegen/plugin-helpers@5.0.4(graphql@16.9.0): resolution: {integrity: sha512-MOIuHFNWUnFnqVmiXtrI+4UziMTYrcquljaI5f/T/Bc7oO7sXcfkAvgkNWEEi9xWreYwvuer3VHCuPI/lAFWbw==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) change-case-all: 1.0.15 common-tags: 1.8.2 - graphql: 16.8.2 + graphql: 16.9.0 import-from: 4.0.0 lodash: 4.17.21 tslib: 2.6.3 dev: true - /@graphql-codegen/schema-ast@4.0.2(graphql@16.8.2): + /@graphql-codegen/schema-ast@4.0.2(graphql@16.9.0): resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-codegen/typed-document-node@5.0.7(graphql@16.8.2): + /@graphql-codegen/typed-document-node@5.0.7(graphql@16.9.0): resolution: {integrity: sha512-rgFh96hAbNwPUxLVlRcNhGaw2+y7ZGx7giuETtdO8XzPasTQGWGRkZ3wXQ5UUiTX4X3eLmjnuoXYKT7HoxSznQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.9.0) auto-bind: 4.0.0 change-case-all: 1.0.15 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-operations@4.2.1(graphql@16.8.2): + /@graphql-codegen/typescript-operations@4.2.1(graphql@16.9.0): resolution: {integrity: sha512-LhEPsaP+AI65zfK2j6CBAL4RT0bJL/rR9oRWlvwtHLX0t7YQr4CP4BXgvvej9brYdedAxHGPWeV1tPHy5/z9KQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-codegen/typescript': 4.0.7(graphql@16.9.0) + '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.9.0) auto-bind: 4.0.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript@4.0.7(graphql@16.8.2): + /@graphql-codegen/typescript@4.0.7(graphql@16.9.0): resolution: {integrity: sha512-Gn+JNvQBJhBqH7s83piAJ6UeU/MTj9GXWFO9bdbl8PMLCAM1uFAtg04iHfkGCtDKXcUg5a3Dt/SZG85uk5KuhA==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-codegen/schema-ast': 4.0.2(graphql@16.9.0) + '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.9.0) auto-bind: 4.0.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/visitor-plugin-common@5.2.0(graphql@16.8.2): + /@graphql-codegen/visitor-plugin-common@5.2.0(graphql@16.9.0): resolution: {integrity: sha512-0p8AwmARaZCAlDFfQu6Sz+JV6SjbPDx3y2nNM7WAAf0au7Im/GpJ7Ke3xaIYBc1b2rTZ+DqSTJI/zomENGD9NA==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-tools/optimize': 2.0.0(graphql@16.8.2) - '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.9.0) + '@graphql-tools/optimize': 2.0.0(graphql@16.9.0) + '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 - graphql: 16.8.2 - graphql-tag: 2.12.6(graphql@16.8.2) + graphql: 16.9.0 + graphql-tag: 2.12.6(graphql@16.9.0) parse-filepath: 1.0.2 tslib: 2.6.3 transitivePeerDependencies: @@ -3500,86 +3500,86 @@ packages: - supports-color dev: true - /@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.8.2): + /@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.9.0): resolution: {integrity: sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@whatwg-node/fetch': 0.9.18 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding dev: true - /@graphql-tools/batch-execute@9.0.4(graphql@16.8.2): + /@graphql-tools/batch-execute@9.0.4(graphql@16.9.0): resolution: {integrity: sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) dataloader: 2.2.2 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 value-or-promise: 1.0.12 dev: true - /@graphql-tools/code-file-loader@8.1.2(graphql@16.8.2): + /@graphql-tools/code-file-loader@8.1.2(graphql@16.9.0): resolution: {integrity: sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) globby: 11.1.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 unixify: 1.0.0 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/delegate@10.0.11(graphql@16.8.2): + /@graphql-tools/delegate@10.0.11(graphql@16.9.0): resolution: {integrity: sha512-+sKeecdIVXhFB/66e5yjeKYZ3Lpn52yNG637ElVhciuLGgFc153rC6l6zcuNd9yx5wMrNx35U/h3HsMIEI3xNw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.2) - '@graphql-tools/executor': 1.2.6(graphql@16.8.2) - '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/batch-execute': 9.0.4(graphql@16.9.0) + '@graphql-tools/executor': 1.2.6(graphql@16.9.0) + '@graphql-tools/schema': 10.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) dataloader: 2.2.2 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-tools/documents@1.0.1(graphql@16.8.2): + /@graphql-tools/documents@1.0.1(graphql@16.9.0): resolution: {integrity: sha512-aweoMH15wNJ8g7b2r4C4WRuJxZ0ca8HtNO54rkye/3duxTkW4fGBEutCx03jCIr5+a1l+4vFJNP859QnAVBVCA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.2 + graphql: 16.9.0 lodash.sortby: 4.7.0 tslib: 2.6.3 dev: true - /@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.8.2): + /@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.9.0): resolution: {integrity: sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@types/ws': 8.5.10 - graphql: 16.8.2 - graphql-ws: 5.16.0(graphql@16.8.2) + graphql: 16.9.0 + graphql-ws: 5.16.0(graphql@16.9.0) isomorphic-ws: 5.0.0(ws@8.17.0) tslib: 2.6.3 ws: 8.17.0 @@ -3588,17 +3588,17 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-http@1.0.9(graphql@16.8.2): + /@graphql-tools/executor-http@1.0.9(graphql@16.9.0): resolution: {integrity: sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.9.18 extract-files: 11.0.0 - graphql: 16.8.2 + graphql: 16.9.0 meros: 1.3.0 tslib: 2.6.3 value-or-promise: 1.0.12 @@ -3606,15 +3606,15 @@ packages: - '@types/node' dev: true - /@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.8.2): + /@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.9.0): resolution: {integrity: sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@types/ws': 8.5.10 - graphql: 16.8.2 + graphql: 16.9.0 isomorphic-ws: 5.0.0(ws@8.17.0) tslib: 2.6.3 ws: 8.17.0 @@ -3623,29 +3623,29 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor@1.2.6(graphql@16.8.2): + /@graphql-tools/executor@1.2.6(graphql@16.9.0): resolution: {integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) '@repeaterjs/repeater': 3.0.6 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 value-or-promise: 1.0.12 dev: true - /@graphql-tools/git-loader@8.0.6(graphql@16.8.2): + /@graphql-tools/git-loader@8.0.6(graphql@16.9.0): resolution: {integrity: sha512-FQFO4H5wHAmHVyuUQrjvPE8re3qJXt50TWHuzrK3dEaief7JosmlnkLMDMbMBwtwITz9u1Wpl6doPhT2GwKtlw==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 is-glob: 4.0.3 micromatch: 4.0.7 tslib: 2.6.3 @@ -3654,18 +3654,18 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader@8.0.1(graphql@16.8.2): + /@graphql-tools/github-loader@8.0.1(graphql@16.9.0): resolution: {integrity: sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.0.9(graphql@16.8.2) - '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/executor-http': 1.0.9(graphql@16.9.0) + '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@whatwg-node/fetch': 0.9.18 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -3674,21 +3674,21 @@ packages: - supports-color dev: true - /@graphql-tools/graphql-file-loader@8.0.1(graphql@16.8.2): + /@graphql-tools/graphql-file-loader@8.0.1(graphql@16.9.0): resolution: {integrity: sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 7.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/import': 7.0.1(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) globby: 11.1.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 unixify: 1.0.0 dev: true - /@graphql-tools/graphql-tag-pluck@8.3.1(graphql@16.8.2): + /@graphql-tools/graphql-tag-pluck@8.3.1(graphql@16.9.0): resolution: {integrity: sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==} engines: {node: '>=16.0.0'} peerDependencies: @@ -3699,87 +3699,87 @@ packages: '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7) '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/import@7.0.1(graphql@16.8.2): + /@graphql-tools/import@7.0.1(graphql@16.9.0): resolution: {integrity: sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 resolve-from: 5.0.0 tslib: 2.6.3 dev: true - /@graphql-tools/json-file-loader@8.0.1(graphql@16.8.2): + /@graphql-tools/json-file-loader@8.0.1(graphql@16.9.0): resolution: {integrity: sha512-lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) globby: 11.1.0 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 unixify: 1.0.0 dev: true - /@graphql-tools/load@8.0.2(graphql@16.8.2): + /@graphql-tools/load@8.0.2(graphql@16.9.0): resolution: {integrity: sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/schema': 10.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 p-limit: 3.1.0 tslib: 2.6.3 dev: true - /@graphql-tools/merge@9.0.4(graphql@16.8.2): + /@graphql-tools/merge@9.0.4(graphql@16.9.0): resolution: {integrity: sha512-MivbDLUQ+4Q8G/Hp/9V72hbn810IJDEZQ57F01sHnlrrijyadibfVhaQfW/pNH+9T/l8ySZpaR/DpL5i+ruZ+g==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-tools/optimize@2.0.0(graphql@16.8.2): + /@graphql-tools/optimize@2.0.0(graphql@16.9.0): resolution: {integrity: sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-tools/prisma-loader@8.0.4(graphql@16.8.2): + /@graphql-tools/prisma-loader@8.0.4(graphql@16.9.0): resolution: {integrity: sha512-hqKPlw8bOu/GRqtYr0+dINAI13HinTVYBDqhwGAPIFmLr5s+qKskzgCiwbsckdrb5LWVFmVZc+UXn80OGiyBzg==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 8.0.2(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/url-loader': 8.0.2(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.9.18 chalk: 4.1.2 debug: 4.3.5 dotenv: 16.4.5 - graphql: 16.8.2 - graphql-request: 6.1.0(graphql@16.8.2) + graphql: 16.9.0 + graphql-request: 6.1.0(graphql@16.9.0) http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.4 jose: 5.4.0 @@ -3796,50 +3796,50 @@ packages: - utf-8-validate dev: true - /@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.8.2): + /@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.9.0): resolution: {integrity: sha512-y0ZrQ/iyqWZlsS/xrJfSir3TbVYJTYmMOu4TaSz6F4FRDTQ3ie43BlKkhf04rC28pnUOS4BO9pDcAo1D30l5+A==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@ardatan/relay-compiler': 12.0.0(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-tools/schema@10.0.4(graphql@16.8.2): + /@graphql-tools/schema@10.0.4(graphql@16.9.0): resolution: {integrity: sha512-HuIwqbKxPaJujox25Ra4qwz0uQzlpsaBOzO6CVfzB/MemZdd+Gib8AIvfhQArK0YIN40aDran/yi+E5Xf0mQww==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 9.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/merge': 9.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 value-or-promise: 1.0.12 dev: true - /@graphql-tools/url-loader@8.0.2(graphql@16.8.2): + /@graphql-tools/url-loader@8.0.2(graphql@16.9.0): resolution: {integrity: sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.11(graphql@16.8.2) - '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.2) - '@graphql-tools/executor-http': 1.0.9(graphql@16.8.2) - '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - '@graphql-tools/wrap': 10.0.5(graphql@16.8.2) + '@graphql-tools/delegate': 10.0.11(graphql@16.9.0) + '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.9.0) + '@graphql-tools/executor-http': 1.0.9(graphql@16.9.0) + '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + '@graphql-tools/wrap': 10.0.5(graphql@16.9.0) '@types/ws': 8.5.10 '@whatwg-node/fetch': 0.9.18 - graphql: 16.8.2 + graphql: 16.9.0 isomorphic-ws: 5.0.0(ws@8.17.0) tslib: 2.6.3 value-or-promise: 1.0.12 @@ -3851,39 +3851,39 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils@10.2.2(graphql@16.8.2): + /@graphql-tools/utils@10.2.2(graphql@16.9.0): resolution: {integrity: sha512-ueoplzHIgFfxhFrF4Mf/niU/tYHuO6Uekm2nCYU72qpI+7Hn9dA2/o5XOBvFXDk27Lp5VSvQY5WfmRbqwVxaYQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) cross-inspect: 1.0.0 dset: 3.1.3 - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 dev: true - /@graphql-tools/wrap@10.0.5(graphql@16.8.2): + /@graphql-tools/wrap@10.0.5(graphql@16.9.0): resolution: {integrity: sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 10.0.11(graphql@16.8.2) - '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) - graphql: 16.8.2 + '@graphql-tools/delegate': 10.0.11(graphql@16.9.0) + '@graphql-tools/schema': 10.0.4(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) + graphql: 16.9.0 tslib: 2.6.3 value-or-promise: 1.0.12 dev: true - /@graphql-typed-document-node/core@3.2.0(graphql@16.8.2): + /@graphql-typed-document-node/core@3.2.0(graphql@16.9.0): resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.8.2 + graphql: 16.9.0 dev: true /@heroicons/react@2.1.4(react@18.3.1): @@ -7259,10 +7259,10 @@ packages: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} dev: true - /@urql/core@5.0.4(graphql@16.8.2): + /@urql/core@5.0.4(graphql@16.9.0): resolution: {integrity: sha512-gl86J6B6gWXvvkx5omZ+CaGiPQ0chCUGM0jBsm0zTtkDQPRqufv0NSUN6sp2JhGGtTOB0NR6Pd+w7XAVGGyUOA==} dependencies: - '@0no-co/graphql.web': 1.0.7(graphql@16.8.2) + '@0no-co/graphql.web': 1.0.7(graphql@16.9.0) wonka: 6.3.4 transitivePeerDependencies: - graphql @@ -7272,7 +7272,7 @@ packages: peerDependencies: '@urql/core': ^5.0.0 dependencies: - '@urql/core': 5.0.4(graphql@16.8.2) + '@urql/core': 5.0.4(graphql@16.9.0) wonka: 6.3.4 dev: false @@ -10365,7 +10365,7 @@ packages: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true - /graphql-config@5.0.3(graphql@16.8.2)(typescript@5.5.2): + /graphql-config@5.0.3(graphql@16.9.0)(typescript@5.5.2): resolution: {integrity: sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==} engines: {node: '>= 16.0.0'} peerDependencies: @@ -10375,14 +10375,14 @@ packages: cosmiconfig-toml-loader: optional: true dependencies: - '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.2) - '@graphql-tools/load': 8.0.2(graphql@16.8.2) - '@graphql-tools/merge': 9.0.4(graphql@16.8.2) - '@graphql-tools/url-loader': 8.0.2(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/json-file-loader': 8.0.1(graphql@16.9.0) + '@graphql-tools/load': 8.0.2(graphql@16.9.0) + '@graphql-tools/merge': 9.0.4(graphql@16.9.0) + '@graphql-tools/url-loader': 8.0.2(graphql@16.9.0) + '@graphql-tools/utils': 10.2.2(graphql@16.9.0) cosmiconfig: 8.3.6(typescript@5.5.2) - graphql: 16.8.2 + graphql: 16.9.0 jiti: 1.21.6 minimatch: 4.2.3 string-env-interpolation: 1.0.1 @@ -10395,39 +10395,39 @@ packages: - utf-8-validate dev: true - /graphql-request@6.1.0(graphql@16.8.2): + /graphql-request@6.1.0(graphql@16.9.0): resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==} peerDependencies: graphql: 14 - 16 dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0) cross-fetch: 3.1.8 - graphql: 16.8.2 + graphql: 16.9.0 transitivePeerDependencies: - encoding dev: true - /graphql-tag@2.12.6(graphql@16.8.2): + /graphql-tag@2.12.6(graphql@16.9.0): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.8.2 + graphql: 16.9.0 tslib: 2.6.3 dev: true - /graphql-ws@5.16.0(graphql@16.8.2): + /graphql-ws@5.16.0(graphql@16.9.0): resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==} engines: {node: '>=10'} peerDependencies: graphql: '>=0.11 <=16' dependencies: - graphql: 16.8.2 + graphql: 16.9.0 dev: true - /graphql@16.8.2: - resolution: {integrity: sha512-cvVIBILwuoSyD54U4cF/UXDh5yAobhNV/tPygI4lZhgOIJQE/WLWC4waBRb4I6bDVYb3OVx3lfHbaQOEoUD5sg==} + /graphql@16.9.0: + resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} /gunzip-maybe@1.4.2: @@ -14939,7 +14939,7 @@ packages: '@urql/core': ^5.0.0 react: '>= 16.8.0' dependencies: - '@urql/core': 5.0.4(graphql@16.8.2) + '@urql/core': 5.0.4(graphql@16.9.0) react: 18.3.1 wonka: 6.3.4 From e0babbf97ac69fb9fc7bab49178d95bbaa98c8e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:01:14 -0400 Subject: [PATCH 20/23] Bump react-router-dom from 6.23.1 to 6.24.0 (#10810) Bumps [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) from 6.23.1 to 6.24.0. - [Release notes](https://github.com/remix-run/react-router/releases) - [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md) - [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.24.0/packages/react-router-dom) --- updated-dependencies: - dependency-name: react-router-dom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- apps/web/package.json | 2 +- packages/auth/package.json | 2 +- packages/i18n/package.json | 2 +- packages/jest-helpers/package.json | 2 +- packages/storybook-helpers/package.json | 2 +- packages/ui/package.json | 4 +-- pnpm-lock.yaml | 42 ++++++++++++------------- 7 files changed, 28 insertions(+), 28 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index efd9b70f796..2b471e0835c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -62,7 +62,7 @@ "react-helmet-async": "^2.0.5", "react-hook-form": "^7.52.0", "react-intl": "^6.6.8", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "react-to-print": "^2.15.1", "urql": "^4.1.0" }, diff --git a/packages/auth/package.json b/packages/auth/package.json index e14a9f7184a..77a1bfdcc30 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -25,7 +25,7 @@ "@gc-digital-talent/i18n": "workspace:*", "jwt-decode": "^4.0.0", "path-browserify": "^1.0.1", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "urql": "^4.1.0" }, "devDependencies": { diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 4e17841125e..1dda3d55a24 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -39,7 +39,7 @@ "json-stable-stringify": "^1.1.1", "react": "^18.3.1", "react-intl": "^6.6.8", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "tsconfig": "workspace:*", "tsx": "^4.15.7", "typescript": "^5.5.2", diff --git a/packages/jest-helpers/package.json b/packages/jest-helpers/package.json index 4dfe3538b44..9063c7619b5 100644 --- a/packages/jest-helpers/package.json +++ b/packages/jest-helpers/package.json @@ -18,7 +18,7 @@ "jest": "^29.7.0", "react-helmet-async": "^2.0.5", "react-intl": "^6.6.8", - "react-router-dom": "^6.23.1" + "react-router-dom": "^6.24.0" }, "devDependencies": { "@gc-digital-talent/eslint-config": "workspace:*", diff --git a/packages/storybook-helpers/package.json b/packages/storybook-helpers/package.json index 55796981642..149abbe2dc8 100644 --- a/packages/storybook-helpers/package.json +++ b/packages/storybook-helpers/package.json @@ -19,7 +19,7 @@ "graphql": "^16.9.0", "lodash": "^4.17.21", "react-helmet-async": "^2.0.5", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "urql": "^4.1.0", "wonka": "^6.3.4" }, diff --git a/packages/ui/package.json b/packages/ui/package.json index 73d55f5f6aa..d6f51b6b3b2 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -41,7 +41,7 @@ "react-dom": "^18.2.0", "react-focus-lock": "^2.12.1", "react-remove-scroll": "^2.5.10", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "urql": "^4.1.0" }, "devDependencies": { @@ -64,7 +64,7 @@ "jest": "^29.7.0", "react": "^18.3.1", "react-intl": "^6.6.8", - "react-router-dom": "^6.23.1", + "react-router-dom": "^6.24.0", "tsconfig": "workspace:*", "typescript": "^5.5.2" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3bd1021ebc7..500cb72b95c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -148,8 +148,8 @@ importers: specifier: ^6.6.8 version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) react-to-print: specifier: ^2.15.1 version: 2.15.1(react-dom@18.3.1)(react@18.3.1) @@ -315,8 +315,8 @@ importers: specifier: ^1.0.1 version: 1.0.1 react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) urql: specifier: ^4.1.0 version: 4.1.0(@urql/core@5.0.4)(react@18.3.1) @@ -811,8 +811,8 @@ importers: specifier: ^6.6.8 version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) tsconfig: specifier: workspace:* version: link:../tsconfig @@ -841,8 +841,8 @@ importers: specifier: ^6.6.8 version: 6.6.8(react@18.3.1)(typescript@5.5.2) react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) devDependencies: '@gc-digital-talent/eslint-config': specifier: workspace:* @@ -964,8 +964,8 @@ importers: specifier: ^2.0.5 version: 2.0.5(react@18.3.1) react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) urql: specifier: ^4.1.0 version: 4.1.0(@urql/core@5.0.4)(react@18.3.1) @@ -1164,8 +1164,8 @@ importers: specifier: ^2.5.10 version: 2.5.10(@types/react@18.3.3)(react@18.3.1) react-router-dom: - specifier: ^6.23.1 - version: 6.23.1(react-dom@18.3.1)(react@18.3.1) + specifier: ^6.24.0 + version: 6.24.0(react-dom@18.3.1)(react@18.3.1) urql: specifier: ^4.1.0 version: 4.1.0(@urql/core@5.0.4)(react@18.3.1) @@ -5354,8 +5354,8 @@ packages: resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==} dev: false - /@remix-run/router@1.16.1: - resolution: {integrity: sha512-es2g3dq6Nb07iFxGk5GuHN20RwBZOsuDQN7izWIisUcv9r+d2C5jQxqmgkdebXgReWfiyUabcki6Fg77mSNrig==} + /@remix-run/router@1.17.0: + resolution: {integrity: sha512-2D6XaHEVvkCn682XBnipbJjgZUU7xjLtA4dGJRBVUKpEaDYOZMENZoZjAOSb7qirxt5RupjzZxz4fK2FO+EFPw==} engines: {node: '>=14.0.0'} /@repeaterjs/repeater@3.0.6: @@ -13394,25 +13394,25 @@ packages: use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1) use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) - /react-router-dom@6.23.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-utP+K+aSTtEdbWpC+4gxhdlPFwuEfDKq8ZrPFU65bbRJY+l706qjR7yaidBpo3MSeA/fzwbXWbKBI6ftOnP3OQ==} + /react-router-dom@6.24.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-960sKuau6/yEwS8e+NVEidYQb1hNjAYM327gjEyXlc6r3Skf2vtwuJ2l7lssdegD2YjoKG5l8MsVyeTDlVeY8g==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@remix-run/router': 1.16.1 + '@remix-run/router': 1.17.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-router: 6.23.1(react@18.3.1) + react-router: 6.24.0(react@18.3.1) - /react-router@6.23.1(react@18.3.1): - resolution: {integrity: sha512-fzcOaRF69uvqbbM7OhvQyBTFDVrrGlsFdS3AL+1KfIBtGETibHzi3FkoTRyiDJnWNc2VxrfvR+657ROHjaNjqQ==} + /react-router@6.24.0(react@18.3.1): + resolution: {integrity: sha512-sQrgJ5bXk7vbcC4BxQxeNa5UmboFm35we1AFK0VvQaz9g0LzxEIuLOhHIoZ8rnu9BO21ishGeL9no1WB76W/eg==} engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' dependencies: - '@remix-run/router': 1.16.1 + '@remix-run/router': 1.17.0 react: 18.3.1 /react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): From 5792eb4d29b1733a1eb5bcbf84105256ce32975d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:02:07 -0400 Subject: [PATCH 21/23] Bump @types/node from 20.14.6 to 20.14.9 in the types group (#10802) Bumps the types group with 1 update: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node). Updates `@types/node` from 20.14.6 to 20.14.9 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: types ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Sizer --- apps/playwright/package.json | 2 +- packages/client/package.json | 2 +- packages/forms/package.json | 2 +- pnpm-lock.yaml | 121 ++++++++++++++++++----------------- 4 files changed, 67 insertions(+), 60 deletions(-) diff --git a/apps/playwright/package.json b/apps/playwright/package.json index 3bf58cbd4a1..59ae90ee8ee 100644 --- a/apps/playwright/package.json +++ b/apps/playwright/package.json @@ -19,7 +19,7 @@ "@gc-digital-talent/eslint-config": "workspace:*", "@gc-digital-talent/graphql": "workspace:*", "@playwright/test": "^1.45.0", - "@types/node": "^20.14.6", + "@types/node": "^20.14.9", "@types/sinon": "^17.0.3", "axe-core": "^4.9.1", "dotenv": "^16.4.5", diff --git a/packages/client/package.json b/packages/client/package.json index 28437bbab3c..fe87842b41f 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -35,7 +35,7 @@ "@gc-digital-talent/jest-presets": "workspace:*", "@types/jest": "^29.5.12", "@types/lodash": "^4.17.5", - "@types/node": "^20.14.6", + "@types/node": "^20.14.9", "@types/react": "^18.3.3", "eslint": "^8.57.0", "jest": "^29.7.0", diff --git a/packages/forms/package.json b/packages/forms/package.json index 83014228698..874256ca67d 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -48,7 +48,7 @@ "@testing-library/user-event": "^14.5.2", "@types/jest": "^29.5.12", "@types/lodash": "^4.17.5", - "@types/node": "^20.14.6", + "@types/node": "^20.14.9", "@types/react": "^18.3.3", "eslint": "^8.57.0", "jest": "^29.7.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 500cb72b95c..8057757cfb4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: dependencies: '@axe-core/playwright': specifier: ^4.9.1 - version: 4.9.1(playwright-core@1.45.0) + version: 4.9.1(playwright-core@1.44.1) devDependencies: '@gc-digital-talent/date-helpers': specifier: workspace:* @@ -37,8 +37,8 @@ importers: specifier: ^1.45.0 version: 1.45.0 '@types/node': - specifier: ^20.14.6 - version: 20.14.6 + specifier: ^20.14.9 + version: 20.14.9 '@types/sinon': specifier: ^17.0.3 version: 17.0.3 @@ -225,7 +225,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) jest-axe: specifier: ^9.0.0 version: 9.0.0 @@ -398,8 +398,8 @@ importers: specifier: ^4.17.5 version: 4.17.5 '@types/node': - specifier: ^20.14.6 - version: 20.14.6 + specifier: ^20.14.9 + version: 20.14.9 '@types/react': specifier: ^18.3.3 version: 18.3.3 @@ -408,7 +408,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) react: specifier: ^18.3.1 version: 18.3.1 @@ -451,7 +451,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) tsconfig: specifier: workspace:* version: link:../tsconfig @@ -671,8 +671,8 @@ importers: specifier: ^4.17.5 version: 4.17.5 '@types/node': - specifier: ^20.14.6 - version: 20.14.6 + specifier: ^20.14.9 + version: 20.14.9 '@types/react': specifier: ^18.3.3 version: 18.3.3 @@ -681,7 +681,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 @@ -797,7 +797,7 @@ importers: version: 5.3.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) js-yaml: specifier: ^4.1.0 version: 4.1.0 @@ -833,7 +833,7 @@ importers: version: link:../i18n jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) react-helmet-async: specifier: ^2.0.5 version: 2.0.5(react@18.3.1) @@ -1036,7 +1036,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) react: specifier: ^18.3.1 version: 18.3.1 @@ -1217,7 +1217,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.14.6) + version: 29.7.0(@types/node@20.14.9) react: specifier: ^18.3.1 version: 18.3.1 @@ -1299,13 +1299,13 @@ packages: default-browser-id: 3.0.0 dev: true - /@axe-core/playwright@4.9.1(playwright-core@1.45.0): + /@axe-core/playwright@4.9.1(playwright-core@1.44.1): resolution: {integrity: sha512-8m4WZbZq7/aq7ZY5IG8GqV+ZdvtGn/iJdom+wBg+iv/3BAOBIfNQtIu697a41438DzEEyptXWmC3Xl5Kx/o9/g==} peerDependencies: playwright-core: '>= 1.0.0' dependencies: axe-core: 4.9.1 - playwright-core: 1.45.0 + playwright-core: 1.44.1 dev: false /@babel/code-frame@7.24.7: @@ -3975,7 +3975,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -3995,14 +3995,14 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.14.6) + jest-config: 29.7.0(@types/node@20.14.9) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -4029,7 +4029,7 @@ packages: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-mock: 29.7.0 /@jest/expect-utils@29.7.0: @@ -4053,7 +4053,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -4084,7 +4084,7 @@ packages: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -4166,7 +4166,7 @@ packages: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.14.6 + '@types/node': 20.14.9 '@types/yargs': 17.0.32 chalk: 4.1.2 @@ -6319,7 +6319,7 @@ packages: chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 - jest: 29.7.0(@types/node@20.14.6) + jest: 29.7.0(@types/node@20.14.9) lodash: 4.17.21 redent: 3.0.0 dev: true @@ -6664,17 +6664,17 @@ packages: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 - '@types/node': 20.14.6 + '@types/node': 20.14.9 /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 /@types/cross-spawn@6.0.6: resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 dev: true /@types/detect-port@1.3.5: @@ -6719,7 +6719,7 @@ packages: /@types/express-serve-static-core@4.19.3: resolution: {integrity: sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -6740,13 +6740,13 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.14.6 + '@types/node': 20.14.9 dev: true /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 /@types/hast@3.0.4: resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} @@ -6797,7 +6797,7 @@ packages: /@types/jsdom@20.0.1: resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 '@types/tough-cookie': 4.0.5 parse5: 7.1.2 dev: true @@ -6838,8 +6838,8 @@ packages: dependencies: undici-types: 5.26.5 - /@types/node@20.14.6: - resolution: {integrity: sha512-JbA0XIJPL1IiNnU7PFxDXyfAwcwVVrOoqyzzyQTyMeVhBzkJVMSkC1LlVsRQ2lpqiY4n6Bb9oCS6lzDKVQxbZw==} + /@types/node@20.14.9: + resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==} dependencies: undici-types: 5.26.5 @@ -6897,13 +6897,13 @@ packages: resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 - '@types/node': 20.14.6 + '@types/node': 20.14.9 /@types/serve-static@1.15.7: resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==} dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.14.6 + '@types/node': 20.14.9 '@types/send': 0.17.4 /@types/sinon@17.0.3: @@ -6934,7 +6934,7 @@ packages: /@types/ws@8.5.10: resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 dev: true /@types/yargs-parser@21.0.3: @@ -8497,7 +8497,7 @@ packages: p-map: 6.0.0 dev: true - /create-jest@29.7.0(@types/node@20.14.6): + /create-jest@29.7.0(@types/node@20.14.9): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -8506,7 +8506,7 @@ packages: chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.14.6) + jest-config: 29.7.0(@types/node@20.14.9) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -11176,7 +11176,7 @@ packages: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.3 @@ -11196,7 +11196,7 @@ packages: - babel-plugin-macros - supports-color - /jest-cli@29.7.0(@types/node@20.14.6): + /jest-cli@29.7.0(@types/node@20.14.9): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -11210,10 +11210,10 @@ packages: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.14.6) + create-jest: 29.7.0(@types/node@20.14.9) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.14.6) + jest-config: 29.7.0(@types/node@20.14.9) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -11223,7 +11223,7 @@ packages: - supports-color - ts-node - /jest-config@29.7.0(@types/node@20.14.6): + /jest-config@29.7.0(@types/node@20.14.9): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -11238,7 +11238,7 @@ packages: '@babel/core': 7.24.7 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 babel-jest: 29.7.0(@babel/core@7.24.7) chalk: 4.1.2 ci-info: 3.9.0 @@ -11300,7 +11300,7 @@ packages: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -11317,7 +11317,7 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -11335,7 +11335,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.14.6 + '@types/node': 20.14.9 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -11391,7 +11391,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-util: 29.7.0 /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -11441,7 +11441,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -11471,7 +11471,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 cjs-module-lexer: 1.3.1 collect-v8-coverage: 1.0.2 @@ -11521,7 +11521,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -11544,7 +11544,7 @@ packages: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.6 + '@types/node': 20.14.9 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -11555,12 +11555,12 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.14.6 + '@types/node': 20.14.9 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - /jest@29.7.0(@types/node@20.14.6): + /jest@29.7.0(@types/node@20.14.9): resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -11573,7 +11573,7 @@ packages: '@jest/core': 29.7.0 '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.14.6) + jest-cli: 29.7.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -12824,10 +12824,17 @@ packages: dependencies: find-up: 5.0.0 + /playwright-core@1.44.1: + resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==} + engines: {node: '>=16'} + hasBin: true + dev: false + /playwright-core@1.45.0: resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} engines: {node: '>=18'} hasBin: true + dev: true /playwright@1.45.0: resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} @@ -14521,7 +14528,7 @@ packages: bs-logger: 0.2.6 esbuild: 0.20.2 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.14.6) + jest: 29.7.0(@types/node@20.14.9) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 From 00e0ee191ab84758fa5ba2bc10354e16784fb84d Mon Sep 17 00:00:00 2001 From: Peter Giles <8978655+petertgiles@users.noreply.github.com> Date: Thu, 27 Jun 2024 17:29:52 -0400 Subject: [PATCH 22/23] Rollback framer-motion (#10825) --- apps/web/package.json | 2 +- packages/forms/package.json | 2 +- packages/storybook-helpers/package.json | 2 +- packages/ui/package.json | 2 +- pnpm-lock.yaml | 33 ++++++++++--------------- 5 files changed, 17 insertions(+), 24 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index 2b471e0835c..ef26458351a 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -53,7 +53,7 @@ "@tanstack/react-table": "^8.17.3", "dataloader": "^2.2.2", "date-fns": "^3.6.0", - "framer-motion": "^11.2.12", + "framer-motion": "11.2.10", "graphql": "^16.9.0", "lodash": "^4.17.21", "path-browserify": "^1.0.1", diff --git a/packages/forms/package.json b/packages/forms/package.json index 874256ca67d..3c2e57dc295 100644 --- a/packages/forms/package.json +++ b/packages/forms/package.json @@ -30,7 +30,7 @@ "@tiptap/starter-kit": "^2.4.0", "date-fns": "^3.6.0", "downshift": "^9.0.6", - "framer-motion": "^11.2.12", + "framer-motion": "11.2.10", "lodash": "^4.17.21", "react-dom": "^18.2.0" }, diff --git a/packages/storybook-helpers/package.json b/packages/storybook-helpers/package.json index 149abbe2dc8..d877c165e76 100644 --- a/packages/storybook-helpers/package.json +++ b/packages/storybook-helpers/package.json @@ -15,7 +15,7 @@ "@storybook/react": "^8.1.10", "@urql/core": "^5.0.4", "chromatic": "^11.5.4", - "framer-motion": "^11.2.12", + "framer-motion": "11.2.10", "graphql": "^16.9.0", "lodash": "^4.17.21", "react-helmet-async": "^2.0.5", diff --git a/packages/ui/package.json b/packages/ui/package.json index d6f51b6b3b2..d324f9d3713 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -35,7 +35,7 @@ "@radix-ui/react-toggle": "^1.1.0", "@radix-ui/react-toggle-group": "^1.1.0", "chromatic": "^11.5.4", - "framer-motion": "^11.2.12", + "framer-motion": "11.2.10", "lodash": "^4.17.21", "react-csv-downloader": "^3.1.0", "react-dom": "^18.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8057757cfb4..21f72b15ccb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: dependencies: '@axe-core/playwright': specifier: ^4.9.1 - version: 4.9.1(playwright-core@1.44.1) + version: 4.9.1(playwright-core@1.45.0) devDependencies: '@gc-digital-talent/date-helpers': specifier: workspace:* @@ -121,8 +121,8 @@ importers: specifier: ^3.6.0 version: 3.6.0 framer-motion: - specifier: ^11.2.12 - version: 11.2.12(react-dom@18.3.1)(react@18.3.1) + specifier: 11.2.10 + version: 11.2.10(react-dom@18.3.1)(react@18.3.1) graphql: specifier: ^16.9.0 version: 16.9.0 @@ -622,8 +622,8 @@ importers: specifier: ^9.0.6 version: 9.0.6(react@18.3.1) framer-motion: - specifier: ^11.2.12 - version: 11.2.12(react-dom@18.3.1)(react@18.3.1) + specifier: 11.2.10 + version: 11.2.10(react-dom@18.3.1)(react@18.3.1) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -952,8 +952,8 @@ importers: specifier: ^11.5.4 version: 11.5.4 framer-motion: - specifier: ^11.2.12 - version: 11.2.12(react-dom@18.3.1)(react@18.3.1) + specifier: 11.2.10 + version: 11.2.10(react-dom@18.3.1)(react@18.3.1) graphql: specifier: ^16.9.0 version: 16.9.0 @@ -1146,8 +1146,8 @@ importers: specifier: ^11.5.4 version: 11.5.4 framer-motion: - specifier: ^11.2.12 - version: 11.2.12(react-dom@18.3.1)(react@18.3.1) + specifier: 11.2.10 + version: 11.2.10(react-dom@18.3.1)(react@18.3.1) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -1299,13 +1299,13 @@ packages: default-browser-id: 3.0.0 dev: true - /@axe-core/playwright@4.9.1(playwright-core@1.44.1): + /@axe-core/playwright@4.9.1(playwright-core@1.45.0): resolution: {integrity: sha512-8m4WZbZq7/aq7ZY5IG8GqV+ZdvtGn/iJdom+wBg+iv/3BAOBIfNQtIu697a41438DzEEyptXWmC3Xl5Kx/o9/g==} peerDependencies: playwright-core: '>= 1.0.0' dependencies: axe-core: 4.9.1 - playwright-core: 1.44.1 + playwright-core: 1.45.0 dev: false /@babel/code-frame@7.24.7: @@ -10081,8 +10081,8 @@ packages: engines: {node: '>= 0.6'} dev: true - /framer-motion@11.2.12(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-lCjkV4nA9rWOy2bhR4RZzkp2xpB++kFmUZ6D44V9VQaxk+JDmbDd5lq+u58DjJIIllE8AZEXp9OG/TyDN4FB/w==} + /framer-motion@11.2.10(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-/gr3PLZUVFCc86a9MqCUboVrALscrdluzTb3yew+2/qKBU8CX6nzs918/SRBRCqaPbx0TZP10CB6yFgK2C5cYQ==} peerDependencies: '@emotion/is-prop-valid': '*' react: ^18.0.0 @@ -12824,17 +12824,10 @@ packages: dependencies: find-up: 5.0.0 - /playwright-core@1.44.1: - resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==} - engines: {node: '>=16'} - hasBin: true - dev: false - /playwright-core@1.45.0: resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} engines: {node: '>=18'} hasBin: true - dev: true /playwright@1.45.0: resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} From 90b330b91f7ebd1810109d718e5396b685d93f68 Mon Sep 17 00:00:00 2001 From: JamesHuf <49166751+JamesHuf@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:02:30 -0700 Subject: [PATCH 23/23] Hide rejected veteran/priority claims (#10764) --- .../AssessmentResults.tsx | 13 +++++-- .../PoolCandidatesTable.tsx | 37 +++++++++++++++---- apps/web/src/utils/poolCandidate.ts | 25 +++++++++++++ 3 files changed, 63 insertions(+), 12 deletions(-) diff --git a/apps/web/src/components/AssessmentStepTracker/AssessmentResults.tsx b/apps/web/src/components/AssessmentStepTracker/AssessmentResults.tsx index 9b18dffbae1..594114d5279 100644 --- a/apps/web/src/components/AssessmentStepTracker/AssessmentResults.tsx +++ b/apps/web/src/components/AssessmentStepTracker/AssessmentResults.tsx @@ -8,6 +8,7 @@ import { ArmedForcesStatus, AssessmentStepType, FragmentType, + ClaimVerificationResult, } from "@gc-digital-talent/graphql"; import { getFullNameLabel } from "~/utils/nameUtils"; @@ -136,11 +137,15 @@ const AssessmentResult = ({ data-h2-align-items="base(center)" data-h2-gap="base(0 x.125)" > - {result.poolCandidate.user.hasPriorityEntitlement && ( - - )} + {result.poolCandidate.user.hasPriorityEntitlement && + result.poolCandidate.priorityVerification !== + ClaimVerificationResult.Rejected && ( + + )} {result.poolCandidate.user.armedForcesStatus === - ArmedForcesStatus.Veteran && } + ArmedForcesStatus.Veteran && + result.poolCandidate.veteranVerification !== + ClaimVerificationResult.Rejected && } diff --git a/apps/web/src/components/PoolCandidatesTable/PoolCandidatesTable.tsx b/apps/web/src/components/PoolCandidatesTable/PoolCandidatesTable.tsx index c1db1094765..701fb9871e0 100644 --- a/apps/web/src/components/PoolCandidatesTable/PoolCandidatesTable.tsx +++ b/apps/web/src/components/PoolCandidatesTable/PoolCandidatesTable.tsx @@ -49,7 +49,10 @@ import Table, { import { getFullNameLabel } from "~/utils/nameUtils"; import { getFullPoolTitleLabel } from "~/utils/poolUtils"; import processMessages from "~/messages/processMessages"; -import { getPriorityWeight } from "~/utils/poolCandidate"; +import { + getPriorityWeight, + priorityWeightAfterVerification, +} from "~/utils/poolCandidate"; import skillMatchDialogAccessor from "./SkillMatchDialog"; import tableMessages from "./tableMessages"; @@ -242,6 +245,8 @@ const CandidatesTableCandidatesPaginated_Query = graphql(/* GraphQL */ ` notes archivedAt suspendedAt + priorityVerification + veteranVerification } skillCount } @@ -583,10 +588,18 @@ const PoolCandidatesTable = ({ ), ]), columnHelper.accessor( - ({ poolCandidate: { user } }) => + ({ poolCandidate }) => intl.formatMessage( - user.priorityWeight - ? getPoolCandidatePriorities(getPriorityWeight(user.priorityWeight)) + poolCandidate.user.priorityWeight + ? getPoolCandidatePriorities( + getPriorityWeight( + priorityWeightAfterVerification( + poolCandidate.user.priorityWeight, + poolCandidate.priorityVerification, + poolCandidate.veteranVerification, + ), + ), + ) : commonMessages.notFound, ), { @@ -594,11 +607,19 @@ const PoolCandidatesTable = ({ header: intl.formatMessage(adminMessages.category), cell: ({ row: { - original: { - poolCandidate: { user }, - }, + original: { poolCandidate }, }, - }) => priorityCell(user.priorityWeight, intl), + }) => + priorityCell( + poolCandidate.user.priorityWeight + ? priorityWeightAfterVerification( + poolCandidate.user.priorityWeight, + poolCandidate.priorityVerification, + poolCandidate.veteranVerification, + ) + : null, + intl, + ), }, ), columnHelper.accessor( diff --git a/apps/web/src/utils/poolCandidate.ts b/apps/web/src/utils/poolCandidate.ts index eca2fb58745..99a3f0cf58f 100644 --- a/apps/web/src/utils/poolCandidate.ts +++ b/apps/web/src/utils/poolCandidate.ts @@ -33,6 +33,7 @@ import { PriorityWeight, OverallAssessmentStatus, AssessmentResultStatus, + ClaimVerificationResult, } from "@gc-digital-talent/graphql"; import { getOrThrowError } from "@gc-digital-talent/helpers"; @@ -587,3 +588,27 @@ export const getPriorityWeight = (priorityWeight: number): PriorityWeight => { return PriorityWeight.Other; }; + +export const priorityWeightAfterVerification = ( + priorityWeight: number, + priorityVerification: ClaimVerificationResult | null | undefined, + veteranVerification: ClaimVerificationResult | null | undefined, +): number => { + // Priority + if ( + priorityWeight === 10 && + priorityVerification === ClaimVerificationResult.Rejected + ) { + return 30; + } + + // Veteran + if ( + priorityWeight === 20 && + veteranVerification === ClaimVerificationResult.Rejected + ) { + return 30; + } + + return priorityWeight; +};