@balena/pinejs 16.1.0 → 16.1.1-build-renovate-major--balenalint-02ba2563aa4ac82ad90accc30534f744c00a0c16-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.
- package/.pinejs-cache.json +1 -1
- package/.versionbot/CHANGELOG.yml +14 -1
- package/CHANGELOG.md +5 -0
- package/VERSION +1 -1
- package/out/sbvr-api/control-flow.d.ts +2 -2
- package/out/server-glue/module.d.ts +0 -1
- package/package.json +3 -3
@@ -1,3 +1,16 @@
|
|
1
|
+
- commits:
|
2
|
+
- subject: Update dependency @balena/lint to v8
|
3
|
+
hash: 02ba2563aa4ac82ad90accc30534f744c00a0c16
|
4
|
+
body: |
|
5
|
+
Update @balena/lint from 7.3.0 to 8.0.0
|
6
|
+
footer:
|
7
|
+
Change-type: patch
|
8
|
+
change-type: patch
|
9
|
+
author: Self-hosted Renovate Bot
|
10
|
+
nested: []
|
11
|
+
version: 16.1.1
|
12
|
+
title: ""
|
13
|
+
date: 2024-04-10T23:58:20.904Z
|
1
14
|
- commits:
|
2
15
|
- subject: Add support for prettifying index constraint errors with their
|
3
16
|
description
|
@@ -144,7 +157,7 @@
|
|
144
157
|
date: 2024-03-05T19:12:37.779Z
|
145
158
|
version: 16.1.0
|
146
159
|
title: ""
|
147
|
-
date: 2024-04-
|
160
|
+
date: 2024-04-02T15:33:20.424Z
|
148
161
|
- commits:
|
149
162
|
- subject: Replace `docker-compose` commands with `docker compose`
|
150
163
|
hash: cee8cd7c503f656125d8d8603c0ad28dc1a848f9
|
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
|
+
# v16.1.1
|
8
|
+
## (2024-04-10)
|
9
|
+
|
10
|
+
* Update dependency @balena/lint to v8 [Self-hosted Renovate Bot]
|
11
|
+
|
7
12
|
# v16.1.0
|
8
13
|
## (2024-04-02)
|
9
14
|
|
package/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
16.1.
|
1
|
+
16.1.1
|
@@ -4,9 +4,9 @@ export type MappingFunction = <T, U>(a: T[], fn: (v: T) => Resolvable<U>) => Pro
|
|
4
4
|
export declare const mapSeries: <T, U>(a: T[], fn: (v: T) => Resolvable<U>) => Promise<U[]>;
|
5
5
|
export declare const settleMapSeries: MappingFunction;
|
6
6
|
export declare const getMappingFn: (headers?: {
|
7
|
+
prefer?: string | string[];
|
7
8
|
[key: string]: string | string[] | undefined;
|
8
|
-
|
9
|
-
} | undefined) => MappingFunction;
|
9
|
+
}) => MappingFunction;
|
10
10
|
export declare const delay: (ms: number) => Promise<void>;
|
11
11
|
export declare const fromCallback: <T>(resolver: (callback: (err: any, result?: T) => void) => void) => Promise<T>;
|
12
12
|
export declare class TimeoutError extends TypedError {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@balena/pinejs",
|
3
|
-
"version": "16.1.
|
3
|
+
"version": "16.1.1-build-renovate-major--balenalint-02ba2563aa4ac82ad90accc30534f744c00a0c16-1",
|
4
4
|
"main": "out/server-glue/module",
|
5
5
|
"type": "commonjs",
|
6
6
|
"repository": "git@github.com:balena-io/pinejs.git",
|
@@ -63,7 +63,7 @@
|
|
63
63
|
"typed-error": "^3.2.2"
|
64
64
|
},
|
65
65
|
"devDependencies": {
|
66
|
-
"@balena/lint": "^
|
66
|
+
"@balena/lint": "^8.0.0",
|
67
67
|
"@faker-js/faker": "^8.3.1",
|
68
68
|
"@types/busboy": "^1.5.3",
|
69
69
|
"@types/chai": "^4.3.11",
|
@@ -144,6 +144,6 @@
|
|
144
144
|
"recursive": true
|
145
145
|
},
|
146
146
|
"versionist": {
|
147
|
-
"publishedAt": "2024-04-
|
147
|
+
"publishedAt": "2024-04-10T23:58:21.576Z"
|
148
148
|
}
|
149
149
|
}
|