Skip to content

Commit 8790cde

Browse files
Update dependency typedoc to ^0.26.0 (#4270)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 25a7c9e commit 8790cde

File tree

9 files changed

+68
-61
lines changed

9 files changed

+68
-61
lines changed

.github/workflows/static_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: "yarn install"
8282

8383
- name: Generate Docs
84-
run: "yarn run gendoc --treatWarningsAsErrors"
84+
run: "yarn run gendoc --treatWarningsAsErrors --suppressCommentWarningsInDeclarationFiles"
8585

8686
- name: Upload Artifact
8787
uses: actions/upload-artifact@v4

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
"prettier": "3.3.2",
121121
"rimraf": "^5.0.0",
122122
"ts-node": "^10.9.2",
123-
"typedoc": "^0.25.10",
123+
"typedoc": "^0.26.0",
124124
"typedoc-plugin-coverage": "^3.0.0",
125125
"typedoc-plugin-mdn-links": "^3.0.3",
126-
"typedoc-plugin-missing-exports": "^2.0.0",
126+
"typedoc-plugin-missing-exports": "^3.0.0",
127127
"typescript": "^5.3.3"
128128
},
129129
"@casualbot/jest-sonar-reporter": {

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ export type ClientEventHandlerMap = {
10751075
* });
10761076
* ```
10771077
*/
1078-
[ClientEvent.Sync]: (state: SyncState, lastState: SyncState | null, data?: ISyncStateData) => void;
1078+
[ClientEvent.Sync]: (state: SyncState, prevState: SyncState | null, data?: ISyncStateData) => void;
10791079
/**
10801080
* Fires whenever the SDK receives a new event.
10811081
* <p>

src/crypto/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ export type CryptoEventHandlerMap = {
276276
* @param deviceId - the id of the verified device
277277
* @param deviceInfo - updated device information
278278
*/
279-
[CryptoEvent.DeviceVerificationChanged]: (userId: string, deviceId: string, device: DeviceInfo) => void;
279+
[CryptoEvent.DeviceVerificationChanged]: (userId: string, deviceId: string, deviceInfo: DeviceInfo) => void;
280280
/**
281281
* Fires when the trust status of a user changes
282282
* If userId is the userId of the logged-in user, this indicated a change
@@ -292,7 +292,7 @@ export type CryptoEventHandlerMap = {
292292
/**
293293
* Fires when we receive a room key request
294294
*
295-
* @param req - request details
295+
* @param request - request details
296296
*/
297297
[CryptoEvent.RoomKeyRequest]: (request: IncomingRoomKeyRequest) => void;
298298
/**

src/models/event-timeline-set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export type EventTimelineSetHandlerMap = {
118118
*/
119119
[RoomEvent.TimelineReset]: (
120120
room: Room | undefined,
121-
eventTimelineSet: EventTimelineSet,
121+
timelineSet: EventTimelineSet,
122122
resetAllTimelines: boolean,
123123
) => void;
124124
};

src/models/room-state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export type RoomStateEventHandlerMap = {
9595
* });
9696
* ```
9797
*/
98-
[RoomStateEvent.Events]: (event: MatrixEvent, state: RoomState, lastStateEvent: MatrixEvent | null) => void;
98+
[RoomStateEvent.Events]: (event: MatrixEvent, state: RoomState, prevEvent: MatrixEvent | null) => void;
9999
/**
100100
* Fires whenever a member in the members dictionary is updated in any way.
101101
* @param event - The matrix event which caused this event to fire.

src/models/room.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export type RoomEventHandlerMap = {
209209
* });
210210
* ```
211211
*/
212-
[RoomEvent.AccountData]: (event: MatrixEvent, room: Room, lastEvent?: MatrixEvent) => void;
212+
[RoomEvent.AccountData]: (event: MatrixEvent, room: Room, prevEvent?: MatrixEvent) => void;
213213
/**
214214
* Fires whenever a receipt is received for a room
215215
* @param event - The receipt event

src/webrtc/groupCall.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export type GroupCallEventHandlerMap = {
9191
* `MatrixCall.ERR_NO_USER_MEDIA`. `ERR_LOCAL_OFFER_FAILED` is emitted when the local client
9292
* fails to create an offer. `ERR_NO_USER_MEDIA` is emitted when the user has denied access
9393
* to their audio/video hardware.
94-
* @param err - The error raised by MatrixCall.
94+
* @param error - The error raised by MatrixCall.
9595
* @example
9696
* ```
9797
* matrixCall.on("error", function(err){

yarn.lock

Lines changed: 58 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1912,6 +1912,11 @@
19121912
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
19131913
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
19141914

1915+
"@shikijs/core@1.9.1":
1916+
version "1.9.1"
1917+
resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.9.1.tgz#f8c61fb19dbec510fa27f892c441d99b53093e49"
1918+
integrity sha512-EmUful2MQtY8KgCF1OkBtOuMcvaZEvmdubhW0UHCGXi21O9dRLeADVCj+k6ZS+de7Mz9d2qixOXJ+GLhcK3pXg==
1919+
19151920
"@sinclair/typebox@^0.24.1":
19161921
version "0.24.51"
19171922
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f"
@@ -2217,12 +2222,7 @@
22172222
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.12.0.tgz#bf208f971a8da1e7524a5d9ae2b5f15192a37981"
22182223
integrity sha512-o+0Te6eWp2ppKY3mLCU+YA9pVJxhUJE15FV7kxuD9jgwIAa+w/ycGJBMrYDTpVGUM/tgpa9SeMOugSabWFq7bg==
22192224

2220-
"@typescript-eslint/types@7.13.1":
2221-
version "7.13.1"
2222-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.13.1.tgz#787db283bd0b58751094c90d5b58bbf5e9fc9bd8"
2223-
integrity sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==
2224-
2225-
"@typescript-eslint/types@^7.2.0":
2225+
"@typescript-eslint/types@7.13.1", "@typescript-eslint/types@^7.2.0":
22262226
version "7.13.1"
22272227
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.13.1.tgz#787db283bd0b58751094c90d5b58bbf5e9fc9bd8"
22282228
integrity sha512-7K7HMcSQIAND6RBL4kDl24sG/xKM13cA85dc7JnmQXw2cBDngg7c19B++JzvJHRG3zG36n9j1i451GBzRuHchw==
@@ -2401,11 +2401,6 @@ ansi-regex@^6.0.1:
24012401
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
24022402
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
24032403

2404-
ansi-sequence-parser@^1.1.0:
2405-
version "1.1.1"
2406-
resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
2407-
integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
2408-
24092404
ansi-styles@^3.2.1:
24102405
version "3.2.1"
24112406
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -4954,11 +4949,6 @@ json5@^2.2.2, json5@^2.2.3:
49544949
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
49554950
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
49564951

4957-
jsonc-parser@^3.2.0:
4958-
version "3.2.1"
4959-
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a"
4960-
integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==
4961-
49624952
jwt-decode@^4.0.0:
49634953
version "4.0.0"
49644954
resolved "https://registry.yarnpkg.com/jwt-decode/-/jwt-decode-4.0.0.tgz#2270352425fd413785b2faf11f6e755c5151bd4b"
@@ -5024,6 +5014,13 @@ lines-and-columns@^1.1.6:
50245014
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
50255015
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
50265016

5017+
linkify-it@^5.0.0:
5018+
version "5.0.0"
5019+
resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-5.0.0.tgz#9ef238bfa6dc70bd8e7f9572b52d369af569b421"
5020+
integrity sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==
5021+
dependencies:
5022+
uc.micro "^2.0.0"
5023+
50275024
lint-staged@^15.0.2:
50285025
version "15.2.7"
50295026
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.7.tgz#97867e29ed632820c0fb90be06cd9ed384025649"
@@ -5170,10 +5167,17 @@ map-obj@^2.0.0:
51705167
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
51715168
integrity sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ==
51725169

5173-
marked@^4.3.0:
5174-
version "4.3.0"
5175-
resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
5176-
integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==
5170+
markdown-it@^14.1.0:
5171+
version "14.1.0"
5172+
resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45"
5173+
integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==
5174+
dependencies:
5175+
argparse "^2.0.1"
5176+
entities "^4.4.0"
5177+
linkify-it "^5.0.0"
5178+
mdurl "^2.0.0"
5179+
punycode.js "^2.3.1"
5180+
uc.micro "^2.1.0"
51775181

51785182
matrix-events-sdk@0.0.1:
51795183
version "0.0.1"
@@ -5195,6 +5199,11 @@ matrix-widget-api@^1.6.0:
51955199
"@types/events" "^3.0.0"
51965200
events "^3.2.0"
51975201

5202+
mdurl@^2.0.0:
5203+
version "2.0.0"
5204+
resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-2.0.0.tgz#80676ec0433025dd3e17ee983d0fe8de5a2237e0"
5205+
integrity sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==
5206+
51985207
merge-stream@^2.0.0:
51995208
version "2.0.0"
52005209
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
@@ -5247,7 +5256,7 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
52475256
dependencies:
52485257
brace-expansion "^1.1.7"
52495258

5250-
minimatch@^9.0.1, minimatch@^9.0.3, minimatch@^9.0.4:
5259+
minimatch@^9.0.1, minimatch@^9.0.4:
52515260
version "9.0.4"
52525261
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51"
52535262
integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==
@@ -5644,6 +5653,11 @@ psl@^1.1.33:
56445653
resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
56455654
integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
56465655

5656+
punycode.js@^2.3.1:
5657+
version "2.3.1"
5658+
resolved "https://registry.yarnpkg.com/punycode.js/-/punycode.js-2.3.1.tgz#6b53e56ad75588234e79f4affa90972c7dd8cdb7"
5659+
integrity sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==
5660+
56475661
punycode@^2.1.0, punycode@^2.1.1:
56485662
version "2.3.0"
56495663
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
@@ -5991,15 +6005,12 @@ shell-quote-word@^1.0.1:
59916005
resolved "https://registry.yarnpkg.com/shell-quote-word/-/shell-quote-word-1.0.1.tgz#e2bdfd22d599fd68886491677e38f560f9d469c9"
59926006
integrity sha512-lT297f1WLAdq0A4O+AknIFRP6kkiI3s8C913eJ0XqBxJbZPGWUNkRQk2u8zk4bEAjUJ5i+fSLwB6z1HzeT+DEg==
59936007

5994-
shiki@^0.14.7:
5995-
version "0.14.7"
5996-
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.7.tgz#c3c9e1853e9737845f1d2ef81b31bcfb07056d4e"
5997-
integrity sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==
6008+
shiki@^1.9.0:
6009+
version "1.9.1"
6010+
resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.9.1.tgz#9d9f553b06e70a9e71b5457622d6f4a5aaf1db27"
6011+
integrity sha512-8PDkgb5ja3nfujTjvC4VytL6wGOGCtFAClUb2r3QROevYXxcq+/shVJK5s6gy0HZnjaJgFxd6BpPqpRfqne5rA==
59986012
dependencies:
5999-
ansi-sequence-parser "^1.1.0"
6000-
jsonc-parser "^3.2.0"
6001-
vscode-oniguruma "^1.7.0"
6002-
vscode-textmate "^8.0.0"
6013+
"@shikijs/core" "1.9.1"
60036014

60046015
side-channel@^1.0.4:
60056016
version "1.0.4"
@@ -6503,26 +6514,32 @@ typedoc-plugin-mdn-links@^3.0.3:
65036514
resolved "https://registry.yarnpkg.com/typedoc-plugin-mdn-links/-/typedoc-plugin-mdn-links-3.1.30.tgz#bea289518cb393b07ee65fabc8ced393810dce9a"
65046515
integrity sha512-aB3UqyRGdxYziOHKzE7AQPh+9xpqqHHrp23F+T6yshHeuSiauCL+zzgTRhi4Ad1x30/7rTkCtyQ5dfO/+1FDKA==
65056516

6506-
typedoc-plugin-missing-exports@^2.0.0:
6507-
version "2.3.0"
6508-
resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-2.3.0.tgz#ae0858bf383a08345cc09a99d428234cf6b85ecf"
6509-
integrity sha512-iI9ITNNLlbsLCBBeYDyu0Qqp3GN/9AGyWNKg8bctRXuZEPT7G1L+0+MNWG9MsHcf/BFmNbXL0nQ8mC/tXRicog==
6517+
typedoc-plugin-missing-exports@^3.0.0:
6518+
version "3.0.0"
6519+
resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-3.0.0.tgz#47ab7cf9b91967f50550b7f07549ed1b743f3726"
6520+
integrity sha512-R7D8fYrK34mBFZSlF1EqJxfqiUSlQSmyrCiQgTQD52nNm6+kUtqwiaqaNkuJ2rA2wBgWFecUA8JzHT7x2r7ePg==
65106521

6511-
typedoc@^0.25.10:
6512-
version "0.25.13"
6513-
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.13.tgz#9a98819e3b2d155a6d78589b46fa4c03768f0922"
6514-
integrity sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==
6522+
typedoc@^0.26.0:
6523+
version "0.26.2"
6524+
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.26.2.tgz#f9538e6e9a081fda1f2416d0ee0d7dfab480cbec"
6525+
integrity sha512-q/t+M+PZqhN9gPWLBZ3CCvP+KT8O1tyYkSzEYbcQ6mo89avdIrMlBEl3vfo5BgSzwC6Lbmq0W64E8RkY+eVsLA==
65156526
dependencies:
65166527
lunr "^2.3.9"
6517-
marked "^4.3.0"
6518-
minimatch "^9.0.3"
6519-
shiki "^0.14.7"
6528+
markdown-it "^14.1.0"
6529+
minimatch "^9.0.4"
6530+
shiki "^1.9.0"
6531+
yaml "^2.4.5"
65206532

65216533
typescript@^5.3.3:
65226534
version "5.4.5"
65236535
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
65246536
integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
65256537

6538+
uc.micro@^2.0.0, uc.micro@^2.1.0:
6539+
version "2.1.0"
6540+
resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-2.1.0.tgz#f8d3f7d0ec4c3dea35a7e3c8efa4cb8b45c9e7ee"
6541+
integrity sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==
6542+
65266543
unbox-primitive@^1.0.2:
65276544
version "1.0.2"
65286545
resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
@@ -6638,16 +6655,6 @@ vlq@^0.2.1:
66386655
resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
66396656
integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==
66406657

6641-
vscode-oniguruma@^1.7.0:
6642-
version "1.7.0"
6643-
resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
6644-
integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
6645-
6646-
vscode-textmate@^8.0.0:
6647-
version "8.0.0"
6648-
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
6649-
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
6650-
66516658
w3c-xmlserializer@^4.0.0:
66526659
version "4.0.0"
66536660
resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073"
@@ -6845,7 +6852,7 @@ yallist@^4.0.0:
68456852
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
68466853
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
68476854

6848-
yaml@~2.4.2:
6855+
yaml@^2.4.5, yaml@~2.4.2:
68496856
version "2.4.5"
68506857
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e"
68516858
integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==

0 commit comments

Comments
 (0)