@toptal/davinci-qa 19.1.0 → 19.2.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.
- package/CHANGELOG.md +14 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 19.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2681](https://github.com/toptal/davinci/pull/2681) [`9d2eb38`](https://github.com/toptal/davinci/commit/9d2eb382eb19adaa4d5ac81a9491af52dd592fff) Thanks [@denieler](https://github.com/denieler)!
|
|
8
|
+
Upgrade `webpack-dev-server` to v5
|
|
9
|
+
Breaking changes:
|
|
10
|
+
- bump `webpack-dev-server` from `^4.15.1` to `^5.2.0` in `@toptal/davinci-engine`. Options removed in v5 can no longer be passed to `davinci-engine start`, either through the `devServer` key of a project's webpack config or as CLI passthrough options. Most notably: `https` and `http2` (use `server`), `onBeforeSetupMiddleware` and `onAfterSetupMiddleware` (use `setupMiddlewares`), `magicHtml`, and `client.overlay.runtimeErrors` now defaults to `true`. See the [webpack-dev-server v5 migration guide](https://github.com/webpack/webpack-dev-server/blob/master/migration-v5.md) for the full list.
|
|
11
|
+
- the `--https` flag of `davinci-engine start` is unaffected — it is translated to `server: 'https'`, which is the v5 API.
|
|
12
|
+
Internal changes:
|
|
13
|
+
- pin `@peculiar/asn1-schema` to `^2.8.0` via a root pnpm override. `webpack-dev-server` v5 generates its self-signed HTTPS certificate through `selfsigned` v5, which uses `@peculiar/x509`. The lockfile resolved two copies of `@peculiar/asn1-schema` (2.6.0 for `@peculiar/x509`, 2.8.0 for `@peculiar/asn1-x509`), and because ASN.1 schemas are registered in a module-level registry by decorators, the two instances could not see each other's registrations — `davinci-engine start --https` failed with `Cannot get schema for 'BasicConstraints' target`. Every consumer in the tree accepts `^2.8.0`, so the override deduplicates them.
|
|
14
|
+
- widen the `@toptal/davinci-engine` peerDependency range in `@toptal/davinci-qa` from `3 - 15` to `3 - 16` to accept the new engine major.
|
|
15
|
+
|
|
3
16
|
## 19.1.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -16,7 +29,7 @@
|
|
|
16
29
|
- drop formatting rules removed in @typescript-eslint v8 (`space-before-function-paren`, `comma-dangle`, `func-call-spacing`, `member-delimiter-style`) — formatting is now deferred to Prettier, which the config already extends.
|
|
17
30
|
- rename `@typescript-eslint/no-var-requires` → `@typescript-eslint/no-require-imports` (renamed in v8).
|
|
18
31
|
- replace `@typescript-eslint/ban-types` with the v8 split rules (`no-empty-object-type`, `no-unsafe-function-type`, `no-wrapper-object-types`); previous allowances for `{}`, `Function`, and `object` are preserved.
|
|
19
|
-
|
|
32
|
+
Internal changes:
|
|
20
33
|
- bump `ts-jest` from `^29.1.2` to `^29.2.0`.
|
|
21
34
|
- bump `@types/jest` from `^28.1.1` to `^29.5.0`.
|
|
22
35
|
- set `declaration: false` in `cli-shared`, `qa`, and `storybook` tsconfig.json — these packages ship raw `.js` source and have never emitted `.d.ts` for distribution; the declaration-emit safety check no longer runs in a void.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-qa",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.2.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"qa",
|
|
6
6
|
"testing"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"mocha": "^10.2.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
|
-
"@toptal/davinci-engine": "3 -
|
|
77
|
+
"@toptal/davinci-engine": "3 - 16",
|
|
78
78
|
"cypress": "12 || 13"
|
|
79
79
|
},
|
|
80
80
|
"publishConfig": {
|