Skip to content

Commit

Permalink
Merge pull request #13397 from aws-amplify/dev-main-merge-7979d82a39d…
Browse files Browse the repository at this point in the history
…cdb7

chore(release): Merge main into dev
  • Loading branch information
sobolk committed Nov 8, 2023
2 parents 2398b84 + 0e3bbf8 commit 7250f38
Show file tree
Hide file tree
Showing 111 changed files with 1,724 additions and 414 deletions.
2 changes: 1 addition & 1 deletion .circleci/cb-publish-step-2-verdaccio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function lernaPublishExitOnFailure {
set -e
# run lerna publish with the args that were passed to this function
# duplicate stdout to a temp file
npx lerna publish "$@" | tee /tmp/publish-results
npx lerna publish "$@" 2>&1 | tee /tmp/publish-results
# grep the temp file for the lerna err token and return exit 1
number_of_lerna_errors=$(grep "lerna ERR" /tmp/publish-results | wc -l)
if [[ number_of_lerna_errors -gt 0 ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .circleci/cb-publish-step-3-npm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function lernaPublishExitOnFailure {
set -e
# run lerna publish with the args that were passed to this function
# duplicate stdout to a temp file
npx lerna publish "$@" | tee /tmp/publish-results
npx lerna publish "$@" 2>&1 | tee /tmp/publish-results
# grep the temp file for the lerna err token and return exit 1
number_of_lerna_errors=$(grep "lerna ERR" /tmp/publish-results | wc -l)
if [[ number_of_lerna_errors -gt 0 ]]; then
Expand Down
4 changes: 2 additions & 2 deletions .circleci/cb-publish-step-4-push-to-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ if [[ "$PROJECT_NAME" == "TaggedReleaseWithoutE2E" ]] || [[ "$PROJECT_NAME" == "
git push origin "$BRANCH_NAME" --no-verify

# push release tags
git tag --points-at HEAD | xargs git push origin
git tag --points-at HEAD | xargs git push origin --no-verify

# @latest release
elif [[ "$PROJECT_NAME" == "Release" ]]; then
# push release commit
git push origin "$BRANCH_NAME" --no-verify

# push release tags
git tag --points-at HEAD | xargs git push origin
git tag --points-at HEAD | xargs git push origin --no-verify

# fast forward main to release
git fetch origin main
Expand Down
1 change: 1 addition & 0 deletions .circleci/codebuild-checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ if [[ "$INITIAL_HEAD_HASH" != "$HEAD_HASH" ]]; then
echo "Fail! Detected a drift of commit we attempt to build!"
echo "INITIAL_HEAD_HASH=$INITIAL_HEAD_HASH"
echo "HEAD_HASH=$HEAD_HASH"
exit 1
fi
5 changes: 5 additions & 0 deletions .github/workflows/build-test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
with:
persist-credentials: false

- name: Install Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: '3.11'

- name: Install Dependencies
run: yarn install

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"test": "lerna run test --concurrency 1",
"update-data-packages": "./scripts/update-data-dependencies.sh && yarn && yarn dedupe",
"update-test-timing-data": "ts-node ./scripts/cci-get-job-metrics.ts && ts-node ./scripts/cci-extract-test-timings-from-job-metrics.ts",
"update-versions": "lerna version --yes --no-commit-hooks --no-push --exact --conventional-commits --no-git-tag-version",
"update-versions": "lerna version --yes --no-commit-hooks --no-push --exact --conventional-commits --no-git-tag-version --force-publish",
"verdaccio-clean": "rimraf ../verdaccio-cache",
"verdaccio-connect": "bash -c 'source .circleci/local_publish_helpers_codebuild.sh && setNpmRegistryUrlToLocal'",
"verdaccio-disconnect": "bash -c 'source .circleci/local_publish_helpers_codebuild.sh && unsetNpmRegistryUrl'",
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.25](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [5.0.24](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.0.23](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.0.22](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-21)

**Note:** Version bump only for package @aws-amplify/amplify-app
Expand Down
10 changes: 5 additions & 5 deletions packages/amplify-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/amplify-app",
"version": "5.0.22",
"version": "5.0.25",
"description": "Amplify CLI",
"repository": {
"type": "git",
Expand All @@ -26,10 +26,10 @@
"@aws-amplify/cli": ">=5.0.0"
},
"dependencies": {
"@aws-amplify/amplify-frontend-android": "3.5.6",
"@aws-amplify/amplify-frontend-flutter": "1.4.5",
"@aws-amplify/amplify-frontend-ios": "3.6.23",
"@aws-amplify/amplify-frontend-javascript": "3.10.4",
"@aws-amplify/amplify-frontend-android": "3.5.8",
"@aws-amplify/amplify-frontend-flutter": "1.4.7",
"@aws-amplify/amplify-frontend-ios": "3.6.26",
"@aws-amplify/amplify-frontend-javascript": "3.10.7",
"chalk": "^4.1.1",
"execa": "^5.1.1",
"fs-extra": "^8.1.0",
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-appsync-simulator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.15.5](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [2.15.4](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [2.15.3](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [2.15.2](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-21)

**Note:** Version bump only for package @aws-amplify/amplify-appsync-simulator
Expand Down
10 changes: 5 additions & 5 deletions packages/amplify-appsync-simulator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/amplify-appsync-simulator",
"version": "2.15.2",
"version": "2.15.5",
"description": "An AppSync Simulator to test AppSync API.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,11 +30,11 @@
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "4.2.10",
"@aws-amplify/amplify-prompts": "2.8.4",
"@aws-amplify/amplify-cli-core": "4.2.13",
"@aws-amplify/amplify-prompts": "2.8.6",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.5.1",
"amplify-velocity-template": "1.4.12",
"amplify-velocity-template": "1.4.14",
"aws-sdk": "^2.1464.0",
"chalk": "^4.1.1",
"cors": "^2.8.5",
Expand All @@ -59,7 +59,7 @@
"ws": "^8.5.0"
},
"devDependencies": {
"@aws-amplify/amplify-graphiql-explorer": "2.5.10",
"@aws-amplify/amplify-graphiql-explorer": "2.5.12",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/node": "^12.12.6",
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-category-analytics/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.25](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [5.0.24](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.0.23](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.0.22](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-12)

**Note:** Version bump only for package @aws-amplify/amplify-category-analytics
Expand Down
8 changes: 4 additions & 4 deletions packages/amplify-category-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/amplify-category-analytics",
"version": "5.0.22",
"version": "5.0.25",
"description": "amplify-cli analytics plugin",
"repository": {
"type": "git",
Expand All @@ -25,9 +25,9 @@
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "4.2.10",
"@aws-amplify/amplify-environment-parameters": "1.9.1",
"@aws-amplify/amplify-prompts": "2.8.4",
"@aws-amplify/amplify-cli-core": "4.2.13",
"@aws-amplify/amplify-environment-parameters": "1.9.4",
"@aws-amplify/amplify-prompts": "2.8.6",
"fs-extra": "^8.1.0",
"uuid": "^8.3.2"
},
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-category-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.7.4](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [3.7.3](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [3.7.2](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [3.7.1](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-12)

**Note:** Version bump only for package @aws-amplify/amplify-category-auth
Expand Down
18 changes: 9 additions & 9 deletions packages/amplify-category-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/amplify-category-auth",
"version": "3.7.1",
"version": "3.7.4",
"description": "amplify-cli authentication plugin",
"repository": {
"type": "git",
Expand Down Expand Up @@ -28,14 +28,14 @@
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "4.2.10",
"@aws-amplify/amplify-environment-parameters": "1.9.1",
"@aws-amplify/amplify-function-plugin-interface": "1.11.0",
"@aws-amplify/amplify-prompts": "2.8.4",
"@aws-amplify/amplify-util-import": "2.8.1",
"@aws-amplify/cli-extensibility-helper": "3.0.20",
"amplify-headless-interface": "1.17.4",
"amplify-util-headless-input": "1.9.15",
"@aws-amplify/amplify-cli-core": "4.2.13",
"@aws-amplify/amplify-environment-parameters": "1.9.4",
"@aws-amplify/amplify-function-plugin-interface": "1.12.1",
"@aws-amplify/amplify-prompts": "2.8.6",
"@aws-amplify/amplify-util-import": "2.8.3",
"@aws-amplify/cli-extensibility-helper": "3.0.23",
"amplify-headless-interface": "1.17.6",
"amplify-util-headless-input": "1.9.17",
"aws-cdk-lib": "~2.80.0",
"aws-sdk": "^2.1464.0",
"axios": "^0.26.0",
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-category-custom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.13](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [3.1.12](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [3.1.11](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [3.1.10](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-12)

**Note:** Version bump only for package @aws-amplify/amplify-category-custom
Expand Down
6 changes: 3 additions & 3 deletions packages/amplify-category-custom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/amplify-category-custom",
"version": "3.1.10",
"version": "3.1.13",
"description": "amplify-cli custom resources plugin",
"repository": {
"type": "git",
Expand All @@ -26,8 +26,8 @@
"access": "public"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "4.2.10",
"@aws-amplify/amplify-prompts": "2.8.4",
"@aws-amplify/amplify-cli-core": "4.2.13",
"@aws-amplify/amplify-prompts": "2.8.6",
"aws-cdk-lib": "~2.80.0",
"execa": "^5.1.1",
"fs-extra": "^8.1.0",
Expand Down
27 changes: 27 additions & 0 deletions packages/amplify-category-function/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.6.4](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)


### Bug Fixes

* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7))





## [5.6.3](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.6.2](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-11-08)

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





## [5.6.1](https://github.com/aws-amplify/amplify-cli/compare/@aws-amplify/[email protected]...@aws-amplify/[email protected]) (2023-10-12)


Expand Down
Loading

0 comments on commit 7250f38

Please sign in to comment.