npm package diff
Package: @forge/manifest
Versions: 8.0.1-next.1 - 8.1.0-next.2
Modified:package/out/schema/basic-manifest-schema.json
Index: package/out/schema/basic-manifest-schema.json
===================================================================
--- package/out/schema/basic-manifest-schema.json
+++ package/out/schema/basic-manifest-schema.json
@@ -32,9 +32,10 @@
"type": "string",
"enum": [
"sandbox",
"nodejs18.x",
- "nodejs20.x"
+ "nodejs20.x",
+ "nodejs22.x"
]
}
},
"title": "runtime",
Modified:package/out/schema/manifest-schema.json
too-big
Modified:package/package.json
Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
{
"name": "@forge/manifest",
- "version": "8.0.1-next.1",
+ "version": "8.1.0-next.2",
"description": "Definitions and validations of the Forge manifest",
"main": "out/index.js",
"scripts": {
"build": "yarn run compile",
Modified:package/CHANGELOG.md
Index: package/CHANGELOG.md
===================================================================
--- package/CHANGELOG.md
+++ package/CHANGELOG.md
@@ -1,6 +1,12 @@
# @forge/manifest
+## 8.1.0-next.2
+
+### Minor Changes
+
+- 3d8c83f: Add linting for runtime.name: nodejs22.x.
+
## 8.0.1-next.1
### Patch Changes
Modified:package/out/schema/basic-manifest.d.ts
Index: package/out/schema/basic-manifest.d.ts
===================================================================
--- package/out/schema/basic-manifest.d.ts
+++ package/out/schema/basic-manifest.d.ts
@@ -19,9 +19,9 @@
export type Snapshots = boolean;
/**
* Name of the runtime to use for app execution.
*/
-export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x';
+export type Name = 'sandbox' | 'nodejs18.x' | 'nodejs20.x' | 'nodejs22.x';
/**
* Whether to enable paid app licensing for production installations of this app. Default value of false.
*/
export type Enabled = boolean;
Modified:package/out/schema/manifest.d.ts
too-big