Skip to content

Commit

Permalink
Merge branch 'main' into fix/7959-requiredattributes-givenname-placeh…
Browse files Browse the repository at this point in the history
…older
  • Loading branch information
wlee221 authored Mar 23, 2021
2 parents f4c008c + 5af2e1a commit 4f97898
Show file tree
Hide file tree
Showing 48 changed files with 309 additions and 163 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: New Bug report
name: Bug report
description: Create a report to help us improve Amplify JS
title: ''
issue_body: true
Expand All @@ -10,9 +10,7 @@ body:
- type: markdown
attributes:
value: |
For reference, the current versions of the Amplify JS packages are listed below.
Please verify your issue against the latest version(s).
For reference, the current versions of the Amplify JS packages are listed below. Please verify your issue against the latest version(s) of the relevant package(s):
<details>
<summary>Click to expand version list</summary>
Expand Down Expand Up @@ -61,13 +59,6 @@ body:
attributes:
value: |
---
- type: checkboxes
attributes:
label: Is this a production issue?
description: |
Are you experiencing this issue with a production application where end users are affected?
options:
- label: (check box if yes)
- type: markdown
attributes:
value: |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
89 changes: 89 additions & 0 deletions .github/ISSUE_TEMPLATE/5.bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
---
name: Old Bug report
about: Create a report to help us improve
title: ''
labels: to-be-reproduced
assignees: ''
---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Code Snippet**
Please provide a code snippet or a link to sample code of the issue you are experiencing to help us reproduce the issue. (Be sure to remove any sensitive data)

**Screenshots**
If applicable, add screenshots to help explain your problem.

**What is Configured?**
If applicable, please provide what is configured for Amplify CLI:

- Which steps did you follow via Amplify CLI when configuring your resources.
- Which resources do you have configured?
- If applicable, please provide your `aws-exports` file:
```
const awsmobile = {
"aws_project_region": "us-east-1",
"aws_cognito_identity_pool_id": "us-east-1:xxx-xxxx-xxxx-xxxx-xxxxxxxx",
"aws_cognito_region": "us-east-1",
"aws_user_pools_id": "us-east-1_xxx",
"aws_user_pools_web_client_id": "xxxx",
"oauth": {}
};
```
- If applicable, please provide your manual configuration example:
```
{
Auth: {
identityPoolId: 'XX-XXXX-X:XXXXXXXX-XXXX-1234-abcd-1234567890ab',
region: 'XX-XXXX-X',
identityPoolRegion: 'XX-XXXX-X',
userPoolId: 'XX-XXXX-X_abcd1234',
userPoolWebClientId: 'a1b2c3d4e5f6g7h8i9j0k1l2m3',
mandatorySignIn: false,
authenticationFlowType: 'USER_PASSWORD_AUTH',
oauth: {
domain: 'your_cognito_domain',
scope: ['phone', 'email', 'profile', 'openid', 'aws.cognito.signin.user.admin'],
redirectSignIn: 'http://localhost:3000/',
redirectSignOut: 'http://localhost:3000/',
responseType: 'code' // or 'token', note that REFRESH token will only be generated when the responseType is code
}
}
}
```
- If applicable, provide more configuration data, for example for Amazon Cognito, run `aws cognito-idp describe-user-pool --user-pool-id us-west-2_xxxxxx` (Be sure to remove any sensitive data)

<details>
<summary><strong>Environment</strong></summary>

<!-- Please run the following command inside your project and copy/paste the output into the codeblock: -->

```
npx envinfo --system --binaries --browsers --npmPackages --npmGlobalPackages
```

</details>

**Smartphone (please complete the following information):**

- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.

