@balena/pinejs 19.5.4 → 19.5.5-build-run-tests-on-utc-726c1ea0a2e144f9e2a6fe7fda19856b895a4aed-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.
@@ -1,3 +1,15 @@
1
+ - commits:
2
+ - subject: Run tests on UTC TZ
3
+ hash: 726c1ea0a2e144f9e2a6fe7fda19856b895a4aed
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Otavio Jacobi
9
+ nested: []
10
+ version: 19.5.5
11
+ title: ""
12
+ date: 2024-11-11T22:31:12.879Z
1
13
  - commits:
2
14
  - subject: Fix async tasks race condition for selecting task to be executed
3
15
  hash: 97936ec9a2b3f5179a9088b6ae3fac14537ed378
@@ -17,7 +29,7 @@
17
29
  nested: []
18
30
  version: 19.5.4
19
31
  title: ""
20
- date: 2024-10-28T14:14:09.866Z
32
+ date: 2024-10-28T15:58:17.248Z
21
33
  - commits:
22
34
  - subject: Run tests with node cluster mode
23
35
  hash: 64fbd77b96f995b43ee37fe44c5ac569e5408f3a
@@ -1900,6 +1912,7 @@
1900
1912
 
1901
1913
 
1902
1914
 
1915
+
1903
1916
  As balena-lint
1904
1917
  rejects `new
1905
1918
  Boolean()`, `new
@@ -1934,6 +1947,7 @@
1934
1947
 
1935
1948
 
1936
1949
 
1950
+
1937
1951
  As engine and npm is
1938
1952
  now required as part
1939
1953
  of package.json we
@@ -1983,6 +1997,7 @@
1983
1997
 
1984
1998
 
1985
1999
 
2000
+
1986
2001
  Ensure that the
1987
2002
  input passed in for
1988
2003
  JSON types is either
@@ -2102,6 +2117,7 @@
2102
2117
 
2103
2118
 
2104
2119
 
2120
+
2105
2121
  This also deprecates
2106
2122
  the legacy version
2107
2123
  footer:
@@ -2142,6 +2158,7 @@
2142
2158
 
2143
2159
 
2144
2160
 
2161
+
2145
2162
  It can in fact be a
2146
2163
  lot of different
2147
2164
  things and that is
@@ -2183,6 +2200,7 @@
2183
2200
 
2184
2201
 
2185
2202
 
2203
+
2186
2204
  We know what type
2187
2205
  they return and they
2188
2206
  should be explicitly
@@ -2229,6 +2247,7 @@
2229
2247
 
2230
2248
 
2231
2249
 
2250
+
2232
2251
  Update
2233
2252
  @balena/sbvr-types
2234
2253
  from 3.4.18 to 3.5.0
@@ -2386,6 +2405,7 @@
2386
2405
 
2387
2406
 
2388
2407
 
2408
+
2389
2409
  This also deprecates
2390
2410
  the legacy use of
2391
2411
  direct true/false
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
+ # v19.5.5
8
+ ## (2024-11-11)
9
+
10
+ * Run tests on UTC TZ [Otavio Jacobi]
11
+
7
12
  # v19.5.4
8
13
  ## (2024-10-28)
9
14
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 19.5.4
1
+ 19.5.5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/pinejs",
3
- "version": "19.5.4",
3
+ "version": "19.5.5-build-run-tests-on-utc-726c1ea0a2e144f9e2a6fe7fda19856b895a4aed-1",
4
4
  "main": "out/server-glue/module",
5
5
  "type": "commonjs",
6
6
  "repository": "git@github.com:balena-io/pinejs.git",
@@ -20,7 +20,7 @@
20
20
  "webpack-build": "npm run webpack-browser && npm run webpack-module && npm run webpack-server",
21
21
  "lint": "balena-lint -t tsconfig.dev.json -e js -e ts src build typings Gruntfile.ts && npx tsc --project tsconfig.dev.json --noEmit",
22
22
  "test": "npm run lint && npm run build && npm run webpack-build && npm run test:compose && npm run test:generated-types",
23
- "test:compose": "trap 'docker compose -f docker-compose.npm-test.yml down ; echo Stopped ; exit 0' INT; docker compose -f docker-compose.npm-test.yml up -d && sleep 2 && DATABASE_URL=postgres://docker:docker@localhost:5431/postgres PINEJS_WEBRESOURCE_MAXFILESIZE=1000000000 S3_ENDPOINT=http://localhost:43680 S3_ACCESS_KEY=USERNAME S3_SECRET_KEY=PASSWORD S3_STORAGE_ADAPTER_BUCKET=balena-pine-web-resources S3_REGION=us-east-1 PINEJS_QUEUE_CONCURRENCY=1 npm run mocha",
23
+ "test:compose": "trap 'docker compose -f docker-compose.npm-test.yml down ; echo Stopped ; exit 0' INT; docker compose -f docker-compose.npm-test.yml up -d && sleep 2 && DATABASE_URL=postgres://docker:docker@localhost:5431/postgres PINEJS_WEBRESOURCE_MAXFILESIZE=1000000000 S3_ENDPOINT=http://localhost:43680 S3_ACCESS_KEY=USERNAME S3_SECRET_KEY=PASSWORD S3_STORAGE_ADAPTER_BUCKET=balena-pine-web-resources S3_REGION=us-east-1 PINEJS_QUEUE_CONCURRENCY=1 TZ=UTC npm run mocha",
24
24
  "test:generated-types": "npm run generate-types && git diff --exit-code ./src/sbvr-api/user.ts ./src/migrator/migrations.ts ./src/sbvr-api/dev.ts",
25
25
  "mocha": "TS_NODE_FILES=true mocha",
26
26
  "lint-fix": "balena-lint -t tsconfig.dev.json -e js -e ts --fix src test build typings Gruntfile.ts",
@@ -147,6 +147,6 @@
147
147
  "recursive": true
148
148
  },
149
149
  "versionist": {
150
- "publishedAt": "2024-10-28T14:14:10.820Z"
150
+ "publishedAt": "2024-11-11T22:31:13.971Z"
151
151
  }
152
152
  }