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

release(required): Amplify JS release #12539

Merged
merged 47 commits into from
Nov 9, 2023
Merged

release(required): Amplify JS release #12539

merged 47 commits into from
Nov 9, 2023

Conversation

jimblanc
Copy link
Contributor

@jimblanc jimblanc commented Nov 9, 2023

Description of changes

Release of Amplify JS 6.0.1.

Issue #, if available

Description of how you validated changes

Tested publish command in Verdaccio

Checklist

  • PR description included
  • yarn test passes
  • Tests are changed or added
  • Relevant documentation is changed or added (and PR referenced)

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

jimblanc and others added 30 commits October 30, 2023 08:56
* feat: specify identifyEntity metadata type

* fix: add missing properties to metadata

---------

Co-authored-by: Venkata Ramyasri Kota <[email protected]>

---------

Co-authored-by: Venkata Ramyasri Kota <[email protected]>
…d thresholds (#12419)

* reduce todos and update error message for no userpoolId

* chore: add tests and update thresholds

* test to it

* update import path and error string
* chore(adapter-nextjs): bump Next.js supported version to < 15.0

* chore: use Next.js 13.5.6 in the workspace temporarily
* chore: expose storage helpers

* fix test
* export connection state type and enum from /api

* update exports.test snapshot
ashwinkumar6 and others added 17 commits November 3, 2023 11:47
* chore(types): expose CodeDeliveryDetails, HubCapsule types

* resolve conflicts

---------

Co-authored-by: Ashwin Kumar <[email protected]>
Co-authored-by: erinleigh90 <[email protected]>
* fix: vend the required types for custom providers

* chore: expose JWT related types and method

* update snapshot

* rename types to not include AWS prefix

---------

Co-authored-by: Aaron S <[email protected]>
* chore: set up testing branch

* feat(core): set up rollup emitting mjs

* fix: failed unit tests caused by the core mjs emitting

* feat: Analytics migration.

* feat: Update `core` RN entry points and switch to `umd`.

* feat: API + API GraphQL + API REST migration

* feat(auth): set up rollup emitting mjs

* chore: Add `package.json` to API category exports

* feat: Migrate DataStore

* feat: Migrate `datastore-storage-adapter`

* feat: Migrate Geo

* fix(aws-amplify): update unit test snapshots

* feat(storage): set up rollup emitting mjs

* fix(repo): let rollup generate sourcemap

* feat: Migrate Interactions.

* feat(aws-amplify): set up rollup emitting mjs

* feat: Migrate Predictions

* feat: Migrate PubSub

* feat(adapter-nextjs): set up rollup emitting mjs

* chore(repo): move tsbuildinfo file out of dist

* fix(aws-amplify): update unit tests snapshot

* feat(react-native): set up rollup emitting mjs

* feat: Migrate Notifications

* feat(rtn-pn): set up rollup emitting mjs

* feat: Migrate rtn-web-browser

* fix(react-native): wrong main entry point

* fix(auth): resolve circular dependencies deadlock

- Fix relevant unit tests

* fix(repo): move tsbuildinfo file so it can be cleaned

* fix: rn packages rollup emitting

* fix: Use fully resolved imports from Next.js

* fix(aws-amplify): update export snapshot

* fix(storage): remove unnecessary package.json files

* fix(repo): apply preserveModules: true

* REVERT: E2E test suite branch selection

* fix(core): make polyfill importing conform to rollup treeshake

* fix(core): add react-native entry to exports key

* fix(repo): let cjs build using CommonJS module

* fix(storage): xmlParser browser module resolution

* fix(aws-amplify): stablize the exports test

* fix(aws-amplify): rebase size-limit

* chore: use ts for react-native entries

* fix: Properly bundle Paho Vendor file.

* fix(storage): fix fetch xhr override for browser

* fix: Bundle size tests.

* fix(storage): fix runtime module resolution

* fix: Lodash imports.

* fix: Fix package.json errors.

* fix(repo): resolve rollup warned circular dependencies

* chore(repo): ignore license check on rollup config files

* chore(aws-amplify): ignore dual-publish-tmp from jest

* chore(repo): revert testing workflow set up

* Apply suggestions from code review

Co-authored-by: Jim Blanchard <[email protected]>

* chore: remove react-native entries from the /server subpaths

* fix(atastore-storage-adapter): build issue

* fix(repo): typo in the rollup configs

* chore(api-reset): remove unnecessary side effects

* chore(datastore): remove ssr subpath (no longer supported)

* fix(repo): react-native entries

---------

Co-authored-by: Jim Blanchard <[email protected]>
Co-authored-by: Jim Blanchard <[email protected]>
* fix(auth): Do not sign out client if Oauth signout fails

* Do not block local data/tokens clearing for private sessions

* Update to perform slightly different OAuth handling on web vs native

---------

Co-authored-by: Jim Blanchard <[email protected]>
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - [email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - @aws-amplify/[email protected]
 - [email protected]
@jimblanc jimblanc marked this pull request as ready for review November 9, 2023 18:51
@jimblanc jimblanc requested review from a team as code owners November 9, 2023 18:51
@@ -34,7 +34,7 @@ runs:
env:
BRANCH: ${{ github.ref_name }}
run: |
if git ls-remote --exit-code --heads origin $BRANCH >/dev/null 2>&1; then
if git ls-remote origin $BRANCH | grep -q refs/heads/next/$BRANCH$; then
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this correct?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yep this is correct, synced offline

Copy link
Contributor

@elorzafe elorzafe left a comment

Choose a reason for hiding this comment

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

Lets do this 💪

@jimblanc jimblanc merged commit f1408db into release Nov 9, 2023
212 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants