postman-runtime 7.26.3-beta.1 → 7.26.5
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/.github/dependabot.yml +11 -0
- package/.travis.yml +4 -0
- package/CHANGELOG.yaml +18 -0
- package/dist/index.js +30 -32
- package/lib/authorizer/oauth1.js +13 -3
- package/lib/authorizer/oauth2.js +5 -2
- package/lib/runner/extensions/event.command.js +1 -1
- package/npm/dist.js +39 -0
- package/package.json +16 -13
- package/test/integration/auth-methods/digest.test.js +1 -1
- package/test/integration/auth-methods/ntlm.test.js +1 -1
- package/test/integration/auth-methods/oauth1.test.js +6 -3
- package/test/integration/benchmark/large-response.test.js +1 -1
- package/test/integration/bootstrap.js +0 -1
- package/test/integration/file-uploads/request-body.test.js +17 -8
- package/test/integration/protocol-profile-behavior/disableBodyPruning.test.js +11 -5
- package/test/integration/protocol-profile-behavior/disabledSystemHeaders.test.js +1 -1
- package/test/integration/protocol-profile-behavior/sanity.test.js +1 -1
- package/test/integration/request-body/form-data.test.js +9 -4
- package/test/integration/request-flow/headers.test.js +1 -1
- package/test/integration/request-flow/intermediate-requests.test.js +2 -1
- package/test/integration/request-flow/invalid-url.test.js +1 -1
- package/test/integration/request-flow/ipv6-localhost.test.js +1 -1
- package/test/integration/request-flow/pm-send-request-cookies.test.js +1 -1
- package/test/integration/request-flow/requests-from-sandbox.test.js +3 -2
- package/test/integration/request-flow/response-cookies.test.js +1 -1
- package/test/integration/request-flow/unicode-url.test.js +1 -1
- package/test/integration/request-flow/url-encoding.test.js +1 -1
- package/test/integration/requester-spec/agents.test.js +1 -1
- package/test/integration/requester-spec/extendedRootCA.test.js +1 -1
- package/test/integration/requester-spec/history.test.js +1 -1
- package/test/integration/requester-spec/maxResponseSize.test.js +1 -1
- package/test/integration/requester-spec/redirect.test.js +1 -1
- package/test/integration/requester-spec/timing.test.js +1 -1
- package/test/integration/requester-spec/useWhatWGUrlParser.test.js +1 -1
- package/test/integration/runner-spec/ignoreProxySystemVariables.test.js +1 -1
- package/test/integration/sandbox-libraries/pm.test.js +8 -4
- package/test/integration/sanity/certificate.test.js +1 -1
- package/test/integration/sanity/content-type-in-form-data.test.js +1 -1
- package/test/integration/sanity/cookie-handling.test.js +1 -1
- package/test/integration/sanity/dns-lookup.test.js +1 -1
- package/test/integration/sanity/econnrefused.test.js +1 -1
- package/test/integration/sanity/file-uploads.test.js +1 -1
- package/test/integration/sanity/form-data-order.test.js +1 -1
- package/test/integration/sanity/http-methods.test.js +6 -3
- package/test/integration/sanity/http-reason-phrases.test.js +1 -1
- package/test/integration/sanity/multi-value-response-headers.test.js +1 -1
- package/test/integration/sanity/proxy-http-vars.test.js +1 -1
- package/test/integration/sanity/proxy-http.test.js +1 -1
- package/test/integration/sanity/redirect.test.js +6 -3
- package/test/integration/sanity/request-size.test.js +1 -1
- package/test/integration/sanity/response-status-message.test.js +1 -1
- package/test/integration/sanity/restricted-addresses.test.js +1 -1
- package/test/integration/sanity/script-result.test.js +1 -1
- package/test/integration/sanity/server-ssl.test.js +1 -1
- package/test/integration/sanity/systemproxy.test.js +1 -1
- package/test/integration/sanity/timeouts/request.test.js +1 -1
- package/test/integration/sanity/timeouts/sync-scripts.test.js +1 -1
- package/test/integration/sanity/uvm-globals-this.test.js +1 -1
- package/test/integration/sanity/v2-regression.test.js +1 -1
- package/test/karma.conf.js +2 -2
- package/test/system/repository.test.js +11 -2
- package/test/unit/auth-handlers.test.js +114 -0
- package/test/unit/version.test.js +1 -1
package/.travis.yml
CHANGED
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
7.26.5:
|
|
2
|
+
date: 2020-08-31
|
|
3
|
+
fixed bugs:
|
|
4
|
+
- >-
|
|
5
|
+
GH-1086 Fixed a bug where custom header prefix in OAuth2 was being used
|
|
6
|
+
without trimming
|
|
7
|
+
chores:
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
7.26.4:
|
|
11
|
+
date: 2020-08-18
|
|
12
|
+
fixed bugs:
|
|
13
|
+
- >-
|
|
14
|
+
GH-1063 Fixed a bug where OAuth1 helper was calculating wrong signature
|
|
15
|
+
when callback and verifier parameters are left empty
|
|
16
|
+
chores:
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
1
19
|
7.26.3:
|
|
2
20
|
date: 2020-07-30
|
|
3
21
|
fixed bugs:
|