mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 10:40:07 -04:00
Downgrade Node.js to version 16 (#149531)
Closes #149438 We'll upgrade again once a suitable solution to the issue has been found.
This commit is contained in:
parent
3090e5ff26
commit
6a0f7b9562
20 changed files with 51 additions and 88 deletions
|
@ -1,7 +1,7 @@
|
|||
# NOTE: This Dockerfile is ONLY used to run certain tasks in CI. It is not used to run Kibana or as a distributable.
|
||||
# If you're looking for the Kibana Docker image distributable, please see: src/dev/build/tasks/os_packages/docker_generator/templates/dockerfile.template.ts
|
||||
|
||||
ARG NODE_VERSION=18.13.0
|
||||
ARG NODE_VERSION=16.19.0
|
||||
|
||||
FROM node:${NODE_VERSION} AS base
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
18.13.0
|
||||
16.19.0
|
||||
|
|
2
.nvmrc
2
.nvmrc
|
@ -1 +1 @@
|
|||
18.13.0
|
||||
16.19.0
|
||||
|
|
|
@ -22,13 +22,13 @@ load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install
|
|||
# Setup the Node.js toolchain for the architectures we want to support
|
||||
node_repositories(
|
||||
node_repositories = {
|
||||
"18.13.0-darwin_amd64": ("node-v18.13.0-darwin-x64.tar.gz", "node-v18.13.0-darwin-x64", "8b57c4da4ff6cca19d5ef7953f8816e3406d1508a2e4ee7f997984b3b1d11b77"),
|
||||
"18.13.0-darwin_arm64": ("node-v18.13.0-darwin-arm64.tar.gz", "node-v18.13.0-darwin-arm64", "418d535e64dbcbd628715180c2de4ffcecb8a84b81f233c60e6ab9f0d795c249"),
|
||||
"18.13.0-linux_arm64": ("node-v18.13.0-linux-arm64.tar.xz", "node-v18.13.0-linux-arm64", "5b338667822341d1ea3b18d5b37d442a655829b9eafdc5f9008f00b8451ac148"),
|
||||
"18.13.0-linux_amd64": ("node-v18.13.0-linux-x64.tar.xz", "node-v18.13.0-linux-x64", "7f5d6922a91986ef059ba8a4396aa435440adacfe6fc6fab60a857c8f2cf5e7a"),
|
||||
"18.13.0-windows_amd64": ("node-v18.13.0-win-x64.zip", "node-v18.13.0-win-x64", "29c99ad1167ddbd72f2b15e91b560e36ac785b1873ba6791ab50d9d62f1957e2"),
|
||||
"16.19.0-darwin_amd64": ("node-v16.19.0-darwin-x64.tar.gz", "node-v16.19.0-darwin-x64", "491e5a5592eca1961dcbb1fae28567428ce56ce9cc7977b04041e163e0c1670c"),
|
||||
"16.19.0-darwin_arm64": ("node-v16.19.0-darwin-arm64.tar.gz", "node-v16.19.0-darwin-arm64", "5c9434fbb0f323fecf3d261b23a2e544919380c5043d0046d9745682fefd9cde"),
|
||||
"16.19.0-linux_arm64": ("node-v16.19.0-linux-arm64.tar.xz", "node-v16.19.0-linux-arm64", "9072c995052f832678fe8fab18e960bd9853f30e481787e53f8dd1ec8aaa3bb6"),
|
||||
"16.19.0-linux_amd64": ("node-v16.19.0-linux-x64.tar.xz", "node-v16.19.0-linux-x64", "c88b52497ab38a3ddf526e5b46a41270320409109c3f74171b241132984fd08f"),
|
||||
"16.19.0-windows_amd64": ("node-v16.19.0-win-x64.zip", "node-v16.19.0-win-x64", "534ca7a24e999c81cec847a498cc43d47e2bb158f6edf639e5297f2718350e96"),
|
||||
},
|
||||
node_version = "18.13.0",
|
||||
node_version = "16.19.0",
|
||||
node_urls = [
|
||||
"https://nodejs.org/dist/v{version}/{filename}",
|
||||
],
|
||||
|
|
|
@ -17,7 +17,7 @@ These files must be updated when upgrading Node.js:
|
|||
- {kib-repo}blob/{branch}/WORKSPACE.bazel[`WORKSPACE.bazel`] - The version is specified in the `node_version` property.
|
||||
Besides this property, the list of files under `node_repositories` must be updated along with their respective SHA256 hashes.
|
||||
These can be found on the https://nodejs.org[nodejs.org] website.
|
||||
Example for Node.js v18.13.0: https://nodejs.org/dist/v18.13.0/SHASUMS256.txt.asc
|
||||
Example for Node.js v16.19.0: https://nodejs.org/dist/v16.19.0/SHASUMS256.txt.asc
|
||||
|
||||
See PR {kib-repo}pull/128123[#128123] for an example of how the Node.js version has been upgraded previously.
|
||||
|
||||
|
|
10
package.json
10
package.json
|
@ -56,7 +56,7 @@
|
|||
"makelogs": "node scripts/makelogs",
|
||||
"spec_to_console": "node scripts/spec_to_console",
|
||||
"start": "node scripts/kibana --dev",
|
||||
"storybook": "node --openssl-legacy-provider scripts/storybook",
|
||||
"storybook": "node scripts/storybook",
|
||||
"test:ftr": "node scripts/functional_tests",
|
||||
"test:ftr:runner": "node scripts/functional_test_runner",
|
||||
"test:ftr:server": "node scripts/functional_tests_server",
|
||||
|
@ -68,11 +68,11 @@
|
|||
"url": "https://github.com/elastic/kibana.git"
|
||||
},
|
||||
"engines": {
|
||||
"node": "18.13.0",
|
||||
"node": "16.19.0",
|
||||
"yarn": "^1.22.19"
|
||||
},
|
||||
"resolutions": {
|
||||
"**/@types/node": "18.11.18",
|
||||
"**/@types/node": "16.11.68",
|
||||
"**/chokidar": "^3.5.3",
|
||||
"**/deepmerge": "^4.2.2",
|
||||
"**/fast-deep-equal": "^3.1.1",
|
||||
|
@ -622,7 +622,7 @@
|
|||
"query-string": "^6.13.2",
|
||||
"rbush": "^3.0.1",
|
||||
"re-resizable": "^6.1.1",
|
||||
"re2": "1.17.7",
|
||||
"re2": "1.17.4",
|
||||
"react": "^17.0.2",
|
||||
"react-ace": "^7.0.5",
|
||||
"react-beautiful-dnd": "^13.1.0",
|
||||
|
@ -937,7 +937,7 @@
|
|||
"@types/multistream": "^4.1.0",
|
||||
"@types/mustache": "^0.8.31",
|
||||
"@types/nock": "^10.0.3",
|
||||
"@types/node": "18.11.18",
|
||||
"@types/node": "16.11.68",
|
||||
"@types/node-fetch": "^2.6.0",
|
||||
"@types/node-forge": "^1.3.1",
|
||||
"@types/nodemailer": "^6.4.0",
|
||||
|
|
|
@ -662,13 +662,13 @@ describe('I18n engine', () => {
|
|||
i18n.translate('a.short', {
|
||||
values: { expires: new Date(2018, 5, 20, 18, 40, 30, 50) },
|
||||
} as any)
|
||||
).toBe('Coupon expires at 6:40 PM');
|
||||
).toBe('Coupon expires at 6:40 PM');
|
||||
|
||||
expect(
|
||||
i18n.translate('a.medium', {
|
||||
values: { expires: new Date(2018, 5, 20, 18, 40, 30, 50) },
|
||||
} as any)
|
||||
).toBe('Coupon expires at 6:40:30 PM');
|
||||
).toBe('Coupon expires at 6:40:30 PM');
|
||||
});
|
||||
|
||||
test('should format default messages with time formatter', () => {
|
||||
|
@ -679,14 +679,14 @@ describe('I18n engine', () => {
|
|||
defaultMessage: 'Coupon expires at {expires, time, short}',
|
||||
values: { expires: new Date(2018, 5, 20, 18, 40, 30, 50) },
|
||||
})
|
||||
).toBe('Coupon expires at 6:40 PM');
|
||||
).toBe('Coupon expires at 6:40 PM');
|
||||
|
||||
expect(
|
||||
i18n.translate('foo', {
|
||||
defaultMessage: 'Coupon expires at {expires, time, medium}',
|
||||
values: { expires: new Date(2018, 5, 20, 18, 40, 30, 50) },
|
||||
})
|
||||
).toBe('Coupon expires at 6:40:30 PM');
|
||||
).toBe('Coupon expires at 6:40:30 PM');
|
||||
});
|
||||
|
||||
test('should format message with a custom format', () => {
|
||||
|
|
|
@ -56,11 +56,9 @@ webpack_cli(
|
|||
env = select({
|
||||
"//:dist": {
|
||||
"NODE_ENV": "production",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
"//conditions:default": {
|
||||
"NODE_ENV": "development",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
}),
|
||||
visibility = ["//visibility:public"],
|
||||
|
|
|
@ -60,7 +60,6 @@ function usingWorkerProc<T>(config: OptimizerConfig, fn: (proc: ChildProcess) =>
|
|||
(): ProcResource => {
|
||||
const proc = fork(require.resolve('../worker/run_worker'), [], {
|
||||
execArgv: [
|
||||
'--openssl-legacy-provider',
|
||||
`--require=@kbn/babel-register/install`,
|
||||
...(inspectFlag && config.inspectWorkers
|
||||
? [`${inspectFlag}=${inspectPortCounter++}`]
|
||||
|
|
|
@ -84,11 +84,9 @@ webpack_cli(
|
|||
env = select({
|
||||
"//:dist": {
|
||||
"NODE_ENV": "production",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
"//conditions:default": {
|
||||
"NODE_ENV": "development",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
})
|
||||
)
|
||||
|
|
|
@ -45,11 +45,9 @@ webpack_cli(
|
|||
env = select({
|
||||
"//:dist": {
|
||||
"NODE_ENV": "production",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
"//conditions:default": {
|
||||
"NODE_ENV": "development",
|
||||
"NODE_OPTIONS": "--openssl-legacy-provider",
|
||||
},
|
||||
}),
|
||||
visibility = ["//visibility:public"],
|
||||
|
|
|
@ -41,17 +41,17 @@ interface Package {
|
|||
const packages: Package[] = [
|
||||
{
|
||||
name: 're2',
|
||||
version: '1.17.7',
|
||||
version: '1.17.4',
|
||||
destinationPath: 'node_modules/re2/build/Release/re2.node',
|
||||
extractMethod: 'gunzip',
|
||||
archives: {
|
||||
'darwin-x64': {
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.7/darwin-x64-108.gz',
|
||||
sha256: '4ed378c5a7fe6134b717afe7642254aff1ed7a881cbcaa53a012ac3efab49f99',
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.4/darwin-x64-93.gz',
|
||||
sha256: '9558c5cb39622e9b3653203e772b129d6c634e7dbd7af1b244352fc1d704601f',
|
||||
},
|
||||
'linux-x64': {
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.7/linux-x64-108.gz',
|
||||
sha256: '197a617ca2965f220848561afed71ff6df653f6d79910cf38e866c84ab38a236',
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.4/linux-x64-93.gz',
|
||||
sha256: '4d06747b266c75b6f7ced93977692c0586ce6a52924cabb569bd966378941aa1',
|
||||
},
|
||||
|
||||
// ARM builds are currently done manually as Github Actions used in upstream project
|
||||
|
@ -67,8 +67,8 @@ const packages: Package[] = [
|
|||
// * capture the sha256 with: `shasum -a 256 linux-arm64-*`
|
||||
// * upload the `linux-arm64-*.gz` artifact to the `yarn-prebuilt-artifacts` bucket in GCS using the correct version number
|
||||
'linux-arm64': {
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.7/linux-arm64-108.gz',
|
||||
sha256: 'a690087a1a1fd9887aac1abdab68d1992600e218be10783da6d3381cca950c1a',
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.4/linux-arm64-93.gz',
|
||||
sha256: '25409584f76f3d6ed85463d84adf094eb6e256ed1cb0b754b95bcbda6691fc26',
|
||||
},
|
||||
|
||||
// A similar process is necessary for building on ARM macs:
|
||||
|
@ -78,13 +78,13 @@ const packages: Package[] = [
|
|||
// * capture the sha256 with: `shasum -a 256 darwin-arm64-*`
|
||||
// * upload the `darwin-arm64-*.gz` artifact to the `yarn-prebuilt-artifacts` bucket in GCS using the correct version number
|
||||
'darwin-arm64': {
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.7/darwin-arm64-108.gz',
|
||||
sha256: '42afc32137ff5c5bebae5d68347a9786906748c2f28e06194d8950707f2ae90e',
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.4/darwin-arm64-93.gz',
|
||||
sha256: 'd4b708749ddef1c87019f6b80e051ed0c29ccd1de34f233c47d8dcaddf803872',
|
||||
},
|
||||
|
||||
'win32-x64': {
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.7/win32-x64-108.gz',
|
||||
sha256: 'ff72fe02de652262659c8e17e44a932f3c873362233756b40d1a97538d05de92',
|
||||
url: 'https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/node-re2/uhop/node-re2/releases/download/1.17.4/win32-x64-93.gz',
|
||||
sha256: '0320d0c0385432944c6fb3c8c8fcd78d440ce5626f7618f9ec71d88e44820674',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -74,7 +74,6 @@ describe('requestOAuthClientCredentialsToken', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
|
|
@ -75,7 +75,6 @@ describe('requestOAuthJWTToken', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
|
|
@ -82,7 +82,6 @@ describe('requestOAuthToken', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
|
|
@ -84,8 +84,8 @@ describe('CurationsTable', () => {
|
|||
expect(tableContent).toContain('mountains, valleys');
|
||||
|
||||
expect(tableContent).toContain('Last updated');
|
||||
expect(tableContent).toContain('Jan 1, 1970 12:00 PM');
|
||||
expect(tableContent).toContain('Jan 2, 1970 12:00 PM');
|
||||
expect(tableContent).toContain('Jan 1, 1970 12:00 PM');
|
||||
expect(tableContent).toContain('Jan 2, 1970 12:00 PM');
|
||||
});
|
||||
|
||||
it('renders queries with curation links and curation suggestion badges', () => {
|
||||
|
|
|
@ -16,7 +16,7 @@ describe('FormattedDateTime', () => {
|
|||
const date = new Date('1970-01-01T12:00:00');
|
||||
const wrapper = mountWithIntl(<FormattedDateTime date={date} />);
|
||||
|
||||
expect(wrapper.text()).toEqual('Jan 1, 1970 12:00 PM');
|
||||
expect(wrapper.text()).toEqual('Jan 1, 1970 12:00 PM');
|
||||
});
|
||||
|
||||
it('does not render time if hideTime is passed', () => {
|
||||
|
|
|
@ -90,7 +90,6 @@ describe('sendEmailGraphApi', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
@ -181,7 +180,6 @@ describe('sendEmailGraphApi', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
@ -271,7 +269,6 @@ describe('sendEmailGraphApi', () => {
|
|||
"maxSockets": Infinity,
|
||||
"maxTotalSockets": Infinity,
|
||||
"options": Object {
|
||||
"noDelay": true,
|
||||
"path": null,
|
||||
"rejectUnauthorized": true,
|
||||
},
|
||||
|
|
|
@ -200,7 +200,7 @@ describe('callAPI', () => {
|
|||
'x-kibana-version': '8.7.0',
|
||||
},
|
||||
httpsAgent: expect.objectContaining({
|
||||
options: { noDelay: true, rejectUnauthorized: true, path: null },
|
||||
options: { rejectUnauthorized: true, path: null },
|
||||
}),
|
||||
method: 'POST',
|
||||
url: 'https://service.dev/monitors',
|
||||
|
@ -213,7 +213,7 @@ describe('callAPI', () => {
|
|||
'x-kibana-version': '8.7.0',
|
||||
},
|
||||
httpsAgent: expect.objectContaining({
|
||||
options: { noDelay: true, rejectUnauthorized: true, path: null },
|
||||
options: { rejectUnauthorized: true, path: null },
|
||||
}),
|
||||
method: 'POST',
|
||||
url: 'https://qa.service.elstc.co/monitors',
|
||||
|
@ -226,7 +226,7 @@ describe('callAPI', () => {
|
|||
'x-kibana-version': '8.7.0',
|
||||
},
|
||||
httpsAgent: expect.objectContaining({
|
||||
options: { noDelay: true, rejectUnauthorized: true, path: null },
|
||||
options: { rejectUnauthorized: true, path: null },
|
||||
}),
|
||||
method: 'POST',
|
||||
url: 'https://qa.service.stg.co/monitors',
|
||||
|
@ -293,7 +293,6 @@ describe('callAPI', () => {
|
|||
httpsAgent: expect.objectContaining({
|
||||
options: {
|
||||
rejectUnauthorized: true,
|
||||
noDelay: true,
|
||||
path: null,
|
||||
cert: 'test-certificate',
|
||||
key: 'test-key',
|
||||
|
|
53
yarn.lock
53
yarn.lock
|
@ -7435,10 +7435,10 @@
|
|||
dependencies:
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/node@*", "@types/node@18.11.18", "@types/node@>= 8", "@types/node@>=12.12.47", "@types/node@>=13.7.0", "@types/node@>=8.9.0", "@types/node@^10.1.0", "@types/node@^14.0.10 || ^16.0.0", "@types/node@^14.14.20 || ^16.0.0", "@types/node@^14.14.31":
|
||||
version "18.11.18"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f"
|
||||
integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
|
||||
"@types/node@*", "@types/node@16.11.68", "@types/node@>= 8", "@types/node@>=12.12.47", "@types/node@>=13.7.0", "@types/node@>=8.9.0", "@types/node@^10.1.0", "@types/node@^14.0.10 || ^16.0.0", "@types/node@^14.14.20 || ^16.0.0", "@types/node@^14.14.31":
|
||||
version "16.11.68"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.68.tgz#30ee923f4d940793e0380f5ce61c0bd4b7196b6c"
|
||||
integrity sha512-JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==
|
||||
|
||||
"@types/nodemailer@^6.4.0":
|
||||
version "6.4.0"
|
||||
|
@ -8641,7 +8641,7 @@ abab@^2.0.3, abab@^2.0.4, abab@^2.0.5, abab@^2.0.6:
|
|||
resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
|
||||
integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
|
||||
|
||||
abbrev@1, abbrev@^1.0.0:
|
||||
abbrev@1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
||||
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
||||
|
@ -16547,7 +16547,7 @@ inquirer@^8.2.3:
|
|||
through "^2.3.6"
|
||||
wrap-ansi "^7.0.0"
|
||||
|
||||
install-artifact-from-github@^1.3.1:
|
||||
install-artifact-from-github@^1.3.0:
|
||||
version "1.3.1"
|
||||
resolved "https://registry.yarnpkg.com/install-artifact-from-github/-/install-artifact-from-github-1.3.1.tgz#eefaad9af35d632e5d912ad1569c1de38c3c2462"
|
||||
integrity sha512-3l3Bymg2eKDsN5wQuMfgGEj2x6l5MCAv0zPL6rxHESufFVlEAKW/6oY9F1aGgvY/EgWm5+eWGRjINveL4X7Hgg==
|
||||
|
@ -19280,7 +19280,7 @@ make-error@^1.1.1:
|
|||
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
|
||||
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
|
||||
|
||||
make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.4:
|
||||
make-fetch-happen@^10.0.4:
|
||||
version "10.2.1"
|
||||
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164"
|
||||
integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==
|
||||
|
@ -20305,7 +20305,7 @@ mute-stream@0.0.8:
|
|||
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
|
||||
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
|
||||
|
||||
nan@^2.16.0, nan@^2.17.0:
|
||||
nan@^2.15.0, nan@^2.17.0:
|
||||
version "2.17.0"
|
||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb"
|
||||
integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==
|
||||
|
@ -20569,22 +20569,6 @@ node-gyp@^8.4.1:
|
|||
tar "^6.1.2"
|
||||
which "^2.0.2"
|
||||
|
||||
node-gyp@^9.0.0:
|
||||
version "9.3.0"
|
||||
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.0.tgz#f8eefe77f0ad8edb3b3b898409b53e697642b319"
|
||||
integrity sha512-A6rJWfXFz7TQNjpldJ915WFb1LnhO4lIve3ANPbWreuEoLoKlFT3sxIepPBkLhM27crW8YmN+pjlgbasH6cH/Q==
|
||||
dependencies:
|
||||
env-paths "^2.2.0"
|
||||
glob "^7.1.4"
|
||||
graceful-fs "^4.2.6"
|
||||
make-fetch-happen "^10.0.3"
|
||||
nopt "^6.0.0"
|
||||
npmlog "^6.0.0"
|
||||
rimraf "^3.0.2"
|
||||
semver "^7.3.5"
|
||||
tar "^6.1.2"
|
||||
which "^2.0.2"
|
||||
|
||||
node-int64@^0.4.0:
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
|
||||
|
@ -20686,13 +20670,6 @@ nopt@^5.0.0:
|
|||
dependencies:
|
||||
abbrev "1"
|
||||
|
||||
nopt@^6.0.0:
|
||||
version "6.0.0"
|
||||
resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d"
|
||||
integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==
|
||||
dependencies:
|
||||
abbrev "^1.0.0"
|
||||
|
||||
normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0:
|
||||
version "2.5.0"
|
||||
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
|
||||
|
@ -22846,14 +22823,14 @@ re-resizable@^6.1.1:
|
|||
dependencies:
|
||||
fast-memoize "^2.5.1"
|
||||
|
||||
re2@1.17.7:
|
||||
version "1.17.7"
|
||||
resolved "https://registry.yarnpkg.com/re2/-/re2-1.17.7.tgz#e14cab85a177a5534c7215c322d1b043c55aa1e9"
|
||||
integrity sha512-X8GSuiBoVWwcjuppqSjsIkRxNUKDdjhkO9SBekQbZ2ksqWUReCy7DQPWOVpoTnpdtdz5PIpTTxTFzvJv5UMfjA==
|
||||
re2@1.17.4:
|
||||
version "1.17.4"
|
||||
resolved "https://registry.yarnpkg.com/re2/-/re2-1.17.4.tgz#7bf29290bdde963014e77bd2c2e799a6d788386e"
|
||||
integrity sha512-xyZ4h5PqE8I9tAxTh3G0UttcK5ufrcUxReFjGzfX61vtanNbS1XZHjnwRSyPcLgChI4KLxVgOT/ioZXnUAdoTA==
|
||||
dependencies:
|
||||
install-artifact-from-github "^1.3.1"
|
||||
nan "^2.16.0"
|
||||
node-gyp "^9.0.0"
|
||||
install-artifact-from-github "^1.3.0"
|
||||
nan "^2.15.0"
|
||||
node-gyp "^8.4.1"
|
||||
|
||||
react-ace@^7.0.5:
|
||||
version "7.0.5"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue