Skip to content

Commit 4a6ba91

Browse files
chore(deps): bump @modelcontextprotocol/sdk from 1.15.1 to 1.24.0 (#9250)
* chore(deps): bump @modelcontextprotocol/sdk from 1.15.1 to 1.24.0 Bumps [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) from 1.15.1 to 1.24.0. - [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases) - [Commits](modelcontextprotocol/typescript-sdk@1.15.1...1.24.0) --- updated-dependencies: - dependency-name: "@modelcontextprotocol/sdk" dependency-version: 1.24.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * fix: add commands for native nodejs modules * fix: add typos spelling * fix: add typos spelling --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: rolandm99 <[email protected]>
1 parent 155067d commit 4a6ba91

File tree

5 files changed

+91
-70
lines changed

5 files changed

+91
-70
lines changed

.cspell.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"browserslist",
5050
"Buildable",
5151
"buildjet",
52+
"buildtools",
5253
"buildx",
5354
"Buildx",
5455
"Bykey",
@@ -62,6 +63,7 @@
6263
"Chetan",
6364
"childout",
6465
"Chinthagunta",
66+
"choco",
6567
"circlon",
6668
"Civo",
6769
"CIVO",
@@ -181,6 +183,7 @@
181183
"Harbir",
182184
"healthcheck",
183185
"honeycombio",
186+
"hostedtoolcache",
184187
"Hoster",
185188
"hubstaff",
186189
"HUBSTAFF",
@@ -194,6 +197,7 @@
194197
"icrud",
195198
"ienvironment",
196199
"IKPI",
200+
"ilammy",
197201
"ILIKE",
198202
"ilinked",
199203
"immer",
@@ -331,6 +335,11 @@
331335
"mjml",
332336
"modelcontextprotocol",
333337
"msedge",
338+
"msbuild",
339+
"MSVC",
340+
"msvc",
341+
"msvs",
342+
"MSVS",
334343
"MSYS",
335344
"Mustero",
336345
"napi",
@@ -352,6 +361,7 @@
352361
"nodenext",
353362
"nodownload",
354363
"NOLOGO",
364+
"norestart",
355365
"notif",
356366
"npmignore",
357367
"NQCHAR",
@@ -440,6 +450,7 @@
440450
"resave",
441451
"rfdc",
442452
"roboto",
453+
"runneradmin",
443454
"Ruslan",
444455
"sarif",
445456
"SARIF",
@@ -522,6 +533,7 @@
522533
"toastr",
523534
"togglefullscreen",
524535
"TOOLSDIRECTORY",
536+
"Toolset",
525537
"traefik",
526538
"trasp",
527539
"Trendshift",
@@ -568,8 +580,10 @@
568580
"VMFE",
569581
"VULTR",
570582
"Wakatime",
583+
"WARPBUILD",
571584
"wasabisys",
572585
"wbars",
586+
"Wbem",
573587
"wdth",
574588
"webapp",
575589
"websockets",

.deploy/api/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ COPY --chown=node:node packages/plugins/registry/package.json ./packages/plugins
173173
COPY --chown=node:node decorate-angular-cli.js lerna.json package.json yarn.lock ./
174174
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
175175

176-
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts && node ./.scripts/postinstall.js && npm rebuild bcrypt better-sqlite3 --build-from-source && yarn cache clean
176+
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts && yarn postinstall.manual && yarn cache clean
177177

178178
FROM node:20.18.1-alpine3.19 AS prodDependencies
179179

@@ -236,7 +236,7 @@ COPY --chown=node:node packages/plugins/registry/package.json ./packages/plugins
236236
COPY --chown=node:node decorate-angular-cli.js lerna.json package.json yarn.lock ./
237237
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
238238

239-
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts --production && node ./.scripts/postinstall.js && npm rebuild bcrypt better-sqlite3 --build-from-source && yarn cache clean
239+
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts --production && yarn postinstall.manual && yarn cache clean
240240

241241
# We remove Angular modules as it's not used in APIs
242242
RUN rm -r node_modules/@angular

.deploy/mcp-auth/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
4444

4545
RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
4646
&& npm install --quiet [email protected] -g \
47-
&& npm install yarn -g --force
47+
&& npm install yarn -g --force \
48+
&& npm install --quiet [email protected] -g
4849
RUN mkdir /srv/gauzy-mcp-auth && chown -R node:node /srv/gauzy-mcp-auth
4950

5051
USER node:node
@@ -64,8 +65,7 @@ COPY --chown=node:node lerna.json package.json yarn.lock ./
6465
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
6566

6667
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts \
67-
&& node ./.scripts/postinstall.js \
68-
&& npm rebuild bcrypt better-sqlite3 --build-from-source \
68+
&& yarn postinstall.manual \
6969
&& yarn cache clean
7070

7171
COPY --chown=node:node apps/mcp-auth ./apps/mcp-auth
@@ -104,7 +104,8 @@ RUN yarn build:mcp-auth:prod
104104
FROM node:20.18.1-alpine3.19 AS proddependencies
105105

106106
RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
107-
&& npm install --quiet [email protected] -g
107+
&& npm install --quiet [email protected] -g \
108+
&& npm install --quiet [email protected] -g
108109

109110
USER node:node
110111

@@ -115,8 +116,7 @@ COPY --chown=node:node lerna.json package.json yarn.lock ./
115116
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
116117

117118
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts --production \
118-
&& node ./.scripts/postinstall.js \
119-
&& npm rebuild bcrypt better-sqlite3 --build-from-source \
119+
&& yarn postinstall.manual \
120120
&& yarn cache clean
121121

122122
# PROD

.deploy/mcp/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ LABEL org.opencontainers.image.source="https://github.com/ever-co/ever-gauzy"
9090

9191
RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
9292
&& npm install --quiet [email protected] -g \
93-
&& npm install yarn -g --force
93+
&& npm install yarn -g --force \
94+
&& npm install --quiet [email protected] -g
9495

9596
RUN mkdir /srv/gauzy-mcp && chown -R node:node /srv/gauzy-mcp
9697

@@ -110,8 +111,7 @@ COPY --chown=node:node lerna.json package.json yarn.lock ./
110111
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
111112

112113
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts \
113-
&& node ./.scripts/postinstall.js \
114-
&& npm rebuild bcrypt --build-from-source \
114+
&& yarn postinstall.manual \
115115
&& yarn cache clean
116116

117117
COPY --chown=node:node apps/mcp ./apps/mcp
@@ -149,7 +149,8 @@ RUN yarn build:mcp:prod
149149
FROM node:20.18.1-alpine3.19 AS proddependencies
150150

151151
RUN apk add --no-cache python3 python3-dev py3-pip py3-setuptools build-base gcc g++ make autoconf automake git \
152-
&& npm install --quiet [email protected] -g
152+
&& npm install --quiet [email protected] -g \
153+
&& npm install --quiet [email protected] -g
153154

154155
USER node:node
155156

@@ -160,8 +161,7 @@ COPY --chown=node:node lerna.json package.json yarn.lock ./
160161
COPY --chown=node:node .scripts/postinstall.js ./.scripts/
161162

162163
RUN yarn install --network-timeout 1000000 --frozen-lockfile --ignore-scripts --production \
163-
&& node ./.scripts/postinstall.js \
164-
&& npm rebuild bcrypt --build-from-source \
164+
&& yarn postinstall.manual \
165165
&& yarn cache clean
166166

167167
# PROD

yarn.lock

Lines changed: 63 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -6503,22 +6503,24 @@
65036503
postgres-interval "4.0.2"
65046504

65056505
"@modelcontextprotocol/sdk@^1.13.1":
6506-
version "1.15.1"
6507-
resolved "https://registry.yarnpkg.com/@modelcontextprotocol/sdk/-/sdk-1.15.1.tgz#30a235f91e144b62ef1810bc63679e423bac37ec"
6508-
integrity sha512-W/XlN9c528yYn+9MQkVjxiTPgPxoxt+oczfjHBDsJx0+59+O7B75Zhsp0B16Xbwbz8ANISDajh6+V7nIcPMc5w==
6506+
version "1.24.0"
6507+
resolved "https://registry.yarnpkg.com/@modelcontextprotocol/sdk/-/sdk-1.24.0.tgz#3bd1d539490d1d4228537ab815b8d854bc0e3143"
6508+
integrity sha512-D8h5KXY2vHFW8zTuxn2vuZGN0HGrQ5No6LkHwlEA9trVgNdPL3TF1dSqKA7Dny6BbBYKSW/rOBDXdC8KJAjUCg==
65096509
dependencies:
6510-
ajv "^6.12.6"
6510+
ajv "^8.17.1"
6511+
ajv-formats "^3.0.1"
65116512
content-type "^1.0.5"
65126513
cors "^2.8.5"
65136514
cross-spawn "^7.0.5"
65146515
eventsource "^3.0.2"
65156516
eventsource-parser "^3.0.0"
65166517
express "^5.0.1"
65176518
express-rate-limit "^7.5.0"
6519+
jose "^6.1.1"
65186520
pkce-challenge "^5.0.0"
65196521
raw-body "^3.0.0"
6520-
zod "^3.23.8"
6521-
zod-to-json-schema "^3.24.1"
6522+
zod "^3.25 || ^4.0"
6523+
zod-to-json-schema "^3.25.0"
65226524

65236525
"@modern-js/[email protected]":
65246526
version "2.65.1"
@@ -13672,27 +13674,27 @@
1367213674
dependencies:
1367313675
"@types/node" "*"
1367413676

13675-
"@typescript-eslint/project-service@8.48.1":
13676-
version "8.48.1"
13677-
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.48.1.tgz#cfe1741613b9112d85ae766de9e09b27a7d3f2f1"
13678-
integrity sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==
13677+
"@typescript-eslint/project-service@8.49.0":
13678+
version "8.49.0"
13679+
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.49.0.tgz#ce220525c88cb2d23792b391c07e14cb9697651a"
13680+
integrity sha512-/wJN0/DKkmRUMXjZUXYZpD1NEQzQAAn9QWfGwo+Ai8gnzqH7tvqS7oNVdTjKqOcPyVIdZdyCMoqN66Ia789e7g==
1367913681
dependencies:
13680-
"@typescript-eslint/tsconfig-utils" "^8.48.1"
13681-
"@typescript-eslint/types" "^8.48.1"
13682+
"@typescript-eslint/tsconfig-utils" "^8.49.0"
13683+
"@typescript-eslint/types" "^8.49.0"
1368213684
debug "^4.3.4"
1368313685

13684-
"@typescript-eslint/scope-manager@8.48.1", "@typescript-eslint/scope-manager@^8.31.0":
13685-
version "8.48.1"
13686-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz#8bc70643e7cca57864b1ff95dd350fc27756bec0"
13687-
integrity sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==
13686+
"@typescript-eslint/scope-manager@8.49.0", "@typescript-eslint/scope-manager@^8.31.0":
13687+
version "8.49.0"
13688+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.49.0.tgz#a3496765b57fb48035d671174552e462e5bffa63"
13689+
integrity sha512-npgS3zi+/30KSOkXNs0LQXtsg9ekZ8OISAOLGWA/ZOEn0ZH74Ginfl7foziV8DT+D98WfQ5Kopwqb/PZOaIJGg==
1368813690
dependencies:
13689-
"@typescript-eslint/types" "8.48.1"
13690-
"@typescript-eslint/visitor-keys" "8.48.1"
13691+
"@typescript-eslint/types" "8.49.0"
13692+
"@typescript-eslint/visitor-keys" "8.49.0"
1369113693

13692-
"@typescript-eslint/tsconfig-utils@8.48.1", "@typescript-eslint/tsconfig-utils@^8.48.1":
13693-
version "8.48.1"
13694-
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz#68139ce2d258f984e2b33a95389158f1212af646"
13695-
integrity sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==
13694+
"@typescript-eslint/tsconfig-utils@8.49.0", "@typescript-eslint/tsconfig-utils@^8.49.0":
13695+
version "8.49.0"
13696+
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.49.0.tgz#857777c8e35dd1e564505833d8043f544442fbf4"
13697+
integrity sha512-8prixNi1/6nawsRYxet4YOhnbW+W9FK/bQPxsGB1D3ZrDzbJ5FXw5XmzxZv82X3B+ZccuSxo/X8q9nQ+mFecWA==
1369613698

1369713699
"@typescript-eslint/type-utils@^8.0.0":
1369813700
version "8.32.0"
@@ -13709,10 +13711,10 @@
1370913711
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.32.0.tgz#a4a66b8876b8391970cf069b49572e43f1fc957a"
1371013712
integrity sha512-O5Id6tGadAZEMThM6L9HmVf5hQUXNSxLVKeGJYWNhhVseps/0LddMkp7//VDkzwJ69lPL0UmZdcZwggj9akJaA==
1371113713

13712-
"@typescript-eslint/types@8.48.1", "@typescript-eslint/types@^8.48.1":
13713-
version "8.48.1"
13714-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.48.1.tgz#a9ff808f5f798f28767d5c0b015a88fa7ce46bd7"
13715-
integrity sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==
13714+
"@typescript-eslint/types@8.49.0", "@typescript-eslint/types@^8.49.0":
13715+
version "8.49.0"
13716+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.49.0.tgz#c1bd3ebf956d9e5216396349ca23c58d74f06aee"
13717+
integrity sha512-e9k/fneezorUo6WShlQpMxXh8/8wfyc+biu6tnAqA81oWrEic0k21RHzP9uqqpyBBeBKu4T+Bsjy9/b8u7obXQ==
1371613718

1371713719
"@typescript-eslint/[email protected]":
1371813720
version "8.32.0"
@@ -13728,37 +13730,37 @@
1372813730
semver "^7.6.0"
1372913731
ts-api-utils "^2.1.0"
1373013732

13731-
"@typescript-eslint/typescript-estree@8.48.1":
13732-
version "8.48.1"
13733-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz#0d0e31fc47c5796c6463ab50cde19e1718d465b1"
13734-
integrity sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==
13733+
"@typescript-eslint/typescript-estree@8.49.0":
13734+
version "8.49.0"
13735+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.49.0.tgz#99c5a53275197ccb4e849786dad68344e9924135"
13736+
integrity sha512-jrLdRuAbPfPIdYNppHJ/D0wN+wwNfJ32YTAm10eJVsFmrVpXQnDWBn8niCSMlWjvml8jsce5E/O+86IQtTbJWA==
1373513737
dependencies:
13736-
"@typescript-eslint/project-service" "8.48.1"
13737-
"@typescript-eslint/tsconfig-utils" "8.48.1"
13738-
"@typescript-eslint/types" "8.48.1"
13739-
"@typescript-eslint/visitor-keys" "8.48.1"
13738+
"@typescript-eslint/project-service" "8.49.0"
13739+
"@typescript-eslint/tsconfig-utils" "8.49.0"
13740+
"@typescript-eslint/types" "8.49.0"
13741+
"@typescript-eslint/visitor-keys" "8.49.0"
1374013742
debug "^4.3.4"
1374113743
minimatch "^9.0.4"
1374213744
semver "^7.6.0"
1374313745
tinyglobby "^0.2.15"
1374413746
ts-api-utils "^2.1.0"
1374513747

1374613748
"@typescript-eslint/[email protected]", "@typescript-eslint/utils@^5.58.0", "@typescript-eslint/utils@^8.0.0", "@typescript-eslint/utils@^8.31.0":
13747-
version "8.48.1"
13748-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.48.1.tgz#6cf7b99e0943b33a983ef687b9a86b65578b5c32"
13749-
integrity sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==
13749+
version "8.49.0"
13750+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.49.0.tgz#43b3b91d30afd6f6114532cf0b228f1790f43aff"
13751+
integrity sha512-N3W7rJw7Rw+z1tRsHZbK395TWSYvufBXumYtEGzypgMUthlg0/hmCImeA8hgO2d2G4pd7ftpxxul2J8OdtdaFA==
1375013752
dependencies:
1375113753
"@eslint-community/eslint-utils" "^4.7.0"
13752-
"@typescript-eslint/scope-manager" "8.48.1"
13753-
"@typescript-eslint/types" "8.48.1"
13754-
"@typescript-eslint/typescript-estree" "8.48.1"
13754+
"@typescript-eslint/scope-manager" "8.49.0"
13755+
"@typescript-eslint/types" "8.49.0"
13756+
"@typescript-eslint/typescript-estree" "8.49.0"
1375513757

13756-
"@typescript-eslint/[email protected]", "@typescript-eslint/visitor-keys@8.48.1", "@typescript-eslint/visitor-keys@^8.31.0":
13757-
version "8.48.1"
13758-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz#247d4fe6dcc044f45b7f1c15110bf95e5d73b334"
13759-
integrity sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==
13758+
"@typescript-eslint/[email protected]", "@typescript-eslint/visitor-keys@8.49.0", "@typescript-eslint/visitor-keys@^8.31.0":
13759+
version "8.49.0"
13760+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.49.0.tgz#8e450cc502c0d285cad9e84d400cf349a85ced6c"
13761+
integrity sha512-LlKaciDe3GmZFphXIc79THF/YYBugZ7FS1pO581E/edlVVNbZKDy93evqmrfQ9/Y4uN0vVhX4iuchq26mK/iiA==
1376013762
dependencies:
13761-
"@typescript-eslint/types" "8.48.1"
13763+
"@typescript-eslint/types" "8.49.0"
1376213764
eslint-visitor-keys "^4.2.1"
1376313765

1376413766
"@upwork/node-upwork-oauth2@^2.0.3":
@@ -14358,7 +14360,7 @@ aggregate-error@^5.0.0:
1435814360
clean-stack "^5.2.0"
1435914361
indent-string "^5.0.0"
1436014362

14361-
14363+
[email protected], ajv-formats@^3.0.1:
1436214364
version "3.0.1"
1436314365
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578"
1436414366
integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==
@@ -14394,7 +14396,7 @@ [email protected], ajv@^8.0.0, ajv@^8.0.1, ajv@^8.11.0, ajv@^8.12.0, ajv@^8.17.1, ajv@^
1439414396
json-schema-traverse "^1.0.0"
1439514397
require-from-string "^2.0.2"
1439614398

14397-
ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.0, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.5, ajv@^6.12.6:
14399+
ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.0, ajv@^6.12.2, ajv@^6.12.3, ajv@^6.12.5:
1439814400
version "6.12.6"
1439914401
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
1440014402
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -25802,10 +25804,10 @@ jose@^5.0.0:
2580225804
resolved "https://registry.yarnpkg.com/jose/-/jose-5.10.0.tgz#c37346a099d6467c401351a9a0c2161e0f52c4be"
2580325805
integrity sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==
2580425806

25805-
jose@^6.0.13:
25806-
version "6.0.13"
25807-
resolved "https://registry.yarnpkg.com/jose/-/jose-6.0.13.tgz#078563b07e9ab82f0ea6922eca589041e8278a22"
25808-
integrity sha512-Yms4GpbmdANamS51kKK6w4hRlKx8KTxbWyAAKT/MhUMtqbIqh5mb2HjhTNUbk7TFL8/MBB5zWSDohL7ed4k/UA==
25807+
jose@^6.0.13, jose@^6.1.1:
25808+
version "6.1.3"
25809+
resolved "https://registry.yarnpkg.com/jose/-/jose-6.1.3.tgz#8453d7be88af7bb7d64a0481d6a35a0145ba3ea5"
25810+
integrity sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==
2580925811

2581025812
joycon@^3.1.1:
2581125813
version "3.1.1"
@@ -40132,17 +40134,22 @@ zip-stream@^6.0.1:
4013240134
compress-commons "^6.0.2"
4013340135
readable-stream "^4.0.0"
4013440136

40135-
zod-to-json-schema@^3.24.1:
40136-
version "3.24.6"
40137-
resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz#5920f020c4d2647edfbb954fa036082b92c9e12d"
40138-
integrity sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==
40137+
zod-to-json-schema@^3.25.0:
40138+
version "3.25.0"
40139+
resolved "https://registry.yarnpkg.com/zod-to-json-schema/-/zod-to-json-schema-3.25.0.tgz#df504c957c4fb0feff467c74d03e6aab0b013e1c"
40140+
integrity sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==
4013940141

4014040142
4014140143
version "4.1.11"
4014240144
resolved "https://registry.yarnpkg.com/zod/-/zod-4.1.11.tgz#4aab62f76cfd45e6c6166519ba31b2ea019f75f5"
4014340145
integrity sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==
4014440146

40145-
zod@^3.23.8, zod@^3.25.67:
40147+
"zod@^3.25 || ^4.0":
40148+
version "4.1.13"
40149+
resolved "https://registry.yarnpkg.com/zod/-/zod-4.1.13.tgz#93699a8afe937ba96badbb0ce8be6033c0a4b6b1"
40150+
integrity sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==
40151+
40152+
zod@^3.25.67:
4014640153
version "3.25.76"
4014740154
resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
4014840155
integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==

0 commit comments

Comments
 (0)