From e02bc4d189860177004daefd61b32283075cc03b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Mar 2022 14:39:59 -0800 Subject: [PATCH] Version Packages (#1420) Co-authored-by: github-actions[bot] --- .changeset/cyan-cougars-act.md | 6 ------ .changeset/sixty-bulldogs-ring.md | 5 ----- .changeset/slow-radios-try.md | 9 --------- .changeset/spotty-stingrays-hope.md | 6 ------ docs/package.json | 2 +- examples/angular/package.json | 2 +- examples/next/package.json | 2 +- examples/vue/package.json | 2 +- .../angular/projects/ui-angular/CHANGELOG.md | 12 ++++++++++++ .../angular/projects/ui-angular/package.json | 4 ++-- packages/e2e/package.json | 2 +- packages/react/CHANGELOG.md | 18 ++++++++++++++++++ packages/react/package.json | 4 ++-- packages/ui/CHANGELOG.md | 13 +++++++++++++ packages/ui/package.json | 2 +- packages/vue/CHANGELOG.md | 12 ++++++++++++ packages/vue/package.json | 4 ++-- 17 files changed, 67 insertions(+), 38 deletions(-) delete mode 100644 .changeset/cyan-cougars-act.md delete mode 100644 .changeset/sixty-bulldogs-ring.md delete mode 100644 .changeset/slow-radios-try.md delete mode 100644 .changeset/spotty-stingrays-hope.md diff --git a/.changeset/cyan-cougars-act.md b/.changeset/cyan-cougars-act.md deleted file mode 100644 index e786a2c7419..00000000000 --- a/.changeset/cyan-cougars-act.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@aws-amplify/ui-react": patch -"@aws-amplify/ui": patch ---- - -Fixing checkbox `labelPosition` to position the label correctly. Now `labelPosition="start"` actually means *start*. diff --git a/.changeset/sixty-bulldogs-ring.md b/.changeset/sixty-bulldogs-ring.md deleted file mode 100644 index d6eeada79ab..00000000000 --- a/.changeset/sixty-bulldogs-ring.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aws-amplify/ui-react": patch ---- - -Add `margin` and `padding` style props (`marginTop`, `paddingBottom`, etc) diff --git a/.changeset/slow-radios-try.md b/.changeset/slow-radios-try.md deleted file mode 100644 index 35c5b142b74..00000000000 --- a/.changeset/slow-radios-try.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@aws-amplify/ui-angular': minor -'@aws-amplify/ui-react': minor -'@aws-amplify/ui': minor -'@aws-amplify/ui-vue': minor ---- - -Added new formfields prop that allows more customization of inputs and setup TOTP. -New docs can be found at https://ui.docs.amplify.aws/components/authenticator#form-field-customization diff --git a/.changeset/spotty-stingrays-hope.md b/.changeset/spotty-stingrays-hope.md deleted file mode 100644 index 00f0129353e..00000000000 --- a/.changeset/spotty-stingrays-hope.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@aws-amplify/ui-react": patch -"@aws-amplify/ui": patch ---- - -Fix undefined reference in reset password flow diff --git a/docs/package.json b/docs/package.json index 3d6ddcaa134..e46e9763317 100644 --- a/docs/package.json +++ b/docs/package.json @@ -16,7 +16,7 @@ "test": "$_ run build" }, "dependencies": { - "@aws-amplify/ui-react": "^2.6.2", + "@aws-amplify/ui-react": "^2.7.0", "@codesandbox/sandpack-react": "0.1.9", "@cucumber/gherkin": "^19.0.3", "@cucumber/messages": "^16.0.1", diff --git a/examples/angular/package.json b/examples/angular/package.json index 807c6fdd488..87377523de8 100644 --- a/examples/angular/package.json +++ b/examples/angular/package.json @@ -21,7 +21,7 @@ "@angular/platform-browser": "~11.2.14", "@angular/platform-browser-dynamic": "~11.2.14", "@angular/router": "~11.2.14", - "@aws-amplify/ui-angular": "^2.1.3", + "@aws-amplify/ui-angular": "^2.2.0", "rxjs": "~6.6.0", "tslib": "^2.0.0", "zone.js": "~0.11.3" diff --git a/examples/next/package.json b/examples/next/package.json index 316564cffe8..170a0216ed9 100644 --- a/examples/next/package.json +++ b/examples/next/package.json @@ -10,7 +10,7 @@ "lint": "next lint" }, "dependencies": { - "@aws-amplify/ui-react": "^2.6.2", + "@aws-amplify/ui-react": "^2.7.0", "@types/node": "^15.12.4", "@types/react": "^17.0.11", "next": "^11.1.3", diff --git a/examples/vue/package.json b/examples/vue/package.json index 1e0baaf99a5..0981504b828 100644 --- a/examples/vue/package.json +++ b/examples/vue/package.json @@ -10,7 +10,7 @@ "start": "vite preview --port 3000" }, "dependencies": { - "@aws-amplify/ui-vue": "^2.1.3", + "@aws-amplify/ui-vue": "^2.2.0", "aws-amplify": "latest", "vue": "^3.0.5", "vue-router": "4" diff --git a/packages/angular/projects/ui-angular/CHANGELOG.md b/packages/angular/projects/ui-angular/CHANGELOG.md index a4527655cca..5c19005b499 100644 --- a/packages/angular/projects/ui-angular/CHANGELOG.md +++ b/packages/angular/projects/ui-angular/CHANGELOG.md @@ -1,5 +1,17 @@ # @aws-amplify/ui-angular +## 2.2.0 + +### Minor Changes + +- [#1389](https://github.com/aws-amplify/amplify-ui/pull/1389) [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831) Thanks [@ErikCH](https://github.com/ErikCH)! - Added new formfields prop that allows more customization of inputs and setup TOTP. + New docs can be found at https://ui.docs.amplify.aws/components/authenticator#form-field-customization + +### Patch Changes + +- Updated dependencies [[`74e066622`](https://github.com/aws-amplify/amplify-ui/commit/74e066622e9abe26e9f9427f6bdc82c4e14d4952), [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831), [`5b3b8479a`](https://github.com/aws-amplify/amplify-ui/commit/5b3b8479aea06c6b7df031dc6493abdd36b0bd6a)]: + - @aws-amplify/ui@3.1.0 + ## 2.1.3 ### Patch Changes diff --git a/packages/angular/projects/ui-angular/package.json b/packages/angular/projects/ui-angular/package.json index 55a2e8b8d70..df53a0dc52f 100644 --- a/packages/angular/projects/ui-angular/package.json +++ b/packages/angular/projects/ui-angular/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/ui-angular", - "version": "2.1.3", + "version": "2.2.0", "scripts": { "build": "yarn --cwd ../../ build", "dev": "yarn --cwd ../../ dev", @@ -14,7 +14,7 @@ }, "dependencies": { "@aws-amplify/ui-components": "^1.7.0", - "@aws-amplify/ui": "3.0.15", + "@aws-amplify/ui": "3.1.0", "@stencil/core": "2.8.0", "nanoid": "3.1.31", "qrcode": "1.5.0", diff --git a/packages/e2e/package.json b/packages/e2e/package.json index 88f57a4b1d9..a274aa89848 100644 --- a/packages/e2e/package.json +++ b/packages/e2e/package.json @@ -17,7 +17,7 @@ "stepDefinitions": "features" }, "devDependencies": { - "@aws-amplify/ui": "^3.0.15", + "@aws-amplify/ui": "^3.1.0", "aws-crt": "^1.10.6", "@testing-library/cypress": "^7.0.6", "@types/cypress-cucumber-preprocessor": "^4.0.0", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 1fb78d93b89..8ab81db380d 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,23 @@ # @aws-amplify/ui-react +## 2.7.0 + +### Minor Changes + +- [#1389](https://github.com/aws-amplify/amplify-ui/pull/1389) [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831) Thanks [@ErikCH](https://github.com/ErikCH)! - Added new formfields prop that allows more customization of inputs and setup TOTP. + New docs can be found at https://ui.docs.amplify.aws/components/authenticator#form-field-customization + +### Patch Changes + +- [#1415](https://github.com/aws-amplify/amplify-ui/pull/1415) [`74e066622`](https://github.com/aws-amplify/amplify-ui/commit/74e066622e9abe26e9f9427f6bdc82c4e14d4952) Thanks [@dbanksdesign](https://github.com/dbanksdesign)! - Fixing checkbox `labelPosition` to position the label correctly. Now `labelPosition="start"` actually means _start_. + +* [#1432](https://github.com/aws-amplify/amplify-ui/pull/1432) [`6c51a2400`](https://github.com/aws-amplify/amplify-ui/commit/6c51a2400f87fe3fb45913b898c2b60740b71894) Thanks [@joebuono](https://github.com/joebuono)! - Add `margin` and `padding` style props (`marginTop`, `paddingBottom`, etc) + +- [#1417](https://github.com/aws-amplify/amplify-ui/pull/1417) [`5b3b8479a`](https://github.com/aws-amplify/amplify-ui/commit/5b3b8479aea06c6b7df031dc6493abdd36b0bd6a) Thanks [@wlee221](https://github.com/wlee221)! - Fix undefined reference in reset password flow + +- Updated dependencies [[`74e066622`](https://github.com/aws-amplify/amplify-ui/commit/74e066622e9abe26e9f9427f6bdc82c4e14d4952), [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831), [`5b3b8479a`](https://github.com/aws-amplify/amplify-ui/commit/5b3b8479aea06c6b7df031dc6493abdd36b0bd6a)]: + - @aws-amplify/ui@3.1.0 + ## 2.6.2 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 59889bfa920..f34981eac3d 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/ui-react", - "version": "2.6.2", + "version": "2.7.0", "main": "dist/index.js", "module": "dist/esm/index.js", "exports": { @@ -49,7 +49,7 @@ "test:unit:watch": "jest --watch" }, "dependencies": { - "@aws-amplify/ui": "3.0.15", + "@aws-amplify/ui": "3.1.0", "@aws-amplify/ui-react-v1": "npm:@aws-amplify/ui-react@1.2.9", "@radix-ui/react-accordion": "0.1.1", "@radix-ui/react-dropdown-menu": "0.1.1", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index dc771e51687..7fe2a5095b5 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,18 @@ # @aws-amplify/ui +## 3.1.0 + +### Minor Changes + +- [#1389](https://github.com/aws-amplify/amplify-ui/pull/1389) [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831) Thanks [@ErikCH](https://github.com/ErikCH)! - Added new formfields prop that allows more customization of inputs and setup TOTP. + New docs can be found at https://ui.docs.amplify.aws/components/authenticator#form-field-customization + +### Patch Changes + +- [#1415](https://github.com/aws-amplify/amplify-ui/pull/1415) [`74e066622`](https://github.com/aws-amplify/amplify-ui/commit/74e066622e9abe26e9f9427f6bdc82c4e14d4952) Thanks [@dbanksdesign](https://github.com/dbanksdesign)! - Fixing checkbox `labelPosition` to position the label correctly. Now `labelPosition="start"` actually means _start_. + +* [#1417](https://github.com/aws-amplify/amplify-ui/pull/1417) [`5b3b8479a`](https://github.com/aws-amplify/amplify-ui/commit/5b3b8479aea06c6b7df031dc6493abdd36b0bd6a) Thanks [@wlee221](https://github.com/wlee221)! - Fix undefined reference in reset password flow + ## 3.0.15 ### Patch Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index ca3e8a394d7..6faef9c2244 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/ui", - "version": "3.0.15", + "version": "3.1.0", "main": "dist/index.js", "module": "dist/esm/index.js", "exports": { diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 3c60fef14d9..ea78fbec660 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,17 @@ # @aws-amplify/ui-vue +## 2.2.0 + +### Minor Changes + +- [#1389](https://github.com/aws-amplify/amplify-ui/pull/1389) [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831) Thanks [@ErikCH](https://github.com/ErikCH)! - Added new formfields prop that allows more customization of inputs and setup TOTP. + New docs can be found at https://ui.docs.amplify.aws/components/authenticator#form-field-customization + +### Patch Changes + +- Updated dependencies [[`74e066622`](https://github.com/aws-amplify/amplify-ui/commit/74e066622e9abe26e9f9427f6bdc82c4e14d4952), [`57f1441e4`](https://github.com/aws-amplify/amplify-ui/commit/57f1441e4809218a813148d0942de8171d159831), [`5b3b8479a`](https://github.com/aws-amplify/amplify-ui/commit/5b3b8479aea06c6b7df031dc6493abdd36b0bd6a)]: + - @aws-amplify/ui@3.1.0 + ## 2.1.3 ### Patch Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index 7bc7114c7ad..b85194ad8ac 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/ui-vue", - "version": "2.1.3", + "version": "2.2.0", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", @@ -29,7 +29,7 @@ "test:unit:watch": "jest --watch" }, "dependencies": { - "@aws-amplify/ui": "3.0.15", + "@aws-amplify/ui": "3.1.0", "@vueuse/core": "7.5.5", "@xstate/vue": "0.8.1", "qrcode": "1.5.0"