@balena/pinejs 14.49.2 → 14.49.5

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,21 @@
1
+ name: Flowzone
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, synchronize, closed]
6
+ branches:
7
+ - "main"
8
+ - "master"
9
+
10
+ jobs:
11
+ flowzone:
12
+ name: Flowzone
13
+ uses: product-os/flowzone/.github/workflows/flowzone.yml@master
14
+ secrets:
15
+ FLOWZONE_TOKEN: ${{ secrets.FLOWZONE_TOKEN }}
16
+ GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
17
+ GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
18
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
19
+ DOCKERHUB_USER: ${{ secrets.DOCKER_REGISTRY_USER }}
20
+ DOCKERHUB_TOKEN: ${{ secrets.DOCKER_REGISTRY_PASS }}
21
+ BALENA_API_KEY: ${{ secrets.BALENA_API_KEY }}
package/.resinci.yml CHANGED
@@ -1,18 +1 @@
1
- reviewers: 1
2
- docker:
3
- builds:
4
- - path: .
5
- dockerfile: Dockerfile
6
- docker_repo: balena/pinejs-sut
7
- publish: false
8
- npm:
9
- run: true
10
- platforms:
11
- - name: linux
12
- os: alpine
13
- architecture: x86_64
14
- node_versions:
15
- - "12"
16
- - "14"
17
- - "16"
18
- - "18"
1
+ disabled: true
@@ -1,3 +1,43 @@
1
+ - commits:
2
+ - subject: Enable flowzone branch protection
3
+ hash: 4b7913a412b84d3db297dfec5f0a18406dd7946c
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ nested: []
10
+ version: 14.49.5
11
+ title: ""
12
+ date: 2022-09-08T11:55:39.940Z
13
+ - commits:
14
+ - subject: Remove prepublishOnly lint step
15
+ hash: 07dea6a510d84954ff6dcaedf2b4731137fcc5bd
16
+ body: |
17
+ It is already run as part of the tests which are required by CI before
18
+ it'll publish, and avoids issues when publishing without dev deps
19
+ footer:
20
+ Change-type: patch
21
+ change-type: patch
22
+ author: Pagan Gazzard
23
+ nested: []
24
+ version: 14.49.4
25
+ title: ""
26
+ date: 2022-09-08T10:59:51.840Z
27
+ - commits:
28
+ - subject: Replace balena ci with flowzone
29
+ hash: 8b7ef6e75ee2f27fffed23c508148a5a9061afb2
30
+ body: ""
31
+ footer:
32
+ Change-type: patch
33
+ change-type: patch
34
+ Signed-off-by: fisehara <harald@balena.io>
35
+ signed-off-by: fisehara <harald@balena.io>
36
+ author: fisehara
37
+ nested: []
38
+ version: 14.49.3
39
+ title: ""
40
+ date: 2022-09-08T10:38:53.110Z
1
41
  - commits:
2
42
  - subject: Fixing issue reported by tsc 4.8.2
3
43
  hash: 57b05baa09718525b4e0e85c99b2c6c8c5b387ae
@@ -17,7 +57,7 @@
17
57
  nested: []
18
58
  version: 14.49.2
19
59
  title: "'Fixing issue reported by tsc 4.8.2'"
20
- date: 2022-08-26T12:14:07.410Z
60
+ date: 2022-08-26T11:33:52.884Z
21
61
  - commits:
22
62
  - subject: Lazily define read-only hook args to avoid doing so unnecessarily
23
63
  hash: 56eef2eb82ab4f0b2aa436e8b126d0013df7a790
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ 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
+ # v14.49.5
8
+ ## (2022-09-08)
9
+
10
+ * Enable flowzone branch protection [Pagan Gazzard]
11
+
12
+ # v14.49.4
13
+ ## (2022-09-08)
14
+
15
+ * Remove prepublishOnly lint step [Pagan Gazzard]
16
+
17
+ # v14.49.3
18
+ ## (2022-09-08)
19
+
20
+ * Replace balena ci with flowzone [fisehara]
21
+
7
22
  # v14.49.2
8
23
  ## (2022-08-26)
9
24
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 14.49.2
1
+ 14.49.5
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/pinejs",
3
- "version": "14.49.2",
3
+ "version": "14.49.5",
4
4
  "main": "out/server-glue/module",
5
5
  "repository": "git@github.com:balena-io/pinejs.git",
6
6
  "license": "Apache-2.0",
@@ -11,7 +11,6 @@
11
11
  },
12
12
  "scripts": {
13
13
  "prepublish": "require-npm4-to-publish",
14
- "prepublishOnly": "npm run lint",
15
14
  "prepare": "npm run build",
16
15
  "build": "grunt build",
17
16
  "webpack-browser": "grunt browser",
@@ -136,14 +135,12 @@
136
135
  "extension": [
137
136
  ".test.ts"
138
137
  ],
139
- "require": [
140
- "ts-node/register"
141
- ],
138
+ "require": "ts-node/register/transpile-only",
142
139
  "exit": true,
143
140
  "timeout": 60000,
144
141
  "recursive": true
145
142
  },
146
143
  "versionist": {
147
- "publishedAt": "2022-08-26T12:14:07.875Z"
144
+ "publishedAt": "2022-09-08T11:55:40.578Z"
148
145
  }
149
146
  }
package/source.tar ADDED
Binary file