mirror of https://github.com/zulip/zulip.git
dependencies: Upgrade JavaScript dependencies.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
6037230ea8
commit
799e59bb8f
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
|
||||
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.5.5",
|
||||
"@babel/preset-env": "^7.5.5",
|
||||
|
@ -109,7 +109,7 @@
|
|||
"@types/lodash": "^4.14.172",
|
||||
"@types/micromodal": "^0.3.3",
|
||||
"@types/minimalistic-assert": "^1.0.1",
|
||||
"@types/node": "^20.11.20",
|
||||
"@types/node": "^22.9.0",
|
||||
"@types/plotly.js": "^2.12.20",
|
||||
"@types/sortablejs": "^1.15.1",
|
||||
"@types/spectrum": "^1.8.4",
|
||||
|
@ -152,7 +152,7 @@
|
|||
"swagger-parser": "^10.0.0",
|
||||
"ts-node": "^10.0.0",
|
||||
"typescript": "^5.0.2",
|
||||
"vnu-jar": "^23.4.11",
|
||||
"vnu-jar": "^24.10.17",
|
||||
"webpack-dev-server": "^5.0.2",
|
||||
"xvfb": "^0.4.0",
|
||||
"yaml": "^2.0.0-8",
|
||||
|
@ -164,7 +164,6 @@
|
|||
"source-map@^0.6": "npm:source-map-js@^1.2.1"
|
||||
},
|
||||
"patchedDependencies": {
|
||||
"puppeteer-core": "patches/puppeteer-core.patch",
|
||||
"source-sans@3.46.0": "patches/source-sans@3.46.0.patch",
|
||||
"tippy.js@6.3.7": "patches/tippy.js@6.3.7.patch"
|
||||
}
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
diff --git a/lib/cjs/puppeteer/common/QueryHandler.js b/lib/cjs/puppeteer/common/QueryHandler.js
|
||||
index db0ff2ee001ac452b6de5804ec8810e566992299..13437d905fe4fca94ad69e4e2fd95ba6b2cce89a 100644
|
||||
--- a/lib/cjs/puppeteer/common/QueryHandler.js
|
||||
+++ b/lib/cjs/puppeteer/common/QueryHandler.js
|
||||
@@ -163,8 +163,7 @@ class QueryHandler {
|
||||
return await frame.isolatedRealm().adoptHandle(elementOrFrame);
|
||||
})(), false);
|
||||
const { visible = false, hidden = false, timeout, signal } = options;
|
||||
- const polling = options.polling ??
|
||||
- (visible || hidden ? "raf" /* PollingOptions.RAF */ : "mutation" /* PollingOptions.MUTATION */);
|
||||
+ const polling = visible || hidden ? "raf" /* PollingOptions.RAF */ : options.polling;
|
||||
try {
|
||||
const env_4 = { stack: [], error: void 0, hasError: false };
|
||||
try {
|
||||
diff --git a/lib/es5-iife/puppeteer-core-browser.js b/lib/es5-iife/puppeteer-core-browser.js
|
||||
index 3262ea9f5fed2d0e3d7a0ece16ad31c7e5bc4cf6..f73deab795a92d80c913adafb6c3eff7eda5e5e0 100644
|
||||
--- a/lib/es5-iife/puppeteer-core-browser.js
|
||||
+++ b/lib/es5-iife/puppeteer-core-browser.js
|
||||
@@ -4594,7 +4594,7 @@ var Puppeteer = function (exports, _PuppeteerURL, _LazyArg, _ARIAQueryHandler, _
|
||||
timeout,
|
||||
signal
|
||||
} = options;
|
||||
- const polling = options.polling ?? (visible || hidden ? "raf" /* PollingOptions.RAF */ : "mutation" /* PollingOptions.MUTATION */);
|
||||
+ const polling = visible || hidden ? "raf" /* PollingOptions.RAF */ : options.polling;
|
||||
try {
|
||||
const env_4 = {
|
||||
stack: [],
|
||||
diff --git a/lib/esm/puppeteer/common/QueryHandler.js b/lib/esm/puppeteer/common/QueryHandler.js
|
||||
index b07ddf54fb1830c8ddc42dc6d0452b288696caa4..cb0203c7c1f98f03ea6658b33c8da3710ab71b29 100644
|
||||
--- a/lib/esm/puppeteer/common/QueryHandler.js
|
||||
+++ b/lib/esm/puppeteer/common/QueryHandler.js
|
||||
@@ -160,8 +160,7 @@ export class QueryHandler {
|
||||
return await frame.isolatedRealm().adoptHandle(elementOrFrame);
|
||||
})(), false);
|
||||
const { visible = false, hidden = false, timeout, signal } = options;
|
||||
- const polling = options.polling ??
|
||||
- (visible || hidden ? "raf" /* PollingOptions.RAF */ : "mutation" /* PollingOptions.MUTATION */);
|
||||
+ const polling = visible || hidden ? "raf" /* PollingOptions.RAF */ : options.polling;
|
||||
try {
|
||||
const env_4 = { stack: [], error: void 0, hasError: false };
|
||||
try {
|
||||
diff --git a/src/common/QueryHandler.ts b/src/common/QueryHandler.ts
|
||||
index f377771f22a193164760e703c2f3af123588ab16..db10e1cf94ada080c710f33d4dda6f4a116400fa 100644
|
||||
--- a/src/common/QueryHandler.ts
|
||||
+++ b/src/common/QueryHandler.ts
|
||||
@@ -162,9 +162,7 @@ export class QueryHandler {
|
||||
})();
|
||||
|
||||
const {visible = false, hidden = false, timeout, signal} = options;
|
||||
- const polling =
|
||||
- options.polling ??
|
||||
- (visible || hidden ? PollingOptions.RAF : PollingOptions.MUTATION);
|
||||
+ const polling = visible || hidden ? PollingOptions.RAF : options.polling;
|
||||
|
||||
try {
|
||||
signal?.throwIfAborted();
|
4055
pnpm-lock.yaml
4055
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -49,4 +49,4 @@ API_FEATURE_LEVEL = 319 # Last bumped for message-link class
|
|||
# historical commits sharing the same major version, in which case a
|
||||
# minor version bump suffices.
|
||||
|
||||
PROVISION_VERSION = (297, 0) # bumped 2024-11-05 to upgrade Node.js
|
||||
PROVISION_VERSION = (298, 0) # bumped 2024-11-05 to upgrade JavaScript dependencies
|
||||
|
|
|
@ -14,7 +14,7 @@ module.exports = {
|
|||
[
|
||||
"@babel/preset-env",
|
||||
{
|
||||
corejs: "3.37",
|
||||
corejs: "3.39",
|
||||
include: ["transform-optional-chaining"],
|
||||
shippedProposals: true,
|
||||
useBuiltIns: "usage",
|
||||
|
|
Loading…
Reference in New Issue