-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update gateway dependencies (#8145)
* fix(deps): update gateway dependencies * chore(dependencies): updated changesets for modified dependencies * Lets go * chore(dependencies): updated changesets for modified dependencies * Only if 18 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <[email protected]>
- Loading branch information
1 parent
232c16d
commit 38322fc
Showing
10 changed files
with
183 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@graphql-mesh/merger-bare": patch | ||
--- | ||
dependencies updates: | ||
- Updated dependency [`@graphql-tools/schema@^10.0.13` ↗︎](https://www.npmjs.com/package/@graphql-tools/schema/v/10.0.13) (from `10.0.12`, in `dependencies`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@omnigraph/openapi": patch | ||
--- | ||
dependencies updates: | ||
- Updated dependency [`@graphql-tools/utils@^10.6.4` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/10.6.4) (from `10.6.3`, in `dependencies`) | ||
- Removed dependency [`@graphql-tools/delegate@^10.0.28` ↗︎](https://www.npmjs.com/package/@graphql-tools/delegate/v/10.0.28) (from `dependencies`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
diff --git a/node_modules/jest-leak-detector/build/index.js b/node_modules/jest-leak-detector/build/index.js | ||
index a8ccb1e..70699fd 100644 | ||
--- a/node_modules/jest-leak-detector/build/index.js | ||
+++ b/node_modules/jest-leak-detector/build/index.js | ||
@@ -74,26 +74,14 @@ class LeakDetector { | ||
value = null; | ||
} | ||
async isLeaking() { | ||
- this._runGarbageCollector(); | ||
+ (0, _v().setFlagsFromString)('--allow-natives-syntax'); | ||
|
||
// wait some ticks to allow GC to run properly, see https://github.com/nodejs/node/issues/34636#issuecomment-669366235 | ||
for (let i = 0; i < 10; i++) { | ||
+ eval('%CollectGarbage(true)'); | ||
await tick(); | ||
} | ||
return this._isReferenceBeingHeld; | ||
} | ||
- _runGarbageCollector() { | ||
- // @ts-expect-error: not a function on `globalThis` | ||
- const isGarbageCollectorHidden = globalThis.gc == null; | ||
- | ||
- // GC is usually hidden, so we have to expose it before running. | ||
- (0, _v().setFlagsFromString)('--expose-gc'); | ||
- (0, _vm().runInNewContext)('gc')(); | ||
- | ||
- // The GC was not initially exposed, so let's hide it again. | ||
- if (isGarbageCollectorHidden) { | ||
- (0, _v().setFlagsFromString)('--no-expose-gc'); | ||
- } | ||
- } | ||
} | ||
exports.default = LeakDetector; |
Oops, something went wrong.