v8r 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 📦 [3.1.1](https://www.npmjs.com/package/v8r/v/3.1.1) - 2024-08-03
4
+
5
+ * Allow 'toml' as an allowed value for parser in custom catalog
6
+
3
7
  ## 📦 [3.1.0](https://www.npmjs.com/package/v8r/v/3.1.0) - 2024-06-03
4
8
 
5
9
  * Add ability to configure a proxy using global-agent
@@ -53,8 +53,9 @@
53
53
  "type": "string",
54
54
  "enum": [
55
55
  "json",
56
- "yaml",
57
- "json5"
56
+ "json5",
57
+ "toml",
58
+ "yaml"
58
59
  ]
59
60
  }
60
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v8r",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "A command-line JSON and YAML validator that's on your wavelength",
5
5
  "scripts": {
6
6
  "test": "V8R_CACHE_NAME=v8r-test c8 --reporter=text mocha \"src/**/*.spec.js\"",
@@ -46,7 +46,7 @@
46
46
  "yargs": "^17.0.1"
47
47
  },
48
48
  "devDependencies": {
49
- "c8": "^9.1.0",
49
+ "c8": "^10.1.2",
50
50
  "eslint": "^9.2.0",
51
51
  "eslint-config-prettier": "^9.0.0",
52
52
  "eslint-plugin-mocha": "^10.0.3",