@balena/pinejs 19.6.0-build-experiment-generated-typings-4b8e0074867bf1874b190c1aaef9d8ac6aad9965-1 → 19.6.0

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,6 +1,6 @@
1
1
  - commits:
2
2
  - subject: Infer async task fn callback arguments typing from schema
3
- hash: 4b8e0074867bf1874b190c1aaef9d8ac6aad9965
3
+ hash: 377a7c25118b9853f23cc8fdd1a2bf3d093ad1b1
4
4
  body: ""
5
5
  footer:
6
6
  Change-type: minor
@@ -9,7 +9,19 @@
9
9
  nested: []
10
10
  version: 19.6.0
11
11
  title: ""
12
- date: 2024-11-20T19:11:44.365Z
12
+ date: 2024-11-21T11:22:50.720Z
13
+ - commits:
14
+ - subject: Run tests on UTC timezone
15
+ hash: ccf628b9716d281023b4bc88a6227c2f65cd6235
16
+ body: ""
17
+ footer:
18
+ Change-type: patch
19
+ change-type: patch
20
+ author: Otavio Jacobi
21
+ nested: []
22
+ version: 19.5.5
23
+ title: ""
24
+ date: 2024-11-21T07:57:52.346Z
13
25
  - commits:
14
26
  - subject: Fix async tasks race condition for selecting task to be executed
15
27
  hash: 97936ec9a2b3f5179a9088b6ae3fac14537ed378
@@ -1905,6 +1917,7 @@
1905
1917
 
1906
1918
 
1907
1919
 
1920
+
1908
1921
  As balena-lint
1909
1922
  rejects `new
1910
1923
  Boolean()`, `new
@@ -1940,6 +1953,7 @@
1940
1953
 
1941
1954
 
1942
1955
 
1956
+
1943
1957
  As engine and npm is
1944
1958
  now required as part
1945
1959
  of package.json we
@@ -1990,6 +2004,7 @@
1990
2004
 
1991
2005
 
1992
2006
 
2007
+
1993
2008
  Ensure that the
1994
2009
  input passed in for
1995
2010
  JSON types is either
@@ -2103,6 +2118,7 @@
2103
2118
 
2104
2119
 
2105
2120
 
2121
+
2106
2122
  This also deprecates
2107
2123
  the legacy version
2108
2124
  footer:
@@ -2144,6 +2160,7 @@
2144
2160
 
2145
2161
 
2146
2162
 
2163
+
2147
2164
  It can in fact be a
2148
2165
  lot of different
2149
2166
  things and that is
@@ -2186,6 +2203,7 @@
2186
2203
 
2187
2204
 
2188
2205
 
2206
+
2189
2207
  We know what type
2190
2208
  they return and they
2191
2209
  should be explicitly
@@ -2233,6 +2251,7 @@
2233
2251
 
2234
2252
 
2235
2253
 
2254
+
2236
2255
  Update
2237
2256
  @balena/sbvr-types
2238
2257
  from 3.4.18 to 3.5.0
@@ -2391,6 +2410,7 @@
2391
2410
 
2392
2411
 
2393
2412
 
2413
+
2394
2414
  This also deprecates
2395
2415
  the legacy use of
2396
2416
  direct true/false
package/CHANGELOG.md CHANGED
@@ -5,10 +5,15 @@ automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
5
5
  This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
7
  # v19.6.0
8
- ## (2024-11-20)
8
+ ## (2024-11-21)
9
9
 
10
10
  * Infer async task fn callback arguments typing from schema [Otavio Jacobi]
11
11
 
12
+ # v19.5.5
13
+ ## (2024-11-21)
14
+
15
+ * Run tests on UTC timezone [Otavio Jacobi]
16
+
12
17
  # v19.5.4
13
18
  ## (2024-10-28)
14
19
 
@@ -6,6 +6,7 @@ services:
6
6
  POSTGRES_USER: docker
7
7
  POSTGRES_PASSWORD: docker
8
8
  POSTGRES_DB: postgres
9
+ TZ: UTC
9
10
  ports:
10
11
  - "5431:5432"
11
12
  minio-server:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/pinejs",
3
- "version": "19.6.0-build-experiment-generated-typings-4b8e0074867bf1874b190c1aaef9d8ac6aad9965-1",
3
+ "version": "19.6.0",
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-11-20T19:11:45.270Z"
150
+ "publishedAt": "2024-11-21T11:22:51.625Z"
151
151
  }
152
152
  }