fetch-har 8.0.0 → 8.0.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/CHANGELOG.md +12 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## <small>8.0.1 (2022-05-03)</small>
|
|
2
|
+
|
|
3
|
+
* fix: making har-format types a regular dep ([93dcb7d](https://github.com/readmeio/fetch-har/commit/93dcb7d))
|
|
4
|
+
* chore: don't remove a `@types/` directory that we aren't using ([c915fae](https://github.com/readmeio/fetch-har/commit/c915fae))
|
|
5
|
+
* chore(deps-dev): bump @types/node from 17.0.29 to 17.0.30 (#269) ([e6f62f3](https://github.com/readmeio/fetch-har/commit/e6f62f3)), closes [#269](https://github.com/readmeio/fetch-har/issues/269)
|
|
6
|
+
* chore(deps-dev): bump ts-loader from 7.0.5 to 9.3.0 (#268) ([34877c5](https://github.com/readmeio/fetch-har/commit/34877c5)), closes [#268](https://github.com/readmeio/fetch-har/issues/268)
|
|
7
|
+
* chore(deps-dev): bump typescript from 4.6.3 to 4.6.4 (#267) ([826dcac](https://github.com/readmeio/fetch-har/commit/826dcac)), closes [#267](https://github.com/readmeio/fetch-har/issues/267)
|
|
8
|
+
* chore(deps): bump actions/cache from 3.0.1 to 3.0.2 (#270) ([55e45a6](https://github.com/readmeio/fetch-har/commit/55e45a6)), closes [#270](https://github.com/readmeio/fetch-har/issues/270)
|
|
9
|
+
* chore(deps): bump github/codeql-action from 1 to 2 (#271) ([e29ddce](https://github.com/readmeio/fetch-har/commit/e29ddce)), closes [#271](https://github.com/readmeio/fetch-har/issues/271)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## 8.0.0 (2022-04-28)
|
|
2
14
|
|
|
3
15
|
> **BREAKING CHANGE**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fetch-har",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Make a fetch request from a HAR definition",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://github.com/readmeio/fetch-har#readme",
|
|
32
32
|
"dependencies": {
|
|
33
|
+
"@types/har-format": "^1.2.8",
|
|
33
34
|
"parse-data-url": "^4.0.1",
|
|
34
35
|
"readable-stream": "^3.6.0"
|
|
35
36
|
},
|
|
@@ -41,7 +42,6 @@
|
|
|
41
42
|
"@jsdevtools/karma-config": "^3.1.7",
|
|
42
43
|
"@readme/eslint-config": "^8.7.3",
|
|
43
44
|
"@types/chai": "^4.3.1",
|
|
44
|
-
"@types/har-format": "^1.2.8",
|
|
45
45
|
"@types/mocha": "^9.1.1",
|
|
46
46
|
"@types/node": "^17.0.29",
|
|
47
47
|
"@types/parse-data-url": "^3.0.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"node-fetch": "^2.6.0",
|
|
60
60
|
"nyc": "^15.1.0",
|
|
61
61
|
"prettier": "^2.6.2",
|
|
62
|
-
"ts-loader": "^
|
|
62
|
+
"ts-loader": "^9.3.0",
|
|
63
63
|
"ts-node": "^10.7.0",
|
|
64
64
|
"typescript": "^4.6.3",
|
|
65
65
|
"undici": "^5.0.0"
|