@balena/odata-parser 3.0.6 → 3.0.7

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/.husky/pre-commit CHANGED
@@ -1,4 +1,2 @@
1
- #!/usr/bin/env sh
2
- . "$(dirname -- "$0")/_/husky.sh"
3
1
 
4
2
  npx --no lint-staged
@@ -1,3 +1,15 @@
1
+ - commits:
2
+ - subject: Update dependency husky to v9
3
+ hash: 8d5929cbbce1765e8ad14a84a1b6e669daedd9a8
4
+ body: |
5
+ Update husky from 8.0.3 to 9.0.11
6
+ footer:
7
+ Change-type: patch
8
+ change-type: patch
9
+ author: Self-hosted Renovate Bot
10
+ version: 3.0.7
11
+ title: ""
12
+ date: 2024-04-13T13:45:47.203Z
1
13
  - commits:
2
14
  - subject: Update dependency peggy to v4
3
15
  hash: d0c83b2955f285f3cac927e4310e0b948d522189
@@ -9,7 +21,7 @@
9
21
  author: Self-hosted Renovate Bot
10
22
  version: 3.0.6
11
23
  title: ""
12
- date: 2024-04-12T08:46:50.076Z
24
+ date: 2024-04-12T09:10:02.194Z
13
25
  - commits:
14
26
  - subject: Update dependency lint-staged to v15
15
27
  hash: 703834a4c358dd348e1ffce797f6e3c37a03941f
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
4
4
  automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ # v3.0.7
8
+ ## (2024-04-13)
9
+
10
+ * Update dependency husky to v9 [Self-hosted Renovate Bot]
11
+
7
12
  # v3.0.6
8
13
  ## (2024-04-12)
9
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/odata-parser",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "An OData parser written in OMeta",
5
5
  "main": "odata-parser.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "pretest": "npm run prepare && npx tsc --noEmit odata-parser.d.ts",
9
9
  "test": "mocha",
10
10
  "posttest": "npm run lint",
11
- "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && peggy --source-map --extra-options-file odata-parser.config.json --output odata-parser.js odata-parser.pegjs",
11
+ "prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && peggy --source-map --extra-options-file odata-parser.config.json --output odata-parser.js odata-parser.pegjs",
12
12
  "prettify": "balena-lint -e ts -e js --typescript --fix odata-parser.d.ts test"
13
13
  },
14
14
  "repository": "https://github.com/balena-io-modules/odata-parser.git",
@@ -20,7 +20,7 @@
20
20
  "@types/lodash": "^4.14.194",
21
21
  "@types/mocha": "^10.0.1",
22
22
  "chai": "^4.3.7",
23
- "husky": "^8.0.3",
23
+ "husky": "^9.0.0",
24
24
  "lint-staged": "^15.0.0",
25
25
  "lodash": "^4.17.21",
26
26
  "mocha": "^10.2.0",
@@ -39,6 +39,6 @@
39
39
  "npm": ">=8.1.0"
40
40
  },
41
41
  "versionist": {
42
- "publishedAt": "2024-04-12T08:46:50.192Z"
42
+ "publishedAt": "2024-04-13T13:45:47.309Z"
43
43
  }
44
44
  }