mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Upgrade Node.js from 22.18 to 24.13 (#30509)
GitOrigin-RevId: c2405a0583e68c61351f52b32ba28faec994fbc0
This commit is contained in:
committed by
Copybot
parent
a054938414
commit
e80ce42896
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ access-token-encryptor
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ fetch-utils
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -22,7 +22,7 @@ const HTTP_PORT = 30001
|
||||
const HTTPS_PORT = 30002
|
||||
|
||||
const attrs = [{ name: 'commonName', value: 'example.com' }]
|
||||
const pems = selfsigned.generate(attrs, { days: 365 })
|
||||
const pems = selfsigned.generate(attrs, { days: 365, keySize: 2048 })
|
||||
|
||||
const PRIVATE_KEY = pems.private
|
||||
const PUBLIC_CERT = pems.cert
|
||||
|
||||
@@ -119,11 +119,20 @@ class TestServer {
|
||||
}
|
||||
|
||||
stop() {
|
||||
const stopHttp = promisify(this.server.close).bind(this.server)
|
||||
const stopHttps = promisify(this.https_server.close).bind(this.https_server)
|
||||
this.server.closeAllConnections()
|
||||
this.https_server.closeAllConnections()
|
||||
return Promise.all([stopHttp(), stopHttps()])
|
||||
const promises = []
|
||||
if (this.server) {
|
||||
const stopHttp = promisify(this.server.close).bind(this.server)
|
||||
this.server.closeAllConnections()
|
||||
promises.push(stopHttp())
|
||||
}
|
||||
if (this.https_server) {
|
||||
const stopHttps = promisify(this.https_server.close).bind(
|
||||
this.https_server
|
||||
)
|
||||
this.https_server.closeAllConnections()
|
||||
promises.push(stopHttps())
|
||||
}
|
||||
return Promise.all(promises)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ logger
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ metrics
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ mongo-utils
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ o-error
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ object-persistor
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ overleaf-editor-core
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🥑 Core
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ promise-utils
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ ranges-tracker
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🥑 Core
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ redis-wrapper
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ settings
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,6 +4,6 @@ stream-utils
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--pipeline-owner=🚉 Platform
|
||||
--public-repo=False
|
||||
|
||||
@@ -1 +1 @@
|
||||
22.18.0
|
||||
24.13.0
|
||||
|
||||
@@ -4,7 +4,7 @@ validation-tools
|
||||
--env-pass-through=
|
||||
--esmock-loader=False
|
||||
--is-library=True
|
||||
--node-version=22.18.0
|
||||
--node-version=24.13.0
|
||||
--public-repo=False
|
||||
--test-acceptance-vitest=True
|
||||
--test-unit-vitest=True
|
||||
|
||||
Reference in New Issue
Block a user