Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

amplify-frontend-android

Package Overview
Dependencies
Maintainers
5
Versions
578
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amplify-frontend-android - npm Package Compare versions

Comparing version 3.3.2 to 3.3.3-mapsto.0

11

CHANGELOG.md

@@ -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 @@

31

lib/frontend-config-creator.js

@@ -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 @@ }

4

package.json
{
"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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc