@balena/odata-parser 4.2.3 → 4.2.4

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.
@@ -1,3 +1,14 @@
1
+ - commits:
2
+ - subject: 'Build: switch tsconfig to use module "Node16" with type "commonjs"'
3
+ hash: 2a6499f3c5d259680f9a0f84379c8aed57636a62
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ version: 4.2.4
10
+ title: ""
11
+ date: 2025-04-09T09:27:36.775Z
1
12
  - commits:
2
13
  - subject: Avoid setting $count `options` for $orderby when not provided
3
14
  hash: 4e1f9750aed95dba4731d1fe9e7a46a000ea4ab6
@@ -8,7 +19,7 @@
8
19
  author: Thodoris Greasidis
9
20
  version: 4.2.3
10
21
  title: ""
11
- date: 2025-04-01T07:49:35.337Z
22
+ date: 2025-04-01T08:42:18.322Z
12
23
  - commits:
13
24
  - subject: Update dependency mocha to v11
14
25
  hash: 118d83467fc89b977ad89f7b9444897739399693
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
+ # v4.2.4
8
+ ## (2025-04-09)
9
+
10
+ * Build: switch tsconfig to use module "Node16" with type "commonjs" [Pagan Gazzard]
11
+
7
12
  # v4.2.3
8
13
  ## (2025-04-01)
9
14
 
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@balena/odata-parser",
3
- "version": "4.2.3",
3
+ "version": "4.2.4",
4
4
  "description": "An OData parser written in OMeta",
5
+ "type": "commonjs",
5
6
  "main": "odata-parser.js",
6
7
  "scripts": {
7
8
  "lint": "balena-lint -e ts -e js --typescript odata-parser.d.ts test && tsc --noEmit --project tsconfig.js.json",
@@ -39,6 +40,6 @@
39
40
  "npm": ">=8.1.0"
40
41
  },
41
42
  "versionist": {
42
- "publishedAt": "2025-04-01T07:49:35.456Z"
43
+ "publishedAt": "2025-04-09T09:27:36.907Z"
43
44
  }
44
45
  }
package/test/encoding.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import test from './test';
2
- import * as assert from 'assert';
2
+ import assert from 'assert';
3
3
  import { SyntaxError } from '../odata-parser';
4
4
 
5
5
  describe('Encoding', function () {
@@ -1,6 +1,6 @@
1
1
  import resourceTest from './test';
2
2
  const { raw: test } = resourceTest;
3
- import * as assert from 'assert';
3
+ import assert from 'assert';
4
4
  import { expect } from 'chai';
5
5
  import { SyntaxError } from '../odata-parser';
6
6
 
package/tsconfig.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "module": "commonjs",
3
+ "module": "Node16",
4
4
  "target": "es2021",
5
5
  "strict": true,
6
6
  "strictFunctionTypes": false,