@balena/odata-parser 2.4.2 → 2.4.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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ npx --no lint-staged
@@ -1,3 +1,14 @@
1
+ - commits:
2
+ - subject: Update dependencies
3
+ hash: 25b153aca258347c6742cb8b4efe54c0ae199695
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ version: 2.4.3
10
+ title: ""
11
+ date: 2023-02-23T16:09:08.975Z
1
12
  - commits:
2
13
  - subject: Test that `/$count` works with a `$filter`containing an 'and'
3
14
  hash: cda0a1a54b2830cd393240dd5dddf1e4b42877c4
@@ -8,7 +19,7 @@
8
19
  author: Thodoris Greasidis
9
20
  version: 2.4.2
10
21
  title: ""
11
- date: 2022-11-03T09:07:24.960Z
22
+ date: 2022-11-03T09:21:15.746Z
12
23
  - commits:
13
24
  - subject: Switch from balenaCI to flowzone
14
25
  hash: 3e0435348860242b9252c2725427a42e28925b4f
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
+ # v2.4.3
8
+ ## (2023-02-23)
9
+
10
+ * Update dependencies [Pagan Gazzard]
11
+
7
12
  # v2.4.2
8
13
  ## (2022-11-03)
9
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/odata-parser",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "An OData parser written in OMeta",
5
5
  "main": "odata-parser.js",
6
6
  "scripts": {
@@ -9,31 +9,26 @@
9
9
  "test": "mocha",
10
10
  "posttest": "npm run lint",
11
11
  "prepublish": "require-npm4-to-publish",
12
- "prepare": "peggy --source-map --extra-options-file odata-parser.config.json --output odata-parser.js odata-parser.pegjs",
12
+ "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",
13
13
  "prettify": "balena-lint -e ts -e js --typescript --fix odata-parser.d.ts test"
14
14
  },
15
15
  "repository": "https://github.com/balena-io-modules/odata-parser.git",
16
16
  "author": "",
17
17
  "license": "BSD",
18
18
  "devDependencies": {
19
- "@balena/lint": "^6.2.0",
20
- "@types/chai": "^4.3.1",
21
- "@types/lodash": "^4.14.182",
22
- "@types/mocha": "^9.1.1",
23
- "chai": "^4.3.6",
24
- "husky": "^4.3.8",
25
- "lint-staged": "^12.5.0",
19
+ "@balena/lint": "^6.2.1",
20
+ "@types/chai": "^4.3.4",
21
+ "@types/lodash": "^4.14.191",
22
+ "@types/mocha": "^10.0.1",
23
+ "chai": "^4.3.7",
24
+ "husky": "^8.0.3",
25
+ "lint-staged": "^13.1.2",
26
26
  "lodash": "^4.17.21",
27
- "mocha": "^9.2.2",
27
+ "mocha": "^10.2.0",
28
28
  "peggy": "^2.0.1",
29
29
  "require-npm4-to-publish": "^1.0.0",
30
- "ts-node": "^10.8.1",
31
- "typescript": "^4.7.3"
32
- },
33
- "husky": {
34
- "hooks": {
35
- "pre-commit": "lint-staged"
36
- }
30
+ "ts-node": "^10.9.1",
31
+ "typescript": "^4.9.5"
37
32
  },
38
33
  "mocha": {
39
34
  "reporter": "spec",
@@ -42,6 +37,6 @@
42
37
  "_": "test/run.js"
43
38
  },
44
39
  "versionist": {
45
- "publishedAt": "2022-11-03T09:07:25.110Z"
40
+ "publishedAt": "2023-02-23T16:09:09.111Z"
46
41
  }
47
42
  }