@balena/abstract-sql-compiler 9.1.2 → 9.1.3

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,24 @@
1
+ - commits:
2
+ - subject: Update prepare script for husky v9
3
+ hash: bae835665431a88f0fdd4804f1d70757a7e11dd0
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Josh Bowling
9
+ nested: []
10
+ - subject: Update dependency husky to v9
11
+ hash: d53d2f121e97d0dde35fe646e63b9d7179f4f098
12
+ body: |
13
+ Update husky from 8.0.3 to 9.0.11
14
+ footer:
15
+ Change-type: patch
16
+ change-type: patch
17
+ author: Self-hosted Renovate Bot
18
+ nested: []
19
+ version: 9.1.3
20
+ title: ""
21
+ date: 2024-04-09T01:35:54.076Z
1
22
  - commits:
2
23
  - subject: Update dependency lint-staged to v15
3
24
  hash: 6b5c28a3170006cd3f6f963f03ec2ee67273223e
@@ -10,7 +31,7 @@
10
31
  nested: []
11
32
  version: 9.1.2
12
33
  title: ""
13
- date: 2024-03-26T10:44:47.665Z
34
+ date: 2024-04-09T01:09:18.361Z
14
35
  - commits:
15
36
  - subject: Update dependency @balena/lint to v8
16
37
  hash: 835365353b766b89d80c80b84f48583ba0322849
package/CHANGELOG.md CHANGED
@@ -4,7 +4,12 @@ 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
- ## 9.1.2 - 2024-03-26
7
+ ## 9.1.3 - 2024-04-09
8
+
9
+ * Update prepare script for husky v9 [Josh Bowling]
10
+ * Update dependency husky to v9 [Self-hosted Renovate Bot]
11
+
12
+ ## 9.1.2 - 2024-04-09
8
13
 
9
14
  * Update dependency lint-staged to v15 [Self-hosted Renovate Bot]
10
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/abstract-sql-compiler",
3
- "version": "9.1.2",
3
+ "version": "9.1.3",
4
4
  "description": "A translator for abstract sql into sql.",
5
5
  "main": "out/AbstractSQLCompiler.js",
6
6
  "types": "out/AbstractSQLCompiler.d.ts",
@@ -9,7 +9,7 @@
9
9
  "pretest": "npm run build",
10
10
  "test": "mocha",
11
11
  "posttest": "npm run lint",
12
- "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && npm run build",
12
+ "prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && npm run build",
13
13
  "lint-fix": "balena-lint --fix -e js -e ts src/ test/",
14
14
  "lint": "balena-lint -e js -e ts src/ test/ && tsc --noEmit && tsc --noEmit --project tsconfig.js.json"
15
15
  },
@@ -32,7 +32,7 @@
32
32
  "@types/node": "^20.0.0",
33
33
  "chai": "^4.3.7",
34
34
  "common-tags": "^1.8.2",
35
- "husky": "^8.0.3",
35
+ "husky": "^9.0.0",
36
36
  "lint-staged": "^15.0.0",
37
37
  "mocha": "^10.2.0",
38
38
  "ts-node": "^10.9.1",
@@ -61,6 +61,6 @@
61
61
  "npm": ">=8.1.0"
62
62
  },
63
63
  "versionist": {
64
- "publishedAt": "2024-03-26T10:44:47.946Z"
64
+ "publishedAt": "2024-04-09T01:35:54.336Z"
65
65
  }
66
66
  }