@balena/pinejs 16.1.0 → 16.1.1-build-renovate-major-husky-a74e31500a0f572fc87a85ec437a55bd22bd2975-1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,24 @@
1
+ - commits:
2
+ - subject: Update prepare script for husky v9
3
+ hash: a74e31500a0f572fc87a85ec437a55bd22bd2975
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Josh Bowling
9
+ nested: []
10
+ - subject: Update dependency husky to v9
11
+ hash: a8eb6999e57e14444132f22fe9ed427813fb44f8
12
+ body: |
13
+ Update husky from 8.0.3 to 9.0.11
14
+ footer:
15
+ Change-type: patch
16
+ change-type: patch
17
+ author: Self-hosted Renovate Bot
18
+ nested: []
19
+ version: 16.1.1
20
+ title: ""
21
+ date: 2024-04-09T01:55:37.171Z
1
22
  - commits:
2
23
  - subject: Add support for prettifying index constraint errors with their
3
24
  description
@@ -144,7 +165,7 @@
144
165
  date: 2024-03-05T19:12:37.779Z
145
166
  version: 16.1.0
146
167
  title: ""
147
- date: 2024-04-02T14:35:32.798Z
168
+ date: 2024-04-02T15:33:20.424Z
148
169
  - commits:
149
170
  - subject: Replace `docker-compose` commands with `docker compose`
150
171
  hash: cee8cd7c503f656125d8d8603c0ad28dc1a848f9
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ 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-09)
9
+
10
+ * Update prepare script for husky v9 [Josh Bowling]
11
+ * Update dependency husky to v9 [Self-hosted Renovate Bot]
12
+
7
13
  # v16.1.0
8
14
  ## (2024-04-02)
9
15
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 16.1.0
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
- prefer?: string | string[] | undefined;
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 {
@@ -1,4 +1,3 @@
1
- /// <reference types="mocha" />
2
1
  import type * as Express from 'express';
3
2
  import './sbvr-loader';
4
3
  import * as dbModule from '../database-layer/db';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balena/pinejs",
3
- "version": "16.1.0",
3
+ "version": "16.1.1-build-renovate-major-husky-a74e31500a0f572fc87a85ec437a55bd22bd2975-1",
4
4
  "main": "out/server-glue/module",
5
5
  "type": "commonjs",
6
6
  "repository": "git@github.com:balena-io/pinejs.git",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "scripts": {
14
14
  "prepublish": "require-npm4-to-publish",
15
- "prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\" && npm run build",
15
+ "prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module && npm run build",
16
16
  "build": "grunt build",
17
17
  "webpack-browser": "grunt browser",
18
18
  "webpack-module": "grunt module",
@@ -88,7 +88,7 @@
88
88
  "grunt-text-replace": "^0.4.0",
89
89
  "grunt-ts": "^6.0.0-beta.22",
90
90
  "grunt-webpack": "^6.0.0",
91
- "husky": "^8.0.3",
91
+ "husky": "^9.0.0",
92
92
  "lint-staged": "^15.2.0",
93
93
  "load-grunt-tasks": "^5.1.0",
94
94
  "mocha": "^10.2.0",
@@ -144,6 +144,6 @@
144
144
  "recursive": true
145
145
  },
146
146
  "versionist": {
147
- "publishedAt": "2024-04-02T14:35:34.142Z"
147
+ "publishedAt": "2024-04-09T01:55:37.889Z"
148
148
  }
149
149
  }