@squiz/db-lib 1.5.1-alpha.3 → 1.7.0-alpha.3

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.6.0](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.5.1-alpha.4...v1.6.0) (2023-02-01)
7
+
8
+ **Note:** Version bump only for package @squiz/db-lib
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.5.1-alpha.4](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.3.3...v1.5.1-alpha.4) (2023-01-31)
15
+
16
+ **Note:** Version bump only for package @squiz/db-lib
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.5.1-alpha.3](https://gitlab.squiz.net/developer-experience/cmp/compare/v1.3.3...v1.5.1-alpha.3) (2023-01-31)
7
23
 
8
24
  **Note:** Version bump only for package @squiz/db-lib
package/jest.config.ts CHANGED
@@ -6,6 +6,7 @@ configFunc();
6
6
  // Sync object
7
7
  const config: Config = {
8
8
  preset: 'ts-jest',
9
+ testTimeout: 60_000,
9
10
  testEnvironment: 'node',
10
11
  testPathIgnorePatterns: ['<rootDir>/lib/'],
11
12
  maxWorkers: '80%',
package/lib/index.js CHANGED
@@ -15651,7 +15651,7 @@ var require_formatters = __commonJS({
15651
15651
  }
15652
15652
  exports.getJsonFormat = getJsonFormat;
15653
15653
  exports.errorFormatting = winston_1.default.format.printf((info) => {
15654
- let message = `${info.timestamp} ${info.level}: ${info.stack || info.message}`;
15654
+ const message = `${info.timestamp} ${info.level}: ${info.stack || info.message}`;
15655
15655
  return message;
15656
15656
  });
15657
15657
  function getHumanFormat() {