amplify-frontend-android
Advanced tools
Comparing version 3.3.2 to 3.3.3-mapsto.0
@@ -6,2 +6,13 @@ # Change Log | ||
## [3.3.3-mapsto.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-frontend-android@3.3.2...amplify-frontend-android@3.3.3-mapsto.0) (2022-01-14) | ||
### Bug Fixes | ||
* fix amplify pull and init to regenerated frontend configuration ([#9499](https://github.com/aws-amplify/amplify-cli/issues/9499)) ([e3e9c2d](https://github.com/aws-amplify/amplify-cli/commit/e3e9c2dc8be90432d95751db09c706eb9ace2863)) | ||
## [3.3.2](https://github.com/aws-amplify/amplify-cli/compare/amplify-frontend-android@3.3.0...amplify-frontend-android@3.3.2) (2022-01-10) | ||
@@ -8,0 +19,0 @@ |
@@ -16,2 +16,21 @@ const constants = require('./constants'); | ||
const AMPLIFY_RESERVED_EXPORT_KEYS = [ | ||
// cognito | ||
'Auth', | ||
'CredentialsProvider', | ||
'CognitoUserPool', | ||
'GoogleSignIn', | ||
'FacebookSignIn', | ||
// s3 | ||
'S3TransferUtility', | ||
// Analytics | ||
'PinpointAnalytics', | ||
'PinpointTargeting', | ||
// Others | ||
'DynamoDBObjectMapper', | ||
'AppSync', | ||
'Lex', | ||
'Sumerian', | ||
]; | ||
const fileNames = ['queries', 'mutations', 'subscriptions']; | ||
@@ -162,7 +181,9 @@ | ||
const customConfigs = {}; | ||
Object.keys(currentAWSConfig).forEach(key => { | ||
if (!cloudAWSConfig[key]) { | ||
customConfigs[key] = currentAWSConfig[key]; | ||
} | ||
}); | ||
Object.keys(currentAWSConfig) | ||
.filter(k => !AMPLIFY_RESERVED_EXPORT_KEYS.includes(k)) | ||
.forEach(key => { | ||
if (!cloudAWSConfig[key]) { | ||
customConfigs[key] = currentAWSConfig[key]; | ||
} | ||
}); | ||
return customConfigs; | ||
@@ -169,0 +190,0 @@ } |
{ | ||
"name": "amplify-frontend-android", | ||
"version": "3.3.2", | ||
"version": "3.3.3-mapsto.0", | ||
"description": "amplify-cli front-end plugin for Android project", | ||
@@ -23,3 +23,3 @@ "repository": { | ||
}, | ||
"gitHead": "3a812c9a3177a9ffc708a0426ad3fc36e0149afb" | ||
"gitHead": "c4506afa1395ec0cc6208167921c320b03229dbf" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
73031
745
2