@kintone/plugin-manifest-validator
Advanced tools
Comparing version 6.0.1 to 6.1.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [6.1.0](https://github.com/kintone/js-sdk/compare/@kintone/plugin-manifest-validator@6.0.1...@kintone/plugin-manifest-validator@6.1.0) (2021-07-12) | ||
### Features | ||
* **plugin-manifest-validator:** accept new format plugin versions ([#972](https://github.com/kintone/js-sdk/issues/972)) ([66b3398](https://github.com/kintone/js-sdk/commit/66b3398e07e9779a630176450224060908b63249)) | ||
## [6.0.1](https://github.com/kintone/js-sdk/compare/@kintone/plugin-manifest-validator@6.0.0...@kintone/plugin-manifest-validator@6.0.1) (2021-06-15) | ||
@@ -8,0 +19,0 @@ |
@@ -12,4 +12,11 @@ { | ||
"version": { | ||
"type": "integer", | ||
"minimum": 1 | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ "type": "string", | ||
"pattern": "^(0|[1-9]\\d*)(?:\\.(0|[1-9]\\d*))?(?:\\.(0|[1-9]\\d*))?$" | ||
} | ||
] | ||
}, | ||
@@ -16,0 +23,0 @@ "type": { |
@@ -419,3 +419,3 @@ /* tslint:disable */ | ||
manifest_version: number; | ||
version: number; | ||
version: number | string; | ||
type: "APP"; | ||
@@ -422,0 +422,0 @@ name: { |
@@ -12,4 +12,11 @@ { | ||
"version": { | ||
"type": "integer", | ||
"minimum": 1 | ||
"oneOf": [ | ||
{ | ||
"type": "integer", | ||
"minimum": 0 | ||
}, | ||
{ "type": "string", | ||
"pattern": "^(0|[1-9]\\d*)(?:\\.(0|[1-9]\\d*))?(?:\\.(0|[1-9]\\d*))?$" | ||
} | ||
] | ||
}, | ||
@@ -16,0 +23,0 @@ "type": { |
{ | ||
"name": "@kintone/plugin-manifest-validator", | ||
"version": "6.0.1", | ||
"version": "6.1.0", | ||
"author": "Teppei Sato <teppeis@gmail.com>", | ||
@@ -32,3 +32,3 @@ "engines": { | ||
"@babel/preset-typescript": "^7.14.5", | ||
"@types/bytes": "^3.1.0", | ||
"@types/bytes": "^3.1.1", | ||
"babel-plugin-replace-ts-export-assignment": "^0.0.2", | ||
@@ -52,3 +52,3 @@ "intelli-espower-loader": "^1.1.0", | ||
"license": "MIT", | ||
"gitHead": "9d5e6ec946534fabf2e4137889b427f67b69c49d" | ||
"gitHead": "429f9b20595ad71400ad0b79d357bb1b43377f09" | ||
} |
@@ -30,3 +30,3 @@ @kintone/plugin-manifest-validator | ||
[ajv error objects](https://ajv.js.org/docs/api.html#validation-errors) is like: | ||
[ajv error objects](https://ajv.js.org/api.html#error-objects) is like: | ||
@@ -33,0 +33,0 @@ ```js |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81031
917