keq 5.0.0-alpha.6 → 5.0.0-alpha.8
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 +193 -240
- package/dist/context/execution-context.d.ts +24 -0
- package/dist/context/execution-context.d.ts.map +1 -0
- package/dist/context/index.d.ts +4 -0
- package/dist/context/index.d.ts.map +1 -0
- package/dist/context/middleware-context.d.ts +9 -0
- package/dist/context/middleware-context.d.ts.map +1 -0
- package/dist/context/orchestrator-context.d.ts +10 -0
- package/dist/context/orchestrator-context.d.ts.map +1 -0
- package/dist/context/shared-context.d.ts +38 -0
- package/dist/context/shared-context.d.ts.map +1 -0
- package/dist/context/types/index.d.ts +6 -0
- package/dist/context/types/index.d.ts.map +1 -0
- package/dist/context/types/keq-context-data.d.ts +7 -0
- package/dist/context/types/keq-context-data.d.ts.map +1 -0
- package/dist/context/types/keq-context-emitter.d.ts +35 -0
- package/dist/context/types/keq-context-emitter.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/index.d.ts +6 -0
- package/dist/context/types/keq-context-options/index.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/keq-context-options.d.ts +5 -0
- package/dist/context/types/keq-context-options/keq-context-options.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/keq-middleware-options.d.ts +33 -0
- package/dist/context/types/keq-context-options/keq-middleware-options.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/keq-module-options.d.ts +5 -0
- package/dist/context/types/keq-context-options/keq-module-options.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/keq-resolve-with-mode.d.ts +2 -0
- package/dist/context/types/keq-context-options/keq-resolve-with-mode.d.ts.map +1 -0
- package/dist/context/types/keq-context-options/keq-retry-options.d.ts +9 -0
- package/dist/context/types/keq-context-options/keq-retry-options.d.ts.map +1 -0
- package/dist/context/types/keq-context.d.ts +17 -0
- package/dist/context/types/keq-context.d.ts.map +1 -0
- package/dist/{src → context}/types/keq-global.d.ts +2 -1
- package/dist/context/types/keq-global.d.ts.map +1 -0
- package/dist/context/utils/index.d.ts +2 -0
- package/dist/context/utils/index.d.ts.map +1 -0
- package/dist/context/utils/watch-object.d.ts +5 -0
- package/dist/context/utils/watch-object.d.ts.map +1 -0
- package/dist/exception/abort.exception.d.ts +4 -0
- package/dist/exception/abort.exception.d.ts.map +1 -0
- package/dist/{src/exception → exception}/exception.d.ts +1 -0
- package/dist/exception/exception.d.ts.map +1 -0
- package/dist/exception/index.d.ts +6 -0
- package/dist/exception/index.d.ts.map +1 -0
- package/dist/exception/request.exception.d.ts +7 -0
- package/dist/exception/request.exception.d.ts.map +1 -0
- package/dist/exception/timeout.exception.d.ts +5 -0
- package/dist/exception/timeout.exception.d.ts.map +1 -0
- package/dist/exception/type.exception.d.ts +5 -0
- package/dist/exception/type.exception.d.ts.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1496 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1439 -0
- package/dist/index.mjs.map +1 -0
- package/dist/middleware/index.d.ts +3 -0
- package/dist/middleware/index.d.ts.map +1 -0
- package/dist/middleware/types/index.d.ts +3 -0
- package/dist/middleware/types/index.d.ts.map +1 -0
- package/dist/middleware/types/keq-middleware.d.ts +7 -0
- package/dist/middleware/types/keq-middleware.d.ts.map +1 -0
- package/dist/{src → middleware}/types/keq-next.d.ts +1 -0
- package/dist/middleware/types/keq-next.d.ts.map +1 -0
- package/dist/middleware/utils/compose-middleware.d.ts +7 -0
- package/dist/middleware/utils/compose-middleware.d.ts.map +1 -0
- package/dist/middleware/utils/index.d.ts +2 -0
- package/dist/middleware/utils/index.d.ts.map +1 -0
- package/dist/middlewares/fetch-middleware/index.d.ts +6 -0
- package/dist/middlewares/fetch-middleware/index.d.ts.map +1 -0
- package/dist/middlewares/flow-control-middleware/abort-flow-control-middleware.d.ts +3 -0
- package/dist/middlewares/flow-control-middleware/abort-flow-control-middleware.d.ts.map +1 -0
- package/dist/middlewares/flow-control-middleware/index.d.ts +4 -0
- package/dist/middlewares/flow-control-middleware/index.d.ts.map +1 -0
- package/dist/middlewares/flow-control-middleware/serial-flow-control-middleware.d.ts +3 -0
- package/dist/middlewares/flow-control-middleware/serial-flow-control-middleware.d.ts.map +1 -0
- package/dist/middlewares/flow-control-middleware/types/keq-flow-control.d.ts +8 -0
- package/dist/middlewares/flow-control-middleware/types/keq-flow-control.d.ts.map +1 -0
- package/dist/middlewares/index.d.ts +4 -0
- package/dist/middlewares/index.d.ts.map +1 -0
- package/dist/middlewares/timeout-middleware/index.d.ts +6 -0
- package/dist/middlewares/timeout-middleware/index.d.ts.map +1 -0
- package/dist/orchestrator/executor.d.ts +12 -0
- package/dist/orchestrator/executor.d.ts.map +1 -0
- package/dist/orchestrator/index.d.ts +3 -0
- package/dist/orchestrator/index.d.ts.map +1 -0
- package/dist/orchestrator/orchestrator.d.ts +13 -0
- package/dist/orchestrator/orchestrator.d.ts.map +1 -0
- package/dist/orchestrator/types/keq-middleware-context.d.ts +4 -0
- package/dist/orchestrator/types/keq-middleware-context.d.ts.map +1 -0
- package/dist/request/core.d.ts +49 -0
- package/dist/request/core.d.ts.map +1 -0
- package/dist/request/create-request.d.ts +7 -0
- package/dist/request/create-request.d.ts.map +1 -0
- package/dist/request/index.d.ts +6 -0
- package/dist/request/index.d.ts.map +1 -0
- package/dist/request/keq.d.ts +115 -0
- package/dist/request/keq.d.ts.map +1 -0
- package/dist/request/request.d.ts +74 -0
- package/dist/request/request.d.ts.map +1 -0
- package/dist/request/types/api-schema/api-schema-select.d.ts +42 -0
- package/dist/request/types/api-schema/api-schema-select.d.ts.map +1 -0
- package/dist/request/types/api-schema/api-schema.d.ts +8 -0
- package/dist/request/types/api-schema/api-schema.d.ts.map +1 -0
- package/dist/request/types/api-schema/default-operation.d.ts +18 -0
- package/dist/request/types/api-schema/default-operation.d.ts.map +1 -0
- package/dist/request/types/api-schema/extract-method-operations.d.ts +31 -0
- package/dist/request/types/api-schema/extract-method-operations.d.ts.map +1 -0
- package/dist/request/types/api-schema/index.d.ts +6 -0
- package/dist/request/types/api-schema/index.d.ts.map +1 -0
- package/dist/request/types/api-schema/operation.d.ts +16 -0
- package/dist/request/types/api-schema/operation.d.ts.map +1 -0
- package/dist/{src → request}/types/content-type.d.ts +1 -0
- package/dist/request/types/content-type.d.ts.map +1 -0
- package/dist/request/types/index.d.ts +7 -0
- package/dist/request/types/index.d.ts.map +1 -0
- package/dist/request/types/keq-attachable-file.d.ts +2 -0
- package/dist/request/types/keq-attachable-file.d.ts.map +1 -0
- package/dist/request/types/keq-param-value.d.ts +3 -0
- package/dist/request/types/keq-param-value.d.ts.map +1 -0
- package/dist/request/types/keq-query-options.d.ts +7 -0
- package/dist/request/types/keq-query-options.d.ts.map +1 -0
- package/dist/request/types/keq-query-value.d.ts +7 -0
- package/dist/request/types/keq-query-value.d.ts.map +1 -0
- package/dist/{src/util → request/utils}/fix-content-type.d.ts +2 -1
- package/dist/request/utils/fix-content-type.d.ts.map +1 -0
- package/dist/request/utils/get-location-id.d.ts +2 -0
- package/dist/request/utils/get-location-id.d.ts.map +1 -0
- package/dist/request/utils/index.d.ts +6 -0
- package/dist/request/utils/index.d.ts.map +1 -0
- package/dist/request/utils/intelligent-parse-response.d.ts +2 -0
- package/dist/request/utils/intelligent-parse-response.d.ts.map +1 -0
- package/dist/request/utils/merge-keq-request-body.d.ts +3 -0
- package/dist/request/utils/merge-keq-request-body.d.ts.map +1 -0
- package/dist/request/utils/query-stringify.d.ts +3 -0
- package/dist/request/utils/query-stringify.d.ts.map +1 -0
- package/dist/request-init/index.d.ts +3 -0
- package/dist/request-init/index.d.ts.map +1 -0
- package/dist/request-init/request-init.d.ts +42 -0
- package/dist/request-init/request-init.d.ts.map +1 -0
- package/dist/request-init/types/index.d.ts +3 -0
- package/dist/request-init/types/index.d.ts.map +1 -0
- package/dist/request-init/types/keq-request-body.d.ts +2 -0
- package/dist/request-init/types/keq-request-body.d.ts.map +1 -0
- package/dist/request-init/types/keq-request-method.d.ts +2 -0
- package/dist/request-init/types/keq-request-method.d.ts.map +1 -0
- package/dist/{src/util → request-init/utils}/clone-body.d.ts +1 -0
- package/dist/request-init/utils/clone-body.d.ts.map +1 -0
- package/dist/request-init/utils/clone-headers.d.ts +2 -0
- package/dist/request-init/utils/clone-headers.d.ts.map +1 -0
- package/dist/request-init/utils/compile-url.d.ts +3 -0
- package/dist/request-init/utils/compile-url.d.ts.map +1 -0
- package/dist/request-init/utils/index.d.ts +6 -0
- package/dist/request-init/utils/index.d.ts.map +1 -0
- package/dist/request-init/utils/to-form-data.d.ts +2 -0
- package/dist/request-init/utils/to-form-data.d.ts.map +1 -0
- package/dist/request-init/utils/to-url-search-params.d.ts +2 -0
- package/dist/request-init/utils/to-url-search-params.d.ts.map +1 -0
- package/dist/router/index.d.ts +9 -0
- package/dist/router/index.d.ts.map +1 -0
- package/dist/router/keq-host-route.d.ts +3 -0
- package/dist/router/keq-host-route.d.ts.map +1 -0
- package/dist/router/keq-location-route.d.ts +3 -0
- package/dist/router/keq-location-route.d.ts.map +1 -0
- package/dist/router/keq-method-route.d.ts +3 -0
- package/dist/router/keq-method-route.d.ts.map +1 -0
- package/dist/router/keq-module-route.d.ts +3 -0
- package/dist/router/keq-module-route.d.ts.map +1 -0
- package/dist/router/keq-pathname-route.d.ts +3 -0
- package/dist/router/keq-pathname-route.d.ts.map +1 -0
- package/dist/{src/router → router}/keq-router.d.ts +5 -4
- package/dist/router/keq-router.d.ts.map +1 -0
- package/dist/router/types/index.d.ts +2 -0
- package/dist/router/types/index.d.ts.map +1 -0
- package/dist/router/types/keq-route.d.ts +3 -0
- package/dist/router/types/keq-route.d.ts.map +1 -0
- package/dist/{src/util → router/utils}/compose-route.d.ts +1 -0
- package/dist/router/utils/compose-route.d.ts.map +1 -0
- package/dist/router/utils/index.d.ts +2 -0
- package/dist/router/utils/index.d.ts.map +1 -0
- package/dist/types/enabled-if-string-index.d.ts +24 -0
- package/dist/types/enabled-if-string-index.d.ts.map +1 -0
- package/dist/types/exclude-unknown-properties.d.ts +19 -0
- package/dist/types/exclude-unknown-properties.d.ts.map +1 -0
- package/dist/types/index-keys.d.ts +18 -0
- package/dist/types/index-keys.d.ts.map +1 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/literal-keys.d.ts +18 -0
- package/dist/types/literal-keys.d.ts.map +1 -0
- package/dist/types/loose-nested-like.d.ts +11 -0
- package/dist/types/loose-nested-like.d.ts.map +1 -0
- package/dist/types/string-index-value-of.d.ts +18 -0
- package/dist/types/string-index-value-of.d.ts.map +1 -0
- package/dist/{src/util → utils}/base64.d.ts +1 -0
- package/dist/utils/base64.d.ts.map +1 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/{src/util → utils}/shallow-clone.d.ts +1 -0
- package/dist/utils/shallow-clone.d.ts.map +1 -0
- package/dist/utils/sleep.d.ts +2 -0
- package/dist/utils/sleep.d.ts.map +1 -0
- package/dist/validator/index.d.ts +2 -0
- package/dist/validator/index.d.ts.map +1 -0
- package/dist/validator/validator.d.ts +65 -0
- package/dist/validator/validator.d.ts.map +1 -0
- package/jest.browser.config.ts +22 -0
- package/jest.config.cts +22 -0
- package/package.json +21 -24
- package/dist/index.cjs.js +0 -1115
- package/dist/index.esm.js +0 -1082
- package/dist/package.json +0 -65
- package/dist/src/constant.d.ts +0 -2
- package/dist/src/core.d.ts +0 -36
- package/dist/src/create-request.d.ts +0 -9
- package/dist/src/exception/invalid-arguments.exception.d.ts +0 -4
- package/dist/src/index.d.ts +0 -23
- package/dist/src/is/is-array-buffer.d.ts +0 -1
- package/dist/src/is/is-blob.d.ts +0 -4
- package/dist/src/is/is-browser.d.ts +0 -1
- package/dist/src/is/is-buffer.d.ts +0 -1
- package/dist/src/is/is-file.d.ts +0 -1
- package/dist/src/is/is-form-data.d.ts +0 -1
- package/dist/src/is/is-function.d.ts +0 -1
- package/dist/src/is/is-headers.d.ts +0 -1
- package/dist/src/is/is-object.d.ts +0 -1
- package/dist/src/is/is-readable-stream.d.ts +0 -1
- package/dist/src/is/is-string.d.ts +0 -1
- package/dist/src/is/is-url-search-params.d.ts +0 -1
- package/dist/src/keq.d.ts +0 -93
- package/dist/src/middlewares/abort-flow-control-middleware.d.ts +0 -2
- package/dist/src/middlewares/fetch-arguments-middleware.d.ts +0 -2
- package/dist/src/middlewares/fetch-middleware.d.ts +0 -5
- package/dist/src/middlewares/proxy-response-middleware.d.ts +0 -2
- package/dist/src/middlewares/retry-middleware.d.ts +0 -2
- package/dist/src/middlewares/serial-flow-control-middleware.d.ts +0 -2
- package/dist/src/middlewares/timeout-middleware.d.ts +0 -2
- package/dist/src/request.d.ts +0 -1
- package/dist/src/router/keq-host-route.d.ts +0 -2
- package/dist/src/router/keq-location-route.d.ts +0 -2
- package/dist/src/router/keq-method-route.d.ts +0 -2
- package/dist/src/router/keq-module-route.d.ts +0 -2
- package/dist/src/router/keq-pathname-route.d.ts +0 -2
- package/dist/src/types/exclude-property.d.ts +0 -3
- package/dist/src/types/extract-property.d.ts +0 -3
- package/dist/src/types/keq-context-request.d.ts +0 -18
- package/dist/src/types/keq-context.d.ts +0 -62
- package/dist/src/types/keq-events.d.ts +0 -8
- package/dist/src/types/keq-flow-control.d.ts +0 -7
- package/dist/src/types/keq-init.d.ts +0 -2
- package/dist/src/types/keq-middleware.d.ts +0 -3
- package/dist/src/types/keq-operation.d.ts +0 -44
- package/dist/src/types/keq-options.d.ts +0 -55
- package/dist/src/types/keq-query-value.d.ts +0 -6
- package/dist/src/types/keq-request.d.ts +0 -32
- package/dist/src/types/keq-resolve-with-mode.d.ts +0 -1
- package/dist/src/types/keq-retry.d.ts +0 -3
- package/dist/src/types/keq-route.d.ts +0 -2
- package/dist/src/types/keq-timeout.d.ts +0 -3
- package/dist/src/util/compile-url.d.ts +0 -1
- package/dist/src/util/compose-middleware.d.ts +0 -2
- package/dist/src/util/create-response-proxy.d.ts +0 -1
- package/dist/src/util/get-unique-code-identifier.d.ts +0 -1
- package/dist/src/util/is-valid-header-value.d.ts +0 -1
- package/dist/src/util/merge-keq-request-body.d.ts +0 -2
- package/project.json +0 -16
- package/tsconfig.json +0 -28
- package/tsconfig.lib.json +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,66 @@
|
|
|
1
1
|
## 5.0.0-alpha.6 (2025-09-17)
|
|
2
2
|
|
|
3
|
+
## 5.0.0-alpha.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0873c7e: Incorrect build before release.
|
|
8
|
+
|
|
9
|
+
## 5.0.0-alpha.7
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- 153244f: **BREAKING CHANGE:** Add an options to control query serialization.
|
|
14
|
+
|
|
15
|
+
- `.query({ a: [1, 2]})` => `?a[0]=1&a[1]=2`
|
|
16
|
+
- `.query({ a: [1, 2]}, { arrayFormat: 'brackets' })` => `?a[]=1&a[]=2`(default in keq@2)
|
|
17
|
+
- `.query({ a: [1, 2]}, { arrayFormat: 'repeat' })` => `?a=1&a=2`
|
|
18
|
+
- `.query({ a: [1, 2]}, { arrayFormat: 'comma' })` => `?a=1,2`
|
|
19
|
+
|
|
20
|
+
- 153244f: **BREAKING CHANGE:** Prevent modification of the immutable properties of the context.
|
|
21
|
+
- 153244f: **BREAKING CHANGE:** `.params(key, value)` will not encode value automatically, please replace it with `.params(key, encodeURIComponent(value)`, if necessary.
|
|
22
|
+
- 153244f: **BREAKING CHANGE:** refactor event emitter. `fetch` event has been removed, please use `fetch:before`/`fetch:after` instead.
|
|
23
|
+
|
|
24
|
+
- add new function `.on(eventName, callback)` listen keq events
|
|
25
|
+
- add new event `fetch:before`
|
|
26
|
+
- add new event `fetch:after`
|
|
27
|
+
- add new event `middleware:before`
|
|
28
|
+
- add new event `middleware:after`
|
|
29
|
+
- add new event `timeout`
|
|
30
|
+
- add new event `abort`
|
|
31
|
+
- add new event `error`
|
|
32
|
+
- add new event `retry`
|
|
33
|
+
|
|
34
|
+
- 7ff2162: **BREAKING CHANGE:** Strictly adhere to URI template implementation (RFC 6570 compliant). Therefore, ':id' is no longer supported.
|
|
35
|
+
- 153244f: **BREAKING CHANGE:** change KeqRequest from interface to class.
|
|
36
|
+
|
|
37
|
+
- `request` cannot be invoke directly, please use `request.fetch()` instead.
|
|
38
|
+
- `KeqOptions` renamed to `KeqMiddlewareOptions`.
|
|
39
|
+
- `KeqOperations` renamed to `KeqApiSchema`.
|
|
40
|
+
- `KeqBaseOperation` renamed to `KeqDefaultOperation`.
|
|
41
|
+
|
|
42
|
+
- 153244f: **BREAKING CHANGE:** Refactoring keq middlewares
|
|
43
|
+
|
|
44
|
+
- `retryMiddleware`, `proxyResponseMiddleware`, `fetchArgumentMiddleware` be removed.
|
|
45
|
+
- `abortFlowControlMiddleware` and `serialFlowControlMiddleware` merged into `flowControlMiddleware`.
|
|
46
|
+
- `ctx.metadata` has been removed, please use `ctx.orchestrator` instead.
|
|
47
|
+
- `.retry()` will rerun all middlewares now, assert `ctx.data.retry.attempt` if middleware is not expect to be run.
|
|
48
|
+
- `ctx.options.retryOn`, `ctx.options.retryTimes` and `ctx.options.retryDelay` are replaced by `ctx.options.retry.on`, `ctx.options.retry.times` and `ctx.options.retry.delay`.
|
|
49
|
+
- `.option("resolveWithResponse")` had be removed, please use `.resolveWith('response')` instead.
|
|
50
|
+
- `next` cannot be run multi-times now.
|
|
51
|
+
- Some typescript type names have changed.
|
|
52
|
+
|
|
53
|
+
- 153244f: **BREAKING CHANGE:** Drop support node@18.
|
|
54
|
+
|
|
55
|
+
### Minor Changes
|
|
56
|
+
|
|
57
|
+
- 153244f: **Feat:** add `.headers` as an alias for `.set`
|
|
58
|
+
- 153244f: **Feat:** `.attach` can take multiple files.
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- 153244f: optimize code suggestions
|
|
63
|
+
|
|
3
64
|
This was a version bump only for keq to align it with other projects, there were no code changes.
|
|
4
65
|
|
|
5
66
|
## 5.0.0-alpha.5 (2025-09-17)
|
|
@@ -12,774 +73,666 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
12
73
|
|
|
13
74
|
## [2.8.11](https://github.com/keq-request/keq/compare/v2.8.10...v2.8.11) (2025-06-05)
|
|
14
75
|
|
|
15
|
-
|
|
16
76
|
### Bug Fixes
|
|
17
77
|
|
|
18
|
-
|
|
78
|
+
- ensure proper cleanup of abort flow control function ([fc5ad5e](https://github.com/keq-request/keq/commit/fc5ad5ea34a1fcbd83a65f4906750113a424780d))
|
|
19
79
|
|
|
20
80
|
## [2.8.10](https://github.com/keq-request/keq/compare/v2.8.9...v2.8.10) (2024-12-26)
|
|
21
81
|
|
|
22
|
-
|
|
23
82
|
### Bug Fixes
|
|
24
83
|
|
|
25
|
-
|
|
84
|
+
- cannot extend KeqOperations ([908983d](https://github.com/keq-request/keq/commit/908983dd12037befb85bd944801a6b111979d4ce))
|
|
26
85
|
|
|
27
86
|
## [2.8.9](https://github.com/keq-request/keq/compare/v2.8.8...v2.8.9) (2024-12-22)
|
|
28
87
|
|
|
29
|
-
|
|
30
88
|
### Bug Fixes
|
|
31
89
|
|
|
32
|
-
|
|
33
|
-
|
|
90
|
+
- wrong type of .query/.set/.params ([b11b959](https://github.com/keq-request/keq/commit/b11b9591dbff167a2cbd4f925d196bbc83e39b63))
|
|
34
91
|
|
|
35
92
|
### Performance Improvements
|
|
36
93
|
|
|
37
|
-
|
|
94
|
+
- support stict type checking for .send/.params/.set/.query ([2c82b01](https://github.com/keq-request/keq/commit/2c82b016a5032422ae52455c267066ac2c8ba7f0))
|
|
38
95
|
|
|
39
96
|
## [2.8.8](https://github.com/keq-request/keq/compare/v2.8.7...v2.8.8) (2024-12-10)
|
|
40
97
|
|
|
41
|
-
|
|
42
98
|
### Bug Fixes
|
|
43
99
|
|
|
44
|
-
|
|
100
|
+
- make some properties in KeqContext readonly to prevent modifications ([b2321cf](https://github.com/keq-request/keq/commit/b2321cf30ea0787a1e9a984bd05704cc6268fbef))
|
|
45
101
|
|
|
46
102
|
## [2.8.7](https://github.com/keq-request/keq/compare/v2.8.6...v2.8.7) (2024-10-29)
|
|
47
103
|
|
|
48
|
-
|
|
49
104
|
### Bug Fixes
|
|
50
105
|
|
|
51
|
-
|
|
106
|
+
- `.finally()` cannot invoke at keq request ([4315979](https://github.com/keq-request/keq/commit/4315979d1fc4e0ad11aaaadb3341886e62bfe448))
|
|
52
107
|
|
|
53
108
|
## [2.8.6](https://github.com/keq-request/keq/compare/v2.8.5...v2.8.6) (2024-10-25)
|
|
54
109
|
|
|
55
|
-
|
|
56
110
|
### Bug Fixes
|
|
57
111
|
|
|
58
|
-
|
|
59
|
-
|
|
112
|
+
- cannot send blob body ([ba7a14d](https://github.com/keq-request/keq/commit/ba7a14d10090aded2525789f0ef543564ce05434))
|
|
113
|
+
- cannot send readableStream ([1b16142](https://github.com/keq-request/keq/commit/1b16142e84f08a7b5c300ba69f5c0036fdb1c9ef))
|
|
60
114
|
|
|
61
115
|
## [2.8.5](https://github.com/keq-request/keq/compare/v2.8.4...v2.8.5) (2024-10-25)
|
|
62
116
|
|
|
63
|
-
|
|
64
117
|
### Performance Improvements
|
|
65
118
|
|
|
66
|
-
|
|
119
|
+
- support send binary body ([4f17198](https://github.com/keq-request/keq/commit/4f17198915e46bfb08a6900c2b784c5299164c2f))
|
|
67
120
|
|
|
68
121
|
## [2.8.4](https://github.com/keq-request/keq/compare/v2.8.3...v2.8.4) (2024-10-20)
|
|
69
122
|
|
|
70
|
-
|
|
71
123
|
### Bug Fixes
|
|
72
124
|
|
|
73
|
-
|
|
125
|
+
- esm improt error ([f23cece](https://github.com/keq-request/keq/commit/f23cece5d55c21a73deb9e9191cc52dafff35bc6))
|
|
74
126
|
|
|
75
127
|
## [2.8.3](https://github.com/keq-request/keq/compare/v2.8.2...v2.8.3) (2024-10-20)
|
|
76
128
|
|
|
77
|
-
|
|
78
129
|
### Bug Fixes
|
|
79
130
|
|
|
80
|
-
|
|
81
|
-
|
|
131
|
+
- esm import error ([97dbd78](https://github.com/keq-request/keq/commit/97dbd78eaa8b57a1a22e776347a90baf8f47335e))
|
|
82
132
|
|
|
83
133
|
### Performance Improvements
|
|
84
134
|
|
|
85
|
-
|
|
135
|
+
- set context.retry to be deprecated ([e8b76a4](https://github.com/keq-request/keq/commit/e8b76a48a6e824892cb0eb3e8d97b36c11b07a3d))
|
|
86
136
|
|
|
87
137
|
## [2.8.2](https://github.com/keq-request/keq/compare/v2.8.1...v2.8.2) (2024-10-07)
|
|
88
138
|
|
|
89
|
-
|
|
90
139
|
### Performance Improvements
|
|
91
140
|
|
|
92
|
-
|
|
141
|
+
- export createResponseProxy function ([261606e](https://github.com/keq-request/keq/commit/261606e74f12d32c80428eb9b20d175b60171bff))
|
|
93
142
|
|
|
94
143
|
## [2.8.1](https://github.com/keq-request/keq/compare/v2.8.0...v2.8.1) (2024-09-13)
|
|
95
144
|
|
|
96
|
-
|
|
97
145
|
### Performance Improvements
|
|
98
146
|
|
|
99
|
-
|
|
100
|
-
|
|
147
|
+
- allow middleware access context.metadata ([4561592](https://github.com/keq-request/keq/commit/4561592390c78a47cedb2d230e4765f51de7d854))
|
|
148
|
+
- set identifier to be readonly ([6f64f1b](https://github.com/keq-request/keq/commit/6f64f1b5e5a698bae15c2ddb1f3c4fe3a6e2a6ae))
|
|
101
149
|
|
|
102
150
|
## [2.8.0](https://github.com/keq-request/keq/compare/v2.7.5...v2.8.0) (2024-09-11)
|
|
103
151
|
|
|
104
|
-
|
|
105
152
|
### Features
|
|
106
153
|
|
|
107
|
-
|
|
154
|
+
- add the unique identifier of the request's location in the code ([e9eb95f](https://github.com/keq-request/keq/commit/e9eb95fc09bfaf59884379be9b50962660c9574f))
|
|
108
155
|
|
|
109
156
|
## [2.7.5](https://github.com/keq-request/keq/compare/v2.7.4...v2.7.5) (2024-09-10)
|
|
110
157
|
|
|
111
|
-
|
|
112
158
|
### Bug Fixes
|
|
113
159
|
|
|
114
|
-
|
|
160
|
+
- cannot import esm ([e6c1cfb](https://github.com/keq-request/keq/commit/e6c1cfb3c283e7cd3d44cd7d60d30aaf7a380ecc))
|
|
115
161
|
|
|
116
162
|
## [2.7.4](https://github.com/keq-request/keq/compare/v2.7.3...v2.7.4) (2024-08-19)
|
|
117
163
|
|
|
118
|
-
|
|
119
164
|
### Performance Improvements
|
|
120
165
|
|
|
121
|
-
|
|
166
|
+
- add options method support ([bfc7ae4](https://github.com/keq-request/keq/commit/bfc7ae45f4ad1e14bfca4ec7d6c599915424df43))
|
|
122
167
|
|
|
123
168
|
## [2.7.3](https://github.com/keq-request/keq/compare/v2.7.2...v2.7.3) (2024-08-13)
|
|
124
169
|
|
|
125
|
-
|
|
126
170
|
### Bug Fixes
|
|
127
171
|
|
|
128
|
-
|
|
172
|
+
- .set(key, value) cannot set the number type value when adding a custom header ([2085cc6](https://github.com/keq-request/keq/commit/2085cc613f68b26018fdabb3b6bb39d0b208a50e))
|
|
129
173
|
|
|
130
174
|
## [2.7.2](https://github.com/keq-request/keq/compare/v2.7.1...v2.7.2) (2024-08-13)
|
|
131
175
|
|
|
132
|
-
|
|
133
176
|
### Performance Improvements
|
|
134
177
|
|
|
135
|
-
|
|
178
|
+
- allow header to add number type fields ([bacacaa](https://github.com/keq-request/keq/commit/bacacaac66d9e249a6b66d539bafb94d9f064869))
|
|
136
179
|
|
|
137
180
|
## [2.7.1](https://github.com/keq-request/keq/compare/v2.7.0...v2.7.1) (2024-07-20)
|
|
138
181
|
|
|
139
|
-
|
|
140
182
|
### Performance Improvements
|
|
141
183
|
|
|
142
|
-
|
|
184
|
+
- remove whatwg-url because mosts browsers had support ([6877d79](https://github.com/keq-request/keq/commit/6877d79e95721ea76adcf54013c1909b0dec98a3))
|
|
143
185
|
|
|
144
186
|
## [2.7.0](https://github.com/keq-request/keq/compare/v2.6.10...v2.7.0) (2024-07-05)
|
|
145
187
|
|
|
146
|
-
|
|
147
188
|
### Features
|
|
148
189
|
|
|
149
|
-
|
|
150
|
-
|
|
190
|
+
- add ctx.request.**url** that return a url merged routeParams ([896c029](https://github.com/keq-request/keq/commit/896c0293e8a0bd0243cd81b780ea2f9e09cbfeea))
|
|
151
191
|
|
|
152
192
|
### Bug Fixes
|
|
153
193
|
|
|
154
|
-
|
|
194
|
+
- the default parameter of KeqRequest ([d7939d2](https://github.com/keq-request/keq/commit/d7939d2f2e1f79e719db3c663658c05586be10cf))
|
|
155
195
|
|
|
156
196
|
## [2.6.10](https://github.com/keq-request/keq/compare/v2.6.9...v2.6.10) (2024-06-27)
|
|
157
197
|
|
|
158
|
-
|
|
159
198
|
### Performance Improvements
|
|
160
199
|
|
|
161
|
-
|
|
200
|
+
- optimize the error message of the wrong header ([92f4aa6](https://github.com/keq-request/keq/commit/92f4aa6d58d258521ee0a2913a8cfb52597e9ed8))
|
|
162
201
|
|
|
163
202
|
## [2.6.9](https://github.com/keq-request/keq/compare/v2.6.8...v2.6.9) (2024-06-24)
|
|
164
203
|
|
|
165
|
-
|
|
166
204
|
### Bug Fixes
|
|
167
205
|
|
|
168
|
-
|
|
206
|
+
- cannot find buffer in the browser ([49b57d8](https://github.com/keq-request/keq/commit/49b57d8a13c576ab1b8e56a1ddc73ffb7dea1286))
|
|
169
207
|
|
|
170
208
|
## [2.6.8](https://github.com/keq-request/keq/compare/v2.6.7...v2.6.8) (2024-06-04)
|
|
171
209
|
|
|
172
|
-
|
|
173
210
|
### Performance Improvements
|
|
174
211
|
|
|
175
|
-
|
|
212
|
+
- remove clone and object.fromentries dependencies ([7a3ef9b](https://github.com/keq-request/keq/commit/7a3ef9bb053cc280cca639d1b6b3682a45eaea98))
|
|
176
213
|
|
|
177
214
|
## [2.6.7](https://github.com/keq-request/keq/compare/v2.6.6...v2.6.7) (2024-06-03)
|
|
178
215
|
|
|
179
|
-
|
|
180
216
|
### Performance Improvements
|
|
181
217
|
|
|
182
|
-
|
|
218
|
+
- rename clone to cloneBody ([c008b50](https://github.com/keq-request/keq/commit/c008b50d2e627853a3451cdfa9ad5f49a4bc8f17))
|
|
183
219
|
|
|
184
220
|
## [2.6.6](https://github.com/keq-request/keq/compare/v2.6.5...v2.6.6) (2024-06-03)
|
|
185
221
|
|
|
186
|
-
|
|
187
222
|
### Bug Fixes
|
|
188
223
|
|
|
189
|
-
|
|
224
|
+
- unable to package correctly in nuxt3 ([b5ce266](https://github.com/keq-request/keq/commit/b5ce2662d26b180add3496b27ba795f8416a0e58))
|
|
190
225
|
|
|
191
226
|
## [2.6.5](https://github.com/keq-request/keq/compare/v2.6.4...v2.6.5) (2024-06-03)
|
|
192
227
|
|
|
193
|
-
|
|
194
228
|
### Bug Fixes
|
|
195
229
|
|
|
196
|
-
|
|
230
|
+
- wrong typescript defination ([b1bf5c2](https://github.com/keq-request/keq/commit/b1bf5c2f8b797f8beeb5531e8d075f2c1b395a27))
|
|
197
231
|
|
|
198
232
|
## [2.6.4](https://github.com/keq-request/keq/compare/v2.6.3...v2.6.4) (2024-06-02)
|
|
199
233
|
|
|
200
|
-
|
|
201
234
|
### Bug Fixes
|
|
202
235
|
|
|
203
|
-
|
|
236
|
+
- cannot find Buffer at browser ([c165673](https://github.com/keq-request/keq/commit/c16567394000a0659dfb76fdac314a1b54ef0bfd))
|
|
204
237
|
|
|
205
238
|
## [2.6.3](https://github.com/keq-request/keq/compare/v2.6.2...v2.6.3) (2024-05-30)
|
|
206
239
|
|
|
207
|
-
|
|
208
240
|
### Performance Improvements
|
|
209
241
|
|
|
210
|
-
|
|
211
|
-
|
|
242
|
+
- human warn when set undefined query ([e9695ab](https://github.com/keq-request/keq/commit/e9695ab1df78920980acc9ce18facc251925c65d))
|
|
243
|
+
- interface type could be extends through generics ([62797e3](https://github.com/keq-request/keq/commit/62797e398df25e1caed1ae726c03a89246834928))
|
|
212
244
|
|
|
213
245
|
## [2.6.2](https://github.com/keq-request/keq/compare/v2.6.1...v2.6.2) (2024-05-29)
|
|
214
246
|
|
|
215
|
-
|
|
216
247
|
### Bug Fixes
|
|
217
248
|
|
|
218
|
-
|
|
249
|
+
- retryDelay option setting is invaild ([9bc07f8](https://github.com/keq-request/keq/commit/9bc07f8c1d870c51f1c1013dd12e038e278884e3))
|
|
219
250
|
|
|
220
251
|
## [2.6.1](https://github.com/keq-request/keq/compare/v2.6.0...v2.6.1) (2024-05-28)
|
|
221
252
|
|
|
222
|
-
|
|
223
253
|
### Bug Fixes
|
|
224
254
|
|
|
225
|
-
|
|
255
|
+
- body should not be set when undefined ([0674870](https://github.com/keq-request/keq/commit/0674870e3adade4f7c5e7e8209322d52b501b8ce))
|
|
226
256
|
|
|
227
257
|
## [2.6.0](https://github.com/keq-request/keq/compare/v2.5.5...v2.6.0) (2024-05-28)
|
|
228
258
|
|
|
229
|
-
|
|
230
259
|
### Features
|
|
231
260
|
|
|
232
|
-
|
|
233
|
-
|
|
261
|
+
- use .on(eventName, listener) add event listener ([500ef14](https://github.com/keq-request/keq/commit/500ef140b513d614c3454d0e9023dd501e5d1ef6))
|
|
234
262
|
|
|
235
263
|
### Bug Fixes
|
|
236
264
|
|
|
237
|
-
|
|
238
|
-
|
|
265
|
+
- esm import syntax ([c312146](https://github.com/keq-request/keq/commit/c312146ffeb456bcfb1e0e6e2f2a3c8c773e6003))
|
|
266
|
+
- the body is undeifned when send plain/text request ([ed24ba6](https://github.com/keq-request/keq/commit/ed24ba6f5ef3a565fb3eb6be496be09ed0fa40f9))
|
|
239
267
|
|
|
240
268
|
## [2.5.5](https://github.com/keq-request/keq/compare/v2.5.4...v2.5.5) (2024-05-26)
|
|
241
269
|
|
|
242
|
-
|
|
243
270
|
### Bug Fixes
|
|
244
271
|
|
|
245
|
-
|
|
246
|
-
|
|
272
|
+
- avoid conflicts between flowController and timeout middleware ([a075602](https://github.com/keq-request/keq/commit/a075602ed868812955001df7ed15f2351f899f33))
|
|
273
|
+
- retry timeout and flowControll not triggered ([846c884](https://github.com/keq-request/keq/commit/846c8845334f61fdca7a6cd3b718e135d23bfb18))
|
|
247
274
|
|
|
248
275
|
## [2.5.4](https://github.com/keq-request/keq/compare/v2.5.3...v2.5.4) (2024-05-23)
|
|
249
276
|
|
|
250
|
-
|
|
251
277
|
### Performance Improvements
|
|
252
278
|
|
|
253
|
-
|
|
279
|
+
- retryOn and retryDelay support return Promise ([398c262](https://github.com/keq-request/keq/commit/398c26294aa303feb5b14ab17d3ff96036bfdde2))
|
|
254
280
|
|
|
255
281
|
## [2.5.3](https://github.com/keq-request/keq/compare/v2.5.2...v2.5.3) (2024-05-23)
|
|
256
282
|
|
|
257
|
-
|
|
258
283
|
### Bug Fixes
|
|
259
284
|
|
|
260
|
-
|
|
285
|
+
- retryTimes avoids throw errors caused by NaN ([a5ece3f](https://github.com/keq-request/keq/commit/a5ece3f8afec3c58d2daa3c5e1a2f85fae044665))
|
|
261
286
|
|
|
262
287
|
## [2.5.2](https://github.com/keq-request/keq/compare/v2.5.1...v2.5.2) (2024-05-22)
|
|
263
288
|
|
|
264
|
-
|
|
265
289
|
### Bug Fixes
|
|
266
290
|
|
|
267
|
-
|
|
268
|
-
|
|
291
|
+
- composeMiddleware should not change parameters ([131c1d4](https://github.com/keq-request/keq/commit/131c1d42227eeda2d42436c5285426bf3f787df0))
|
|
269
292
|
|
|
270
293
|
### Performance Improvements
|
|
271
294
|
|
|
272
|
-
|
|
273
|
-
|
|
295
|
+
- avoid duplication of compose middleware ([c4e5cc1](https://github.com/keq-request/keq/commit/c4e5cc161d94b2440768c778489ee5ac1bb07484))
|
|
296
|
+
- warn for incorrect invoke next() ([f4b418f](https://github.com/keq-request/keq/commit/f4b418f28e3df07bad0c03e2aca811ed6254e57c)), closes [#74](https://github.com/keq-request/keq/issues/74)
|
|
274
297
|
|
|
275
298
|
## [2.5.1](https://github.com/keq-request/keq/compare/v2.5.0...v2.5.1) (2024-05-21)
|
|
276
299
|
|
|
277
|
-
|
|
278
300
|
### Bug Fixes
|
|
279
301
|
|
|
280
|
-
|
|
302
|
+
- throw error when retryOn is not set ([cbf4594](https://github.com/keq-request/keq/commit/cbf45942e113a4f57c4351abd03a82cbab5a0a6a))
|
|
281
303
|
|
|
282
304
|
## [2.5.0](https://github.com/keq-request/keq/compare/v2.4.1...v2.5.0) (2024-05-21)
|
|
283
305
|
|
|
284
|
-
|
|
285
306
|
### Features
|
|
286
307
|
|
|
287
|
-
|
|
308
|
+
- third-party middleware can extend option typescript declaration ([a9e559a](https://github.com/keq-request/keq/commit/a9e559a39dd16a552ac5ab024727a76d2a2c05a1))
|
|
288
309
|
|
|
289
310
|
## [2.4.1](https://github.com/keq-request/keq/compare/v2.4.0...v2.4.1) (2024-05-17)
|
|
290
311
|
|
|
291
|
-
|
|
292
312
|
### Bug Fixes
|
|
293
313
|
|
|
294
|
-
|
|
314
|
+
- response.body is not a function ([8332fa2](https://github.com/keq-request/keq/commit/8332fa25fa613c0663719d581379f04a7545799c))
|
|
295
315
|
|
|
296
316
|
## [2.4.0](https://github.com/keq-request/keq/compare/v2.3.4...v2.4.0) (2024-05-17)
|
|
297
317
|
|
|
298
|
-
|
|
299
318
|
### Features
|
|
300
319
|
|
|
301
|
-
|
|
320
|
+
- avoid time-consuming cloning ([5f6b773](https://github.com/keq-request/keq/commit/5f6b773a8d2a0bf9ffa529200ff4fc524b3c4090))
|
|
302
321
|
|
|
303
322
|
## [2.3.4](https://github.com/keq-request/keq/compare/v2.3.3...v2.3.4) (2024-05-14)
|
|
304
323
|
|
|
305
|
-
|
|
306
324
|
### Bug Fixes
|
|
307
325
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
326
|
+
- avoid repeatedly defining response causing errors to be throw ([fc4d0ab](https://github.com/keq-request/keq/commit/fc4d0abf47a35e894fb31f9284e4fa3947c99383))
|
|
327
|
+
- missing typescript definition ([fff9046](https://github.com/keq-request/keq/commit/fff9046a5d10d264d4aeef918aaeb986056abd67))
|
|
311
328
|
|
|
312
329
|
### Performance Improvements
|
|
313
330
|
|
|
314
|
-
|
|
315
|
-
|
|
331
|
+
- baseOrigin(origin) return this ([d50773c](https://github.com/keq-request/keq/commit/d50773c00eeaf87850c1ee621dc75d920d6897ba))
|
|
332
|
+
- use http://127.0.0.1 as baseOrigin in nodejs ([22f0202](https://github.com/keq-request/keq/commit/22f0202c21c83d128f86f9c0270b124018ce515d))
|
|
316
333
|
|
|
317
334
|
## [2.3.3](https://github.com/keq-request/keq/compare/v2.3.2...v2.3.3) (2024-05-10)
|
|
318
335
|
|
|
319
|
-
|
|
320
336
|
### Bug Fixes
|
|
321
337
|
|
|
322
|
-
|
|
323
|
-
|
|
338
|
+
- the error thrown when the request timeout is not DOMException ([7c84d8f](https://github.com/keq-request/keq/commit/7c84d8fe40e26713d478d443fbdb9a9d71d99ba9))
|
|
324
339
|
|
|
325
340
|
### Performance Improvements
|
|
326
341
|
|
|
327
|
-
|
|
342
|
+
- upgrade dependencies ([090e244](https://github.com/keq-request/keq/commit/090e24449f055e185dde1d3972c8f5e9c637fb20))
|
|
328
343
|
|
|
329
344
|
## [2.3.2](https://github.com/keq-request/keq/compare/v2.3.1...v2.3.2) (2024-04-23)
|
|
330
345
|
|
|
331
|
-
|
|
332
346
|
### Bug Fixes
|
|
333
347
|
|
|
334
|
-
|
|
348
|
+
- cannot send form-data when invoke .attach() first ([0195ee2](https://github.com/keq-request/keq/commit/0195ee2dcb4e43a58185f4c032d29fb6c00ac70d))
|
|
335
349
|
|
|
336
350
|
## [2.3.1](https://github.com/keq-request/keq/compare/v2.3.0...v2.3.1) (2024-03-22)
|
|
337
351
|
|
|
338
|
-
|
|
339
352
|
### Bug Fixes
|
|
340
353
|
|
|
341
|
-
|
|
354
|
+
- unabled send formDate request with buffer file ([9db1508](https://github.com/keq-request/keq/commit/9db1508c3366a5dd264e3de87bd8afef777f761f))
|
|
342
355
|
|
|
343
356
|
## [2.3.0](https://github.com/keq-request/keq/compare/v2.2.0...v2.3.0) (2024-02-24)
|
|
344
357
|
|
|
345
|
-
|
|
346
358
|
### Features
|
|
347
359
|
|
|
348
|
-
|
|
360
|
+
- add .resolveWith method add deprecated resolveWithFullResponse ([1e01e7f](https://github.com/keq-request/keq/commit/1e01e7fe07c146d9f122f0f52778b45258797c68))
|
|
349
361
|
|
|
350
362
|
## [2.2.0](https://github.com/keq-request/keq/compare/v2.1.2...v2.2.0) (2024-02-04)
|
|
351
363
|
|
|
352
|
-
|
|
353
364
|
### Features
|
|
354
365
|
|
|
355
|
-
|
|
366
|
+
- add .timeout(millisecond) ([b99009b](https://github.com/keq-request/keq/commit/b99009b6eb4a017d648a29a8b34b478dc22320ee))
|
|
356
367
|
|
|
357
368
|
## [2.1.2](https://github.com/keq-request/keq/compare/v2.1.1...v2.1.2) (2024-01-17)
|
|
358
369
|
|
|
359
|
-
|
|
360
370
|
### Bug Fixes
|
|
361
371
|
|
|
362
|
-
|
|
372
|
+
- unable send request when parentheses exit in pathname ([24c81ff](https://github.com/keq-request/keq/commit/24c81ffdde71919163a09778aa15ae6106427d45))
|
|
363
373
|
|
|
364
374
|
## [2.1.1](https://github.com/keq-request/keq/compare/v2.1.0...v2.1.1) (2024-01-09)
|
|
365
375
|
|
|
366
|
-
|
|
367
376
|
### Bug Fixes
|
|
368
377
|
|
|
369
|
-
|
|
378
|
+
- should not throw error when query is undefined ([515fa20](https://github.com/keq-request/keq/commit/515fa2090a03eb60ed8e7d0e575ce44dd8bce12b))
|
|
370
379
|
|
|
371
380
|
## [2.1.0](https://github.com/keq-request/keq/compare/v2.0.8...v2.1.0) (2024-01-05)
|
|
372
381
|
|
|
373
|
-
|
|
374
382
|
### Features
|
|
375
383
|
|
|
376
|
-
|
|
377
|
-
|
|
384
|
+
- add .route to Router ([dc27057](https://github.com/keq-request/keq/commit/dc27057b3c85ab8a52fe51892f4aa5792f53898d))
|
|
385
|
+
- flow control function for sending multiple requests ([5d24adf](https://github.com/keq-request/keq/commit/5d24adffaf26181ebd296b97ea3062514354f7e0))
|
|
378
386
|
|
|
379
387
|
## [2.0.8](https://github.com/keq-request/keq/compare/v2.0.7...v2.0.8) (2024-01-02)
|
|
380
388
|
|
|
381
|
-
|
|
382
389
|
### Bug Fixes
|
|
383
390
|
|
|
384
|
-
|
|
391
|
+
- fetch error not thrown correctly ([cbc7778](https://github.com/keq-request/keq/commit/cbc7778dbf5e1c453b0a68246f0e6c4113604854))
|
|
385
392
|
|
|
386
393
|
## [2.0.7](https://github.com/keq-request/keq/compare/v2.0.6...v2.0.7) (2023-11-09)
|
|
387
394
|
|
|
388
|
-
|
|
389
395
|
### Bug Fixes
|
|
390
396
|
|
|
391
|
-
|
|
397
|
+
- wrong repo address in package.json ([1101a79](https://github.com/keq-request/keq/commit/1101a79d12c3c96aba45167ab60f1ef1a8b6b4a7))
|
|
392
398
|
|
|
393
399
|
## [2.0.6](https://github.com/keq-request/keq/compare/v2.0.5...v2.0.6) (2023-11-08)
|
|
394
400
|
|
|
395
|
-
|
|
396
401
|
### Bug Fixes
|
|
397
402
|
|
|
398
|
-
|
|
403
|
+
- npm publish error ([14a3b93](https://github.com/keq-request/keq/commit/14a3b931d72c105f9c4bdf56d90516f2052b217b))
|
|
399
404
|
|
|
400
405
|
## [2.0.5](https://github.com/keq-request/keq/compare/v2.0.4...v2.0.5) (2023-11-08)
|
|
401
406
|
|
|
402
|
-
|
|
403
407
|
### Bug Fixes
|
|
404
408
|
|
|
405
|
-
|
|
409
|
+
- unable build ([5731cab](https://github.com/keq-request/keq/commit/5731cab1e62bc23d2ddb9522e607e3bdfa12db4d))
|
|
406
410
|
|
|
407
411
|
## [2.0.4](https://github.com/keq-request/keq/compare/v2.0.3...v2.0.4) (2023-11-08)
|
|
408
412
|
|
|
409
|
-
|
|
410
413
|
### Performance Improvements
|
|
411
414
|
|
|
412
|
-
|
|
415
|
+
- add package provenance ([ab5c99e](https://github.com/keq-request/keq/commit/ab5c99ed89809f244172263623732ea0d963ab36))
|
|
413
416
|
|
|
414
417
|
### [2.0.3](https://www.github.com/keq-request/keq/compare/v2.0.2...v2.0.3) (2023-09-27)
|
|
415
418
|
|
|
416
|
-
|
|
417
419
|
### Bug Fixes
|
|
418
420
|
|
|
419
|
-
|
|
421
|
+
- cannot find dist/umd/src/index.js ([9264923](https://www.github.com/keq-request/keq/commit/9264923e606fc5bc28675c751910e1eb3a30b864))
|
|
420
422
|
|
|
421
423
|
### [2.0.2](https://www.github.com/keq-request/keq/compare/v2.0.1...v2.0.2) (2023-09-27)
|
|
422
424
|
|
|
423
|
-
|
|
424
425
|
### Bug Fixes
|
|
425
426
|
|
|
426
|
-
|
|
427
|
+
- cannot import umd package ([4eb05b3](https://www.github.com/keq-request/keq/commit/4eb05b35a41fd7b00e21ae5978eb3dc3900a3bdc))
|
|
427
428
|
|
|
428
429
|
### [2.0.1](https://www.github.com/keq-request/keq/compare/v2.0.0...v2.0.1) (2023-09-27)
|
|
429
430
|
|
|
430
|
-
|
|
431
431
|
### Bug Fixes
|
|
432
432
|
|
|
433
|
-
|
|
433
|
+
- cannot import createRequest ([2acdc47](https://www.github.com/keq-request/keq/commit/2acdc47200c36c83d7539f7d3b68d8df7bb49803))
|
|
434
434
|
|
|
435
435
|
## [2.0.0](https://www.github.com/keq-request/keq/compare/v1.10.1...v2.0.0) (2023-09-25)
|
|
436
436
|
|
|
437
|
-
|
|
438
437
|
### ⚠ BREAKING CHANGES
|
|
439
438
|
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
`content.request.*` instead.
|
|
444
|
-
|
|
445
|
-
be removed, use `context.request` instead.
|
|
446
|
-
|
|
447
|
-
|
|
439
|
+
- Drop support for Node16.
|
|
440
|
+
- Remove node-fetch and internal FormData support in nodejs.
|
|
441
|
+
- `content.url`, `content.query`, `content.headers`, `content.body` has be removed, use
|
|
442
|
+
`content.request.*` instead.
|
|
443
|
+
- `resolveWithOriginResponse` has be removed. `context.request.options` has
|
|
444
|
+
be removed, use `context.request` instead.
|
|
445
|
+
- `mount` has be removed, use `request.useRouter` instead.
|
|
446
|
+
- `.serialize` has be removed.
|
|
448
447
|
|
|
449
448
|
### Code Refactoring
|
|
450
449
|
|
|
451
|
-
|
|
450
|
+
- rebuild code ([267b899](https://www.github.com/keq-request/keq/commit/267b899244f532b409ef8b7514d9bbe60394ecd1))
|
|
452
451
|
|
|
453
452
|
### [1.10.1](https://www.github.com/keq-request/keq/compare/v1.10.0...v1.10.1) (2023-05-17)
|
|
454
453
|
|
|
455
|
-
|
|
456
454
|
### Bug Fixes
|
|
457
455
|
|
|
458
|
-
|
|
456
|
+
- keq crashes when the response body does not match content-type ([f0bc15e](https://www.github.com/keq-request/keq/commit/f0bc15e3f02b76dfa975791f78d566eeccb32adc))
|
|
459
457
|
|
|
460
458
|
## [1.10.0](https://www.github.com/keq-request/keq/compare/v1.9.0...v1.10.0) (2022-11-22)
|
|
461
459
|
|
|
462
|
-
|
|
463
460
|
### Features
|
|
464
461
|
|
|
465
|
-
|
|
466
|
-
|
|
462
|
+
- add .mode() and .credentials() ([73f1cc2](https://www.github.com/keq-request/keq/commit/73f1cc202b34658474f325a3bbbdd4f876d1b4f2))
|
|
463
|
+
- add .redirect(mode) ([094549b](https://www.github.com/keq-request/keq/commit/094549b4ff6b8a64f9506a0f2b99ca8b51656b57))
|
|
467
464
|
|
|
468
465
|
## [1.9.0](https://www.github.com/keq-request/keq/compare/v1.8.9...v1.9.0) (2022-10-19)
|
|
469
466
|
|
|
470
|
-
|
|
471
467
|
### Features
|
|
472
468
|
|
|
473
|
-
|
|
469
|
+
- add mount.method ([df215a9](https://www.github.com/keq-request/keq/commit/df215a914d40fc03b3b4cbf359fb1da014b16f4a)), closes [#35](https://www.github.com/keq-request/keq/issues/35)
|
|
474
470
|
|
|
475
471
|
### [1.8.9](https://www.github.com/keq-request/keq/compare/v1.8.8...v1.8.9) (2022-09-08)
|
|
476
472
|
|
|
477
|
-
|
|
478
473
|
### Bug Fixes
|
|
479
474
|
|
|
480
|
-
|
|
475
|
+
- unexpected querystring when invoke .query() with an object param that some value is undfined ([372e2e8](https://www.github.com/keq-request/keq/commit/372e2e867768a3512b5b562951ed5de4129a4d45))
|
|
481
476
|
|
|
482
477
|
### [1.8.8](https://www.github.com/keq-request/keq/compare/v1.8.7...v1.8.8) (2022-06-24)
|
|
483
478
|
|
|
484
|
-
|
|
485
479
|
### Bug Fixes
|
|
486
480
|
|
|
487
|
-
|
|
481
|
+
- not working when response include null ([e98ea2b](https://www.github.com/keq-request/keq/commit/e98ea2bb831b8e94f531342bb53e0bb1e313c44b))
|
|
488
482
|
|
|
489
483
|
### [1.8.7](https://www.github.com/keq-request/keq/compare/v1.8.6...v1.8.7) (2022-06-22)
|
|
490
484
|
|
|
491
|
-
|
|
492
485
|
### Bug Fixes
|
|
493
486
|
|
|
494
|
-
|
|
487
|
+
- wrong content-type when send request in browser ([a100a5d](https://www.github.com/keq-request/keq/commit/a100a5db42e0dc6a032badb75a715fad8d1c600a))
|
|
495
488
|
|
|
496
489
|
### [1.8.6](https://www.github.com/keq-request/keq/compare/v1.8.5...v1.8.6) (2022-05-26)
|
|
497
490
|
|
|
498
|
-
|
|
499
491
|
### Bug Fixes
|
|
500
492
|
|
|
501
|
-
|
|
493
|
+
- cannot send multiple files ([ec70e66](https://www.github.com/keq-request/keq/commit/ec70e6641b93888257cc69e0c6c426dced801117))
|
|
502
494
|
|
|
503
495
|
### [1.8.5](https://www.github.com/keq-request/keq/compare/v1.8.4...v1.8.5) (2022-05-01)
|
|
504
496
|
|
|
505
|
-
|
|
506
497
|
### Bug Fixes
|
|
507
498
|
|
|
508
|
-
|
|
499
|
+
- esm not work ([6d1cd16](https://www.github.com/keq-request/keq/commit/6d1cd16b99e177b419dc5f1083662c6fa956caf1))
|
|
509
500
|
|
|
510
501
|
### [1.8.4](https://www.github.com/keq-request/keq/compare/v1.8.3...v1.8.4) (2022-05-01)
|
|
511
502
|
|
|
512
|
-
|
|
513
503
|
### Bug Fixes
|
|
514
504
|
|
|
515
|
-
|
|
505
|
+
- global middleware is polluted ([1c00f0e](https://www.github.com/keq-request/keq/commit/1c00f0e3bc7ab5d661d9aa64c033cfb644d3b054))
|
|
516
506
|
|
|
517
507
|
### [1.8.3](https://www.github.com/keq-request/keq/compare/v1.8.2...v1.8.3) (2022-04-26)
|
|
518
508
|
|
|
519
|
-
|
|
520
509
|
### Bug Fixes
|
|
521
510
|
|
|
522
|
-
|
|
511
|
+
- cannot find node:stream ([3137cad](https://www.github.com/keq-request/keq/commit/3137cadf6cf2481adb4bd17d45739501354498ff))
|
|
523
512
|
|
|
524
513
|
### [1.8.2](https://www.github.com/keq-request/keq/compare/v1.8.1...v1.8.2) (2022-04-26)
|
|
525
514
|
|
|
526
|
-
|
|
527
515
|
### Bug Fixes
|
|
528
516
|
|
|
529
|
-
|
|
517
|
+
- cannot find keq main file ([41908fa](https://www.github.com/keq-request/keq/commit/41908fa47eeb8f54fc018d445c5ef85ffc5ca383))
|
|
530
518
|
|
|
531
519
|
### [1.8.1](https://www.github.com/keq-request/keq/compare/v1.8.0...v1.8.1) (2022-04-25)
|
|
532
520
|
|
|
533
|
-
|
|
534
521
|
### Bug Fixes
|
|
535
522
|
|
|
536
|
-
|
|
537
|
-
|
|
523
|
+
- cannot compile by vite ([2727867](https://www.github.com/keq-request/keq/commit/27278676f924428e2598b634577ed8b63a1e935b))
|
|
524
|
+
- wrong return of response.blob() ([ca5a5b5](https://www.github.com/keq-request/keq/commit/ca5a5b5bd64bdde6a476d7ce5e86b9833cd2a43b))
|
|
538
525
|
|
|
539
526
|
## [1.8.0](https://www.github.com/keq-request/keq/compare/v1.7.3...v1.8.0) (2022-03-22)
|
|
540
527
|
|
|
541
|
-
|
|
542
528
|
### Features
|
|
543
529
|
|
|
544
|
-
|
|
530
|
+
- support custom request instance ([2c05dec](https://www.github.com/keq-request/keq/commit/2c05dec6d779861112507b7365822ecff175dbc3))
|
|
545
531
|
|
|
546
532
|
### [1.7.3](https://www.github.com/keq-request/keq/compare/v1.7.2...v1.7.3) (2022-03-08)
|
|
547
533
|
|
|
548
|
-
|
|
549
534
|
### Bug Fixes
|
|
550
535
|
|
|
551
|
-
|
|
536
|
+
- unable to send formdate request with file ([a4ed415](https://www.github.com/keq-request/keq/commit/a4ed41560aacb67a49d8159b453ddf69bce56799))
|
|
552
537
|
|
|
553
538
|
### [1.7.2](https://www.github.com/keq-request/keq/compare/v1.7.1...v1.7.2) (2022-02-25)
|
|
554
539
|
|
|
555
|
-
|
|
556
540
|
### Bug Fixes
|
|
557
541
|
|
|
558
|
-
|
|
559
|
-
|
|
542
|
+
- calling response.json() in middleware will cause garbled chinese characters ([40ffe02](https://www.github.com/keq-request/keq/commit/40ffe0238628c106a06eafe349e6d33b856fbf8f))
|
|
543
|
+
- throw error when not set url origin ([9040396](https://www.github.com/keq-request/keq/commit/9040396ba23edc1642abf27a203b39efe53fb130))
|
|
560
544
|
|
|
561
545
|
### [1.7.1](https://www.github.com/keq-request/keq/compare/v1.7.0...v1.7.1) (2022-02-24)
|
|
562
546
|
|
|
563
|
-
|
|
564
547
|
### Bug Fixes
|
|
565
548
|
|
|
566
|
-
|
|
567
|
-
|
|
549
|
+
- cannot import URL from url package ([b89721e](https://www.github.com/keq-request/keq/commit/b89721ed4c865ff570e32653b76a884cbc6a8db6))
|
|
550
|
+
- esm parse failed ([b95a97c](https://www.github.com/keq-request/keq/commit/b95a97c35ebf06a4c938e09312ec88fc1c9b9050))
|
|
568
551
|
|
|
569
552
|
## [1.7.0](https://www.github.com/keq-request/keq/compare/v1.6.6...v1.7.0) (2022-01-17)
|
|
570
553
|
|
|
571
|
-
|
|
572
554
|
### Features
|
|
573
555
|
|
|
574
|
-
|
|
575
|
-
|
|
556
|
+
- support keq-cli@2.x ([6a3db36](https://www.github.com/keq-request/keq/commit/6a3db3633c75dd8d801748867666261d603f2dfb))
|
|
576
557
|
|
|
577
558
|
### Performance Improvements
|
|
578
559
|
|
|
579
|
-
|
|
560
|
+
- ctx.request.url extends from whatwg url api ([96dd049](https://www.github.com/keq-request/keq/commit/96dd049ae79d657dd4d03f1472d434aebd27aca3))
|
|
580
561
|
|
|
581
562
|
### [1.6.6](https://www.github.com/keq-request/keq/compare/v1.6.5...v1.6.6) (2021-12-13)
|
|
582
563
|
|
|
583
|
-
|
|
584
564
|
### Bug Fixes
|
|
585
565
|
|
|
586
|
-
|
|
566
|
+
- response cannot call .text, .json, .formData and .blob together ([fa1605a](https://www.github.com/keq-request/keq/commit/fa1605a911b05ac7ce3ecdb9f6d7805b4ced36f2))
|
|
587
567
|
|
|
588
568
|
### [1.6.5](https://www.github.com/keq-request/keq/compare/v1.6.4...v1.6.5) (2021-12-13)
|
|
589
569
|
|
|
590
|
-
|
|
591
570
|
### Bug Fixes
|
|
592
571
|
|
|
593
|
-
|
|
572
|
+
- iterator cannot be looped ([022ca72](https://www.github.com/keq-request/keq/commit/022ca72f88788980207bcb36114138ef292230cd))
|
|
594
573
|
|
|
595
574
|
### [1.6.4](https://www.github.com/keq-request/keq/compare/v1.6.3...v1.6.4) (2021-12-13)
|
|
596
575
|
|
|
597
|
-
|
|
598
576
|
### Bug Fixes
|
|
599
577
|
|
|
600
|
-
|
|
578
|
+
- the default array formatting of query is nonstandard ([229e08c](https://www.github.com/keq-request/keq/commit/229e08c79881fd332784b7f1c3207c410f985f89))
|
|
601
579
|
|
|
602
580
|
### [1.6.3](https://www.github.com/keq-request/keq/compare/v1.6.2...v1.6.3) (2021-12-07)
|
|
603
581
|
|
|
604
|
-
|
|
605
582
|
### Bug Fixes
|
|
606
583
|
|
|
607
|
-
|
|
584
|
+
- cannot invoke .blob() on the proxy response ([4e21c90](https://www.github.com/keq-request/keq/commit/4e21c90e47c8e84dfb3637e9aab5c8dd63a6e43f))
|
|
608
585
|
|
|
609
586
|
### [1.6.2](https://www.github.com/keq-request/keq/compare/v1.6.1...v1.6.2) (2021-11-30)
|
|
610
587
|
|
|
611
|
-
|
|
612
588
|
### Bug Fixes
|
|
613
589
|
|
|
614
|
-
|
|
590
|
+
- cannot parse response.body when response.status is 204 ([1b7e88d](https://www.github.com/keq-request/keq/commit/1b7e88d4112931298649086ca1aaa572a5665422)), closes [#21](https://www.github.com/keq-request/keq/issues/21)
|
|
615
591
|
|
|
616
592
|
### [1.6.1](https://www.github.com/keq-request/keq/compare/v1.6.0...v1.6.1) (2021-11-26)
|
|
617
593
|
|
|
618
|
-
|
|
619
594
|
### Bug Fixes
|
|
620
595
|
|
|
621
|
-
|
|
596
|
+
- retryCallback interface ([aa25c99](https://www.github.com/keq-request/keq/commit/aa25c992c5fd1bb21882699b6ce9b3c8b038adcc))
|
|
622
597
|
|
|
623
598
|
## [1.6.0](https://www.github.com/keq-request/keq/compare/v1.5.0...v1.6.0) (2021-11-26)
|
|
624
599
|
|
|
625
|
-
|
|
626
600
|
### Features
|
|
627
601
|
|
|
628
|
-
|
|
602
|
+
- can stop retry ([527678f](https://www.github.com/keq-request/keq/commit/527678f85202a84deb030c0337a92e5f1db7f19a))
|
|
629
603
|
|
|
630
604
|
## [1.5.0](https://www.github.com/keq-request/keq/compare/v1.4.0...v1.5.0) (2021-11-26)
|
|
631
605
|
|
|
632
|
-
|
|
633
606
|
### Features
|
|
634
607
|
|
|
635
|
-
|
|
608
|
+
- add intial retry time option ([accb899](https://www.github.com/keq-request/keq/commit/accb899dbe3c96d7279e8ea4126554d5e940331f))
|
|
636
609
|
|
|
637
610
|
## [1.4.0](https://www.github.com/keq-request/keq/compare/v1.3.1...v1.4.0) (2021-10-16)
|
|
638
611
|
|
|
639
|
-
|
|
640
612
|
### Features
|
|
641
613
|
|
|
642
|
-
|
|
614
|
+
- add redirect option ([55931ce](https://www.github.com/keq-request/keq/commit/55931ce10bd02cb07e49240e2d3940297547e850)), closes [#14](https://www.github.com/keq-request/keq/issues/14)
|
|
643
615
|
|
|
644
616
|
### [1.3.1](https://www.github.com/keq-request/keq/compare/v1.3.0...v1.3.1) (2021-10-16)
|
|
645
617
|
|
|
646
|
-
|
|
647
618
|
### Bug Fixes
|
|
648
619
|
|
|
649
|
-
|
|
620
|
+
- cannot get middleware matcher interface ([e285b73](https://www.github.com/keq-request/keq/commit/e285b7391238194a652e2bdbf0f1a9d8174be83c))
|
|
650
621
|
|
|
651
622
|
## [1.3.0](https://www.github.com/keq-request/keq/compare/v1.2.2...v1.3.0) (2021-08-29)
|
|
652
623
|
|
|
653
|
-
|
|
654
624
|
### Features
|
|
655
625
|
|
|
656
|
-
|
|
626
|
+
- add an error message that the routing parameters cannot be resolved ([ea267cb](https://www.github.com/keq-request/keq/commit/ea267cbfb6f15306adf730e9ab61fd1ed4cfc3e9))
|
|
657
627
|
|
|
658
628
|
### [1.2.2](https://www.github.com/keq-request/keq/compare/v1.2.1...v1.2.2) (2021-05-09)
|
|
659
629
|
|
|
660
|
-
|
|
661
630
|
### Bug Fixes
|
|
662
631
|
|
|
663
|
-
|
|
632
|
+
- response.clone is not responding ([ef1d66c](https://www.github.com/keq-request/keq/commit/ef1d66ce1cde8fefc9753be8f46b550785231e31))
|
|
664
633
|
|
|
665
634
|
### [1.2.1](https://github.com/Val-istar-Guo/keq/compare/v1.2.0...v1.2.1) (2021-05-06)
|
|
666
635
|
|
|
667
|
-
|
|
668
636
|
### Bug Fixes
|
|
669
637
|
|
|
670
|
-
|
|
638
|
+
- cannot find mount.module ([2031351](https://github.com/Val-istar-Guo/keq/commit/203135174904f0e4c23c1988021e5502fb018b07))
|
|
671
639
|
|
|
672
640
|
## [1.2.0](https://github.com/Val-istar-Guo/keq/compare/v1.1.4...v1.2.0) (2021-05-05)
|
|
673
641
|
|
|
674
|
-
|
|
675
642
|
### Features
|
|
676
643
|
|
|
677
|
-
|
|
644
|
+
- add module mounter ([c9727b4](https://github.com/Val-istar-Guo/keq/commit/c9727b41332f01ed212d6119e7f2fe0b4d524d37))
|
|
678
645
|
|
|
679
646
|
### [1.1.4](https://github.com/Val-istar-Guo/keq/compare/v1.1.3...v1.1.4) (2021-04-26)
|
|
680
647
|
|
|
681
|
-
|
|
682
648
|
### Bug Fixes
|
|
683
649
|
|
|
684
|
-
|
|
650
|
+
- type error when set option resolveWithFullResponse ([b32dc20](https://github.com/Val-istar-Guo/keq/commit/b32dc20802df7effd5ad619237378f30632ac539))
|
|
685
651
|
|
|
686
652
|
### [1.1.3](https://github.com/Val-istar-Guo/keq/compare/v1.1.2...v1.1.3) (2021-04-21)
|
|
687
653
|
|
|
688
654
|
### [1.1.2](https://github.com/Val-istar-Guo/keq/compare/v1.1.1...v1.1.2) (2021-04-06)
|
|
689
655
|
|
|
690
|
-
|
|
691
656
|
### Bug Fixes
|
|
692
657
|
|
|
693
|
-
|
|
694
|
-
|
|
658
|
+
- cannot run in browser ([56c08b9](https://github.com/Val-istar-Guo/keq/commit/56c08b9e7b110ea86316d190f1eae11154b79248))
|
|
659
|
+
- throw undefined when response body is empty ([1904392](https://github.com/Val-istar-Guo/keq/commit/19043922946dde6165fd45008766e8a2a8c9fd83))
|
|
695
660
|
|
|
696
661
|
### [1.1.1](https://github.com/Val-istar-Guo/keq/compare/v1.1.0...v1.1.1) (2021-04-06)
|
|
697
662
|
|
|
698
|
-
|
|
699
663
|
### Bug Fixes
|
|
700
664
|
|
|
701
|
-
|
|
665
|
+
- missing export mount ([a097b15](https://github.com/Val-istar-Guo/keq/commit/a097b1539e65f48c1f4e8a1b35cf406560e588ca))
|
|
702
666
|
|
|
703
667
|
## [1.1.0](https://github.com/Val-istar-Guo/keq/compare/v1.0.1...v1.1.0) (2021-04-04)
|
|
704
668
|
|
|
705
|
-
|
|
706
669
|
### Features
|
|
707
670
|
|
|
708
|
-
|
|
671
|
+
- middleware mount utils ([fa35ff0](https://github.com/Val-istar-Guo/keq/commit/fa35ff0944e63fe313d09f74ef8c4ab4027265b6)), closes [#5](https://github.com/Val-istar-Guo/keq/issues/5)
|
|
709
672
|
|
|
710
673
|
### [1.0.1](https://github.com/Val-istar-Guo/keq/compare/v1.0.0...v1.0.1) (2021-02-24)
|
|
711
674
|
|
|
712
675
|
## [1.0.0](https://github.com/Val-istar-Guo/keq/compare/v0.0.11...v1.0.0) (2021-02-23)
|
|
713
676
|
|
|
714
|
-
|
|
715
677
|
### Features
|
|
716
678
|
|
|
717
|
-
|
|
679
|
+
- routing parameters ([4506df1](https://github.com/Val-istar-Guo/keq/commit/4506df1f1f3f8b102e0611b9e073402edd84d711))
|
|
718
680
|
|
|
719
681
|
### [0.0.11](https://github.com/Val-istar-Guo/keq/compare/v0.0.10...v0.0.11) (2020-12-30)
|
|
720
682
|
|
|
721
|
-
|
|
722
683
|
### Bug Fixes
|
|
723
684
|
|
|
724
|
-
|
|
685
|
+
- filename is missing ([347d427](https://github.com/Val-istar-Guo/keq/commit/347d4274b4ab9db1e3c2221af120e1c5a13b5b72))
|
|
725
686
|
|
|
726
687
|
### [0.0.10](https://github.com/Val-istar-Guo/keq/compare/v0.0.9...v0.0.10) (2020-12-30)
|
|
727
688
|
|
|
728
|
-
|
|
729
689
|
### Bug Fixes
|
|
730
690
|
|
|
731
|
-
|
|
691
|
+
- cannot send big file by form-data ([d25218a](https://github.com/Val-istar-Guo/keq/commit/d25218a59d5fbaa3d857764b6539ed8056ff3e5a))
|
|
732
692
|
|
|
733
693
|
### [0.0.9](https://github.com/Val-istar-Guo/keq/compare/v0.0.8...v0.0.9) (2020-12-29)
|
|
734
694
|
|
|
735
|
-
|
|
736
695
|
### Features
|
|
737
696
|
|
|
738
|
-
|
|
697
|
+
- add new option resolveWithOriginalResponse ([158d32d](https://github.com/Val-istar-Guo/keq/commit/158d32d66ed64fc213bb254c8214bd6d0b15b80f))
|
|
739
698
|
|
|
740
699
|
### [0.0.8](https://github.com/Val-istar-Guo/keq/compare/v0.0.7...v0.0.8) (2020-11-20)
|
|
741
700
|
|
|
742
|
-
|
|
743
701
|
### Features
|
|
744
702
|
|
|
745
|
-
|
|
746
|
-
|
|
703
|
+
- support highWaterMark ([85c77ff](https://github.com/Val-istar-Guo/keq/commit/85c77ff0cb74fd90ad0c3e67dbe5d94d7f314863))
|
|
747
704
|
|
|
748
705
|
### Bug Fixes
|
|
749
706
|
|
|
750
|
-
|
|
707
|
+
- middleware cannot modified resolveWithFullResponse ([329b766](https://github.com/Val-istar-Guo/keq/commit/329b766c79b945185412f7b3fc13d320f7452f00))
|
|
751
708
|
|
|
752
709
|
### [0.0.7](https://github.com/Val-istar-Guo/keq/compare/v0.0.6...v0.0.7) (2020-11-20)
|
|
753
710
|
|
|
754
|
-
|
|
755
711
|
### Bug Fixes
|
|
756
712
|
|
|
757
|
-
|
|
713
|
+
- don't set content-type when no request body ([291bb65](https://github.com/Val-istar-Guo/keq/commit/291bb65854ba2c70c11c367187c9021962d66ee3))
|
|
758
714
|
|
|
759
715
|
### [0.0.6](https://github.com/Val-istar-Guo/keq/compare/v0.0.5...v0.0.6) (2020-11-13)
|
|
760
716
|
|
|
761
717
|
### [0.0.5](https://github.com/Val-istar-Guo/keq/compare/v0.0.4...v0.0.5) (2020-10-18)
|
|
762
718
|
|
|
763
|
-
|
|
764
719
|
### Bug Fixes
|
|
765
720
|
|
|
766
|
-
|
|
721
|
+
- cannot proxy polyfill response ([74e26d2](https://github.com/Val-istar-Guo/keq/commit/74e26d2f039e947ebf94b2472a9fc7db1c49ee43)), closes [#3](https://github.com/Val-istar-Guo/keq/issues/3)
|
|
767
722
|
|
|
768
723
|
### [0.0.4](https://github.com/Val-istar-Guo/keq/compare/v0.0.3...v0.0.4) (2020-07-16)
|
|
769
724
|
|
|
770
|
-
|
|
771
725
|
### Bug Fixes
|
|
772
726
|
|
|
773
|
-
|
|
727
|
+
- x-ww-form-urlencoded not support array ([4f88e22](https://github.com/Val-istar-Guo/keq/commit/4f88e220b19e8a161020abafff9adfdb951d2bfb)), closes [#1](https://github.com/Val-istar-Guo/keq/issues/1)
|
|
774
728
|
|
|
775
729
|
### [0.0.3](https://github.com/Val-istar-Guo/keq/compare/v0.0.2...v0.0.3) (2020-05-30)
|
|
776
730
|
|
|
777
|
-
|
|
778
731
|
### Bug Fixes
|
|
779
732
|
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
733
|
+
- cannot find fs ([bf52f11](https://github.com/Val-istar-Guo/keq/commit/bf52f11cb337bce92898eff645f2bd41599a4c24))
|
|
734
|
+
- dependence missing ([73f3409](https://github.com/Val-istar-Guo/keq/commit/73f3409922da2a5609a4cd3bcb38624e1c4c1d24))
|
|
735
|
+
- throw error when set undefined to query value ([5fb94a6](https://github.com/Val-istar-Guo/keq/commit/5fb94a667b46d01e3547e4d07424028a5bcc4dea))
|
|
783
736
|
|
|
784
737
|
### [0.0.2](https://github.com/Val-istar-Guo/keq/compare/v0.0.1...v0.0.2) (2020-04-17)
|
|
785
738
|
|