cloudstructs 0.9.0 → 0.9.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/.jsii +3 -3
- package/assets/slack-textract/detect.lambda/index.js +5 -6
- package/lib/codecommit-mirror/index.js +2 -2
- package/lib/dmarc/index.js +1 -1
- package/lib/ecs-service-roller/index.js +2 -2
- package/lib/email-receiver/receiver.js +1 -1
- package/lib/saml-identity-provider/index.js +2 -2
- package/lib/slack-app/manifest.js +1 -1
- package/lib/slack-app/slack-app.js +2 -2
- package/lib/slack-events/index.js +1 -1
- package/lib/slack-textract/index.js +1 -1
- package/lib/ssl-server-test/index.js +1 -1
- package/lib/state-machine-cr-provider/index.js +1 -1
- package/lib/static-website/index.js +1 -1
- package/lib/toolkit-cleaner/index.js +1 -1
- package/lib/url-shortener/index.js +1 -1
- package/node_modules/@slack/logger/node_modules/@types/node/README.md +1 -1
- package/node_modules/@slack/logger/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@slack/logger/node_modules/@types/node/package.json +2 -2
- package/node_modules/@slack/logger/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/@slack/web-api/node_modules/@types/node/README.md +1 -1
- package/node_modules/@slack/web-api/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@slack/web-api/node_modules/@types/node/package.json +2 -2
- package/node_modules/@slack/web-api/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/@types/is-stream/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/is-stream/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@types/is-stream/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/is-stream/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/@types/keyv/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/@types/responselike/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/crypto.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/stream/web.d.ts +1 -0
- package/node_modules/axios/CHANGELOG.md +19 -0
- package/node_modules/axios/README.md +5 -2
- package/node_modules/axios/dist/axios.js +321 -295
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +1 -1
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +3 -3
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +3 -3
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +1 -1
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +5 -6
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/lib/adapters/http.js +1 -1
- package/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/package.json +25 -25
- package/node_modules/follow-redirects/index.js +1 -1
- package/node_modules/follow-redirects/package.json +1 -1
- package/package.json +13 -13
|
@@ -19,7 +19,7 @@ import fromDataURI from '../helpers/fromDataURI.js';
|
|
|
19
19
|
import stream from 'stream';
|
|
20
20
|
import AxiosHeaders from '../core/AxiosHeaders.js';
|
|
21
21
|
import AxiosTransformStream from '../helpers/AxiosTransformStream.js';
|
|
22
|
-
import EventEmitter from 'events';
|
|
22
|
+
import {EventEmitter} from 'events';
|
|
23
23
|
import formDataToStream from "../helpers/formDataToStream.js";
|
|
24
24
|
import readBlob from "../helpers/readBlob.js";
|
|
25
25
|
import ZlibHeaderTransformStream from '../helpers/ZlibHeaderTransformStream.js';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
import utils from '../utils.js';
|
|
4
4
|
import AxiosHeaders from "./AxiosHeaders.js";
|
|
5
5
|
|
|
6
|
-
const headersToObject = (thing) => thing instanceof AxiosHeaders ? thing
|
|
6
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders ? { ...thing } : thing;
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Config-specific merge-function which creates a new config-object
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "1.6.
|
|
1
|
+
export const VERSION = "1.6.8";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axios",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.8",
|
|
4
4
|
"description": "Promise based HTTP client for the browser and node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
@@ -80,41 +80,41 @@
|
|
|
80
80
|
},
|
|
81
81
|
"homepage": "https://axios-http.com",
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@babel/core": "^7.
|
|
84
|
-
"@babel/preset-env": "^7.
|
|
85
|
-
"@commitlint/cli": "^17.
|
|
86
|
-
"@commitlint/config-conventional": "^17.
|
|
83
|
+
"@babel/core": "^7.23.9",
|
|
84
|
+
"@babel/preset-env": "^7.23.9",
|
|
85
|
+
"@commitlint/cli": "^17.8.1",
|
|
86
|
+
"@commitlint/config-conventional": "^17.8.1",
|
|
87
87
|
"@release-it/conventional-changelog": "^5.1.1",
|
|
88
88
|
"@rollup/plugin-babel": "^5.3.1",
|
|
89
89
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
90
90
|
"@rollup/plugin-json": "^4.1.0",
|
|
91
|
-
"@rollup/plugin-multi-entry": "^4.
|
|
91
|
+
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
92
92
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
93
|
-
"abortcontroller-polyfill": "^1.7.
|
|
93
|
+
"abortcontroller-polyfill": "^1.7.5",
|
|
94
94
|
"auto-changelog": "^2.4.0",
|
|
95
|
-
"body-parser": "^1.20.
|
|
96
|
-
"chalk": "^5.
|
|
95
|
+
"body-parser": "^1.20.2",
|
|
96
|
+
"chalk": "^5.3.0",
|
|
97
97
|
"coveralls": "^3.1.1",
|
|
98
98
|
"cross-env": "^7.0.3",
|
|
99
99
|
"dev-null": "^0.1.1",
|
|
100
100
|
"dtslint": "^4.2.1",
|
|
101
101
|
"es6-promise": "^4.2.8",
|
|
102
|
-
"eslint": "^8.
|
|
103
|
-
"express": "^4.18.
|
|
104
|
-
"formdata-node": "^5.0.
|
|
105
|
-
"formidable": "^2.
|
|
102
|
+
"eslint": "^8.56.0",
|
|
103
|
+
"express": "^4.18.2",
|
|
104
|
+
"formdata-node": "^5.0.1",
|
|
105
|
+
"formidable": "^2.1.2",
|
|
106
106
|
"fs-extra": "^10.1.0",
|
|
107
107
|
"get-stream": "^3.0.0",
|
|
108
108
|
"gulp": "^4.0.2",
|
|
109
109
|
"gzip-size": "^7.0.0",
|
|
110
|
-
"handlebars": "^4.7.
|
|
111
|
-
"husky": "^8.0.
|
|
110
|
+
"handlebars": "^4.7.8",
|
|
111
|
+
"husky": "^8.0.3",
|
|
112
112
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
113
|
-
"jasmine-core": "^2.
|
|
113
|
+
"jasmine-core": "^2.99.1",
|
|
114
114
|
"karma": "^6.3.17",
|
|
115
|
-
"karma-chrome-launcher": "^3.
|
|
115
|
+
"karma-chrome-launcher": "^3.2.0",
|
|
116
116
|
"karma-firefox-launcher": "^2.1.2",
|
|
117
|
-
"karma-jasmine": "^1.1.
|
|
117
|
+
"karma-jasmine": "^1.1.2",
|
|
118
118
|
"karma-jasmine-ajax": "^0.1.13",
|
|
119
119
|
"karma-rollup-preprocessor": "^7.0.8",
|
|
120
120
|
"karma-safari-launcher": "^1.0.0",
|
|
@@ -122,12 +122,12 @@
|
|
|
122
122
|
"karma-sinon": "^1.0.5",
|
|
123
123
|
"karma-sourcemap-loader": "^0.3.8",
|
|
124
124
|
"memoizee": "^0.4.15",
|
|
125
|
-
"minimist": "^1.2.
|
|
126
|
-
"mocha": "^10.
|
|
125
|
+
"minimist": "^1.2.8",
|
|
126
|
+
"mocha": "^10.3.0",
|
|
127
127
|
"multer": "^1.4.4",
|
|
128
|
-
"pretty-bytes": "^6.
|
|
129
|
-
"release-it": "^15.
|
|
130
|
-
"rollup": "^2.
|
|
128
|
+
"pretty-bytes": "^6.1.1",
|
|
129
|
+
"release-it": "^15.11.0",
|
|
130
|
+
"rollup": "^2.79.1",
|
|
131
131
|
"rollup-plugin-auto-external": "^2.0.0",
|
|
132
132
|
"rollup-plugin-bundle-size": "^1.0.3",
|
|
133
133
|
"rollup-plugin-terser": "^7.0.2",
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"stream-throttle": "^0.1.3",
|
|
136
136
|
"string-replace-async": "^3.0.2",
|
|
137
137
|
"terser-webpack-plugin": "^4.2.3",
|
|
138
|
-
"typescript": "^4.
|
|
138
|
+
"typescript": "^4.9.5"
|
|
139
139
|
},
|
|
140
140
|
"browser": {
|
|
141
141
|
"./lib/adapters/http.js": "./lib/helpers/null.js",
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
"unpkg": "dist/axios.min.js",
|
|
147
147
|
"typings": "./index.d.ts",
|
|
148
148
|
"dependencies": {
|
|
149
|
-
"follow-redirects": "^1.15.
|
|
149
|
+
"follow-redirects": "^1.15.6",
|
|
150
150
|
"form-data": "^4.0.0",
|
|
151
151
|
"proxy-from-env": "^1.1.0"
|
|
152
152
|
},
|
|
@@ -461,7 +461,7 @@ RedirectableRequest.prototype._processResponse = function (response) {
|
|
|
461
461
|
redirectUrl.protocol !== "https:" ||
|
|
462
462
|
redirectUrl.host !== currentHost &&
|
|
463
463
|
!isSubdomain(redirectUrl.host, currentHost)) {
|
|
464
|
-
removeMatchingHeaders(/^(?:authorization|cookie)$/i, this._options.headers);
|
|
464
|
+
removeMatchingHeaders(/^(?:(?:proxy-)?authorization|cookie)$/i, this._options.headers);
|
|
465
465
|
}
|
|
466
466
|
|
|
467
467
|
// Evaluate the beforeRedirect callback
|
package/package.json
CHANGED
|
@@ -86,17 +86,17 @@
|
|
|
86
86
|
"organization": false
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@aws-sdk/client-cloudformation": "^3.
|
|
90
|
-
"@aws-sdk/client-dynamodb": "^3.
|
|
91
|
-
"@aws-sdk/client-ecr": "^3.
|
|
92
|
-
"@aws-sdk/client-ecs": "^3.
|
|
93
|
-
"@aws-sdk/client-eventbridge": "^3.
|
|
94
|
-
"@aws-sdk/client-iam": "^3.
|
|
95
|
-
"@aws-sdk/client-s3": "^3.
|
|
96
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
97
|
-
"@aws-sdk/client-sfn": "^3.
|
|
98
|
-
"@aws-sdk/client-textract": "^3.
|
|
99
|
-
"@aws-sdk/lib-dynamodb": "^3.
|
|
89
|
+
"@aws-sdk/client-cloudformation": "^3.535.0",
|
|
90
|
+
"@aws-sdk/client-dynamodb": "^3.535.0",
|
|
91
|
+
"@aws-sdk/client-ecr": "^3.535.0",
|
|
92
|
+
"@aws-sdk/client-ecs": "^3.535.0",
|
|
93
|
+
"@aws-sdk/client-eventbridge": "^3.535.0",
|
|
94
|
+
"@aws-sdk/client-iam": "^3.535.0",
|
|
95
|
+
"@aws-sdk/client-s3": "^3.535.0",
|
|
96
|
+
"@aws-sdk/client-secrets-manager": "^3.535.0",
|
|
97
|
+
"@aws-sdk/client-sfn": "^3.535.0",
|
|
98
|
+
"@aws-sdk/client-textract": "^3.535.0",
|
|
99
|
+
"@aws-sdk/lib-dynamodb": "^3.535.0",
|
|
100
100
|
"@types/aws-lambda": "^8.10.136",
|
|
101
101
|
"@types/jest": "^29",
|
|
102
102
|
"@types/node": "^18",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"aws-sdk-client-mock": "^2.2.0",
|
|
109
109
|
"aws-sdk-client-mock-jest": "^2.2.0",
|
|
110
110
|
"constructs": "10.0.5",
|
|
111
|
-
"esbuild": "^0.20.
|
|
111
|
+
"esbuild": "^0.20.2",
|
|
112
112
|
"eslint": "^8",
|
|
113
113
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
114
114
|
"eslint-plugin-import": "^2.29.1",
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
],
|
|
144
144
|
"main": "lib/index.js",
|
|
145
145
|
"license": "Apache-2.0",
|
|
146
|
-
"version": "0.9.
|
|
146
|
+
"version": "0.9.1",
|
|
147
147
|
"jest": {
|
|
148
148
|
"testMatch": [
|
|
149
149
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|