**_You can turn on the debug mode to provide more info for us by setting window.LOG_LEVEL = 'DEBUG'; in your app._**
90 changes: 0 additions & 90 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ package-lock.json
www
.stencil
PULL_REQUEST_TEMPLATE.md
ISSUE_TEMPLATE/*.md
11 changes: 11 additions & 0 deletions packages/amazon-cognito-identity-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.6.0](https://github.com/aws-amplify/amplify-js/compare/amazon-cognito-identity-js@4.5.14...amazon-cognito-identity-js@4.6.0) (2021-03-18)


### Features

* Improve Next.js/CRA/Angular bundle sizes ([#7842](https://github.com/aws-amplify/amplify-js/issues/7842)) ([2e0dc61](https://github.com/aws-amplify/amplify-js/commit/2e0dc61fa9e4399351a59a7e8fe801027b6587d5))





## [4.5.14](https://github.com/aws-amplify/amplify-js/compare/amazon-cognito-identity-js@4.5.13...amazon-cognito-identity-js@4.5.14) (2021-03-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/amazon-cognito-identity-js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/amazon-cognito-identity-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "amazon-cognito-identity-js",
"description": "Amazon Cognito Identity Provider JavaScript SDK",
"version": "4.5.14",
"version": "4.6.0",
"author": {
"name": "Amazon Web Services",
"email": "aws@amazon.com",
Expand Down
8 changes: 8 additions & 0 deletions packages/amplify-ui-storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/ui-storybook@1.0.6...@aws-amplify/ui-storybook@1.0.7) (2021-03-18)

**Note:** Version bump only for package @aws-amplify/ui-storybook





## [1.0.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/ui-storybook@1.0.5...@aws-amplify/ui-storybook@1.0.6) (2021-03-12)

**Note:** Version bump only for package @aws-amplify/ui-storybook
Expand Down
4 changes: 2 additions & 2 deletions packages/amplify-ui-storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/ui-storybook",
"version": "1.0.6",
"version": "1.0.7",
"private": true,
"dependencies": {
"@aws-amplify/ui-react": "0.2.38",
Expand All @@ -10,7 +10,7 @@
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"aws-amplify": "3.3.24",
"aws-amplify": "3.3.25",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.12.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.0.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@4.0.15...@aws-amplify/analytics@4.0.16) (2021-03-18)

**Note:** Version bump only for package @aws-amplify/analytics





## [4.0.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@4.0.14...@aws-amplify/analytics@4.0.15) (2021-03-12)

**Note:** Version bump only for package @aws-amplify/analytics
Expand Down
6 changes: 3 additions & 3 deletions packages/analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/analytics",
"version": "4.0.15",
"version": "4.0.16",
"description": "Analytics category of aws-amplify",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
Expand Down Expand Up @@ -43,8 +43,8 @@
},
"homepage": "https://aws-amplify.github.io/",
"dependencies": {
"@aws-amplify/cache": "3.1.52",
"@aws-amplify/core": "3.8.19",
"@aws-amplify/cache": "3.1.53",
"@aws-amplify/core": "3.8.20",
"@aws-sdk/client-firehose": "3.6.1",
"@aws-sdk/client-kinesis": "3.6.1",
"@aws-sdk/client-personalize-events": "3.6.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/api-graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.2.28](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@1.2.27...@aws-amplify/api-graphql@1.2.28) (2021-03-18)

**Note:** Version bump only for package @aws-amplify/api-graphql





## [1.2.27](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@1.2.26...@aws-amplify/api-graphql@1.2.27) (2021-03-12)

**Note:** Version bump only for package @aws-amplify/api-graphql
Expand Down
12 changes: 6 additions & 6 deletions packages/api-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/api-graphql",
"version": "1.2.27",
"version": "1.2.28",
"description": "Api-graphql category of aws-amplify",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
Expand Down Expand Up @@ -44,11 +44,11 @@
"@types/zen-observable": "^0.8.0"
},
"dependencies": {
"@aws-amplify/api-rest": "1.2.27",
"@aws-amplify/auth": "3.4.27",
"@aws-amplify/cache": "3.1.52",
"@aws-amplify/core": "3.8.19",
"@aws-amplify/pubsub": "3.2.25",
"@aws-amplify/api-rest": "1.2.28",
"@aws-amplify/auth": "3.4.28",
"@aws-amplify/cache": "3.1.53",
"@aws-amplify/core": "3.8.20",
"@aws-amplify/pubsub": "3.2.26",
"graphql": "14.0.0",
"uuid": "^3.2.1",
"zen-observable-ts": "0.8.19"
Expand Down
8 changes: 8 additions & 0 deletions packages/api-rest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.2.28](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@1.2.27...@aws-amplify/api-rest@1.2.28) (2021-03-18)

**Note:** Version bump only for package @aws-amplify/api-rest





## [1.2.27](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@1.2.26...@aws-amplify/api-rest@1.2.27) (2021-03-12)

**Note:** Version bump only for package @aws-amplify/api-rest
Expand Down
4 changes: 2 additions & 2 deletions packages/api-rest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/api-rest",
"version": "1.2.27",
"version": "1.2.28",
"description": "Api-rest category of aws-amplify",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"homepage": "https://aws-amplify.github.io/",
"dependencies": {
"@aws-amplify/core": "3.8.19",
"@aws-amplify/core": "3.8.20",
"axios": "0.21.1"
},
"jest": {
Expand Down
Loading

0 comments on commit 4f97898

Please sign in to comment.