Skip to content

Commit 3159e46

Browse files
authored
Move OpenJS.NodeJS.LTS 12.22.0 to OpenJS.NodeJS.12 12.22.0 (#311002)
1 parent f553586 commit 3159e46

File tree

4 files changed

+184
-0
lines changed

4 files changed

+184
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Created with YamlCreate.ps1 Dumplings Mod
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
3+
4+
PackageIdentifier: OpenJS.NodeJS.12
5+
PackageVersion: 12.22.0
6+
Commands:
7+
- corepack
8+
- node
9+
- npm
10+
- npx
11+
FileExtensions:
12+
- cjs
13+
- js
14+
- mjs
15+
ReleaseDate: 2021-03-30
16+
Installers:
17+
- Architecture: x86
18+
InstallerType: wix
19+
Scope: machine
20+
InstallerUrl: https://nodejs.org/dist/v12.22.0/node-v12.22.0-x86.msi
21+
InstallerSha256: 62D3BBE291B146FF2856D4EF349377D7F20FEA5ED7CE84BE73C53193CAB46329
22+
InstallerSwitches:
23+
InstallLocation: INSTALLDIR="<INSTALLPATH>"
24+
UpgradeBehavior: install
25+
ProductCode: '{A950A308-6A91-475E-B869-AC5CCBB2931F}'
26+
ElevationRequirement: elevatesSelf
27+
InstallationMetadata:
28+
DefaultInstallLocation: '%ProgramFiles(x86)%\nodejs'
29+
- Architecture: x64
30+
InstallerType: wix
31+
Scope: machine
32+
InstallerUrl: https://nodejs.org/dist/v12.22.0/node-v12.22.0-x64.msi
33+
InstallerSha256: 51CFC0F8DB30FC2BD45B6AC553867D3745AA73621661C099DAAACB25D0D938BC
34+
InstallerSwitches:
35+
InstallLocation: INSTALLDIR="<INSTALLPATH>"
36+
UpgradeBehavior: install
37+
ProductCode: '{CA73D7A6-44FF-4D9E-BF85-AEF742372627}'
38+
ElevationRequirement: elevatesSelf
39+
InstallationMetadata:
40+
DefaultInstallLocation: '%ProgramFiles%\nodejs'
41+
- Architecture: x86
42+
InstallerType: zip
43+
NestedInstallerType: portable
44+
NestedInstallerFiles:
45+
- RelativeFilePath: node-v12.22.0-win-x86/node.exe
46+
PortableCommandAlias: node
47+
InstallerUrl: https://nodejs.org/dist/v12.22.0/node-v12.22.0-win-x86.zip
48+
InstallerSha256: 0C880C1C0F5FF0755DA21098B9FAE7E76289525BDFDB73725FAE7DC815EC2A9D
49+
ArchiveBinariesDependOnPath: true
50+
- Architecture: x64
51+
InstallerType: zip
52+
NestedInstallerType: portable
53+
NestedInstallerFiles:
54+
- RelativeFilePath: node-v12.22.0-win-x64/node.exe
55+
PortableCommandAlias: node
56+
InstallerUrl: https://nodejs.org/dist/v12.22.0/node-v12.22.0-win-x64.zip
57+
InstallerSha256: 27DCFB4145BADE7F03687D6EC620C55B0B5C966C583D02D29DB36FB88BBD82C1
58+
ArchiveBinariesDependOnPath: true
59+
ManifestType: installer
60+
ManifestVersion: 1.10.0
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Created with YamlCreate.ps1 Dumplings Mod
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
3+
4+
PackageIdentifier: OpenJS.NodeJS.12
5+
PackageVersion: 12.22.0
6+
PackageLocale: en-US
7+
Publisher: Node.js Foundation
8+
PublisherUrl: https://openjsf.org/
9+
PublisherSupportUrl: https://github.com/nodejs/node/blob/v12.22.0/.github/SUPPORT.md
10+
PrivacyUrl: https://privacy-policy.openjsf.org/
11+
Author: OpenJS Foundation
12+
PackageName: Node.js 12
13+
PackageUrl: https://nodejs.org/
14+
License: MIT
15+
LicenseUrl: https://github.com/nodejs/node/blob/v12.22.0/LICENSE
16+
Copyright: Copyright Node.js contributors. All rights reserved.
17+
CopyrightUrl: https://trademark-policy.openjsf.org/
18+
ShortDescription: Run JavaScript Everywhere
19+
Description: Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.
20+
Moniker: nodejs-12
21+
Tags:
22+
- coding
23+
- cross-platform
24+
- develop
25+
- development
26+
- environment
27+
- javascript
28+
- js
29+
- lts
30+
- node
31+
- npm
32+
- programming
33+
- runtime
34+
- v8
35+
ReleaseNotes: |-
36+
Notable changes
37+
The legacy HTTP parser is runtime deprecated
38+
The legacy HTTP parser, selected by the --http-parser=legacy command line
39+
option, is deprecated with the pending End-of-Life of Node.js 10.x (where it
40+
is the only HTTP parser implementation provided) at the end of April 2021. It
41+
will now warn on use but otherwise continue to function and may be removed in
42+
a future Node.js 12.x release.
43+
The default HTTP parser based on llhttp is not affected. By default it is
44+
stricter than the now deprecated legacy HTTP parser. If interoperability with
45+
HTTP implementations that send invalid HTTP headers is required, the HTTP
46+
parser can be started in a less secure mode with the --insecure-http-parser
47+
command line option.
48+
Contributed by Beth Griggs #37603.
49+
ES Modules
50+
ES Modules are now considered stable.
51+
Contributed by Guy Bedford #35781
52+
node-api
53+
Updated to node-api version 8 and added an experimental API to allow retrieval of the add-on file name.
54+
Contributed by Gabriel Schulhof #37652 and #37195.
55+
New API's to control code coverage data collection
56+
v8.stopCoverage() and v8.takeCoverage() have been added.
57+
Contributed by Joyee Cheung #33807.
58+
New API to monitor event loop utilization by Worker threads
59+
worker.performance.eventLoopUtilization() has been added.
60+
Contributed by Trevor Norris #35664.
61+
Commits
62+
- [1872625990] - (SEMVER-MINOR) deps: update to [email protected] (Guy Bedford) #37712
63+
- [dfa04d9035] - deps: V8: cherry-pick beebee4f80ff (Peter Marshall) #37293
64+
- [bf8733fe22] - doc: mark modules implementation as stable (Guy Bedford) #35781
65+
- [0a35d49f56] - Revert "embedding: make Stop() stop Workers" (Anna Henningsen) #32623
66+
- [a0b610450a] - (SEMVER-MINOR) http: runtime deprecate legacy HTTP parser (Beth Griggs) #37603
67+
- [2da24ac302] - lib: add URI handling functions to primordials (Antoine du Hamel) #37394
68+
- [7b0ed4ba92] - module: improve support of data: URLs (Antoine du Hamel) #37392
69+
- [93dd799a86] - (SEMVER-MINOR) node-api: define version 8 (Gabriel Schulhof) #37652
70+
- [f5692093d3] - (SEMVER-MINOR) node-api: allow retrieval of add-on file name (Gabriel Schulhof) #37195
71+
- [6cef0e3678] - src,test: add regression test for nested Worker termination (Anna Henningsen) #32623
72+
- [364bf03a68] - test: fix races in test-performance-eventlooputil (Gerhard Stoebich) #36028
73+
- [d7a4ccdf09] - test: correct test-worker-eventlooputil (Gerhard Stoebich) #35891
74+
- [0f6d44500c] - test: add cpu-profiler-crash test (Santiago Gimeno) #37293
75+
- [86f34ee18c] - (SEMVER-MINOR) v8: implement v8.stopCoverage() (Joyee Cheung) #33807
76+
- [8ddea3f16d] - (SEMVER-MINOR) v8: implement v8.takeCoverage() (Joyee Cheung) #33807
77+
- [eec7542781] - (SEMVER-MINOR) worker: add eventLoopUtilization() (Trevor Norris) #35664
78+
ReleaseNotesUrl: https://github.com/nodejs/node/releases/tag/v12.22.0
79+
Documentations:
80+
- DocumentLabel: Learn
81+
DocumentUrl: https://nodejs.org/learn/
82+
- DocumentLabel: Documentation
83+
DocumentUrl: https://nodejs.org/docs/v12.22.0/api/
84+
- DocumentLabel: About
85+
DocumentUrl: https://nodejs.org/about/
86+
ManifestType: defaultLocale
87+
ManifestVersion: 1.10.0
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Created with YamlCreate.ps1 Dumplings Mod
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json
3+
4+
PackageIdentifier: OpenJS.NodeJS.12
5+
PackageVersion: 12.22.0
6+
PackageLocale: zh-CN
7+
ShortDescription: 在任何地方运行 JavaScript
8+
Description: Node.js® 是一个免费、开源、跨平台的 JavaScript 运行时环境,它让开发人员能够创建服务器、Web 应用、命令行工具和脚本。
9+
Tags:
10+
- javascript
11+
- js
12+
- node
13+
- npm
14+
- v8
15+
- 开发
16+
- 环境
17+
- 编码
18+
- 编程
19+
- 跨平台
20+
- 运行时
21+
Documentations:
22+
- DocumentLabel: 学习
23+
DocumentUrl: https://nodejs.org/zh-cn/learn/
24+
- DocumentLabel: 文档
25+
DocumentUrl: https://nodejs.org/docs/v12.22.0/api/
26+
- DocumentLabel: 关于
27+
DocumentUrl: https://nodejs.org/zh-cn/about/
28+
ManifestType: locale
29+
ManifestVersion: 1.10.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created with YamlCreate.ps1 Dumplings Mod
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
3+
4+
PackageIdentifier: OpenJS.NodeJS.12
5+
PackageVersion: 12.22.0
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.10.0

0 commit comments

Comments
 (0)