You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove unused uuid dependency from api-graphql, predictions, and interactions (#14788)
* fix: remove unused uuid dependency from api-graphql, predictions, and interactions
Remove direct uuid dependency from packages that don't need it to address GHSA-w5hq-g745-h8pq (out-of-bounds write in uuid v3/v5/v6).
- api-graphql: removed uuid dep (already uses amplifyUuid from core)
- predictions: removed uuid dep (never imported)
- interactions: replaced direct uuid import with amplifyUuid from core
The uuid dependency is now consolidated in @aws-amplify/core, which is the only package that wraps uuid v4 via amplifyUuid.
* test: replace uuid with amplifyUuid in interactions test files
Remove unused uuid dependency from @aws-amplify/api-graphql, @aws-amplify/interactions, and @aws-amplify/predictions packages. All UUID generation is now consolidated through @aws-amplify/core's amplifyUuid wrapper, addressing security advisory GHSA-w5hq-g745-h8pq.
0 commit comments