aws-sdk 2.813.0 → 2.814.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 +7 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +11 -0
- package/apis/rds-2014-10-31.min.json +192 -172
- package/clients/ec2.d.ts +13 -1
- package/clients/rds.d.ts +41 -14
- package/dist/aws-sdk-core-react-native.js +6 -1
- package/dist/aws-sdk-react-native.js +13 -3
- package/dist/aws-sdk.js +211 -175
- package/dist/aws-sdk.min.js +53 -53
- package/lib/core.js +1 -1
- package/lib/util.js +5 -0
- package/package.json +1 -1
package/lib/core.js
CHANGED
package/lib/util.js
CHANGED
|
@@ -219,6 +219,11 @@ var util = {
|
|
|
219
219
|
var section = line.match(/^\s*\[([^\[\]]+)\]\s*$/);
|
|
220
220
|
if (section) {
|
|
221
221
|
currentSection = section[1];
|
|
222
|
+
if (currentSection === '__proto__' || currentSection.split(/\s/)[1] === '__proto__') {
|
|
223
|
+
throw util.error(
|
|
224
|
+
new Error('Cannot load profile name \'' + currentSection + '\' from shared ini file.')
|
|
225
|
+
);
|
|
226
|
+
}
|
|
222
227
|
} else if (currentSection) {
|
|
223
228
|
var item = line.match(/^\s*(.+?)\s*=\s*(.+?)\s*$/);
|
|
224
229
|
if (item) {
|