Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove @beta references to @aws-amplify/cli #733

Merged
merged 1 commit into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
run: yarn --frozen-lockfile

- name: Add Amplify CLI
run: yarn global add @aws-amplify/cli@beta
run: yarn global add @aws-amplify/cli

- name: Pull down AWS environments
run: yarn environments pull
Expand Down
7 changes: 4 additions & 3 deletions docs/src/pages/components/authenticator/index.page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,21 @@ Once an end-user has created an account & signed in, the underlying component is
The Authenticator works seamlessly with the [Amplify CLI](https://docs.amplify.aws/cli/start/install/)
to **automatically** work with your backend.

First, update `@aws-amplify/cli@beta` with [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/):
First, update `@aws-amplify/cli` with [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/)
if you're using a version before `6.4.0`:

<Tabs>
<TabItem title="npm">

```shell
npm install -g @aws-amplify/cli@beta
npm install -g @aws-amplify/cli@latest
```

</TabItem>
<TabItem title="yarn">

```shell
yarn add @aws-amplify/cli@beta
yarn global add @aws-amplify/cli@latest
```

</TabItem>
Expand Down
4 changes: 4 additions & 0 deletions environments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This folder contains a list of pre-built Amplify backends for use with manual & automated testing.

## Zero Configuration

These environments rely on `@aws-amplify/cli@latest` (v6.4.0+) to work.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙌


## Using an Existing Backend Environment

For manual and end-to-end testing, example applications will use a particular backend environment by pulling the `aws-exports.js` file from the `environments/{BACKEND_ENVIRONMENT}/src` directory. To use an existing backend environment, please use the following instructions.
Expand Down