Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2025

Bumps the production-dependencies group in /apps/cirrus with 36 updates:

Package From To
@aws-lambda-powertools/logger 2.13.1 2.17.0
@aws-lambda-powertools/parameters 2.13.1 2.17.0
@aws-sdk/client-dynamodb 3.716.0 3.777.0
@aws-sdk/client-personalize 3.716.0 3.777.0
@aws-sdk/client-s3 3.716.0 3.779.0
@aws-sdk/client-ssm 3.716.0 3.777.0
@smithy/types 3.7.2 4.2.0
aws-amplify 6.10.3 6.14.1
@aws-amplify/analytics 7.0.63 7.0.77
@aws-amplify/api 6.1.8 6.3.8
@aws-amplify/api-graphql 4.6.6 4.7.12
@aws-amplify/api-rest 4.0.63 4.1.1
@aws-amplify/auth 6.8.3 6.12.1
@aws-amplify/core 6.7.3 6.11.1
@aws-amplify/data-schema 1.17.2 1.20.2
@aws-amplify/datastore 5.0.65 5.0.79
@aws-amplify/notifications 2.0.63 2.0.77
@aws-amplify/storage 6.7.4 6.8.1
@aws-lambda-powertools/commons 2.13.1 2.17.0
@aws-sdk/endpoint-cache 3.693.0 3.723.0
@aws-sdk/middleware-bucket-endpoint 3.714.0 3.775.0
@aws-sdk/middleware-endpoint-discovery 3.714.0 3.775.0
@aws-sdk/middleware-expect-continue 3.714.0 3.775.0
@aws-sdk/middleware-flexible-checksums 3.716.0 3.775.0
@aws-sdk/middleware-location-constraint 3.714.0 3.775.0
@aws-sdk/middleware-sdk-s3 3.716.0 3.775.0
@aws-sdk/middleware-ssec 3.714.0 3.775.0
@aws-sdk/signature-v4-multi-region 3.716.0 3.775.0
@aws-sdk/xml-builder 3.709.0 3.775.0
@smithy/chunked-blob-reader 4.0.0 5.0.0
@smithy/chunked-blob-reader-native 3.0.1 4.0.0
@smithy/hash-blob-browser 3.1.10 4.0.2
@smithy/hash-stream-node 3.1.10 4.0.2
@types/aws-lambda 8.10.147 8.10.148
rxjs 7.8.1 7.8.2
ulid 2.3.0 2.4.0

Updates @aws-lambda-powertools/logger from 2.13.1 to 2.17.0

Release notes

Sourced from @​aws-lambda-powertools/logger's releases.

v2.17.0

Summary

This release introduces the new Validation utility to validate payloads with JSON Schemas. This addition further reduces the feature gap between this version of Powertools for AWS Lambda and the more mature one in Python, and it’s also the first utility that was built primarily by community contributors, hats off to @​VatsalGoel3!

The release also enhances Logger with correlation ID support, improves cold start reporting for Provisioned Concurrency, adds customizable function name dimensions for metrics, and extends Lambda layer availability to GovCloud (US) regions.

⭐️ Thanks to @​VatsalGoel3 and @​steven10172 for their contributions, and Guild for becoming a public reference customer!

New Validation utility

Docs

The new Validation utility helps you validate incoming events and responses using JSON Schemas. This is useful when you want request payloads to conform to expected formats. You can also verify that responses meet defined structures, ensuring consistency in both input and output.

Installation

npm i @aws-lambda-powertools/validation

Key Features

  • JSON Schema validation (supports draft-07 by default, configurable to any version supported by Ajv
  • Multiple implementation options:
    • Class method decorator @validator
    • Middy.js middleware validator
    • Standalone validate function
  • Flexible validation targets:
    • Incoming requests
    • Outbound responses
    • Partial payload validation using JMESPath expressions

Examples

Using Middy.js middleware:

carbon-9

Using decorator with envelope extraction:

carbon-10

Error handling with standalone validation:

carbon-6

Learn more

Head over to the documentation to learn more about the utility and see more examples.

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/logger's changelog.

2.17.0 (2025-03-25)

Bug Fixes

  • ci: Remove --compatible-architectures from workflow (#3752) (dafa496)
  • idempotency: include sk in error msgs when using composite key (#3709) (661f5ff)
  • logger: correctly refresh sample rate (#3722) (2692ca4)
  • parser: ddb base schema + other exports (#3741) (51a3410)

Features

  • commons: make utilities aware of provisioned concurrency (#3724) (c28e45e)
  • logger: set correlation ID in logs (#3726) (aa74fc8)
  • metrics: allow setting functionName via constructor parameter and environment variable (#3696) (3176fa0)

2.16.0 (2025-03-07)

Bug Fixes

Features

  • logger: Enable log buffering feature (#3641) (8203016)
  • logger: flush buffer on uncaught error decorator (#3676) (28db2e3)
  • logger: Flush buffer on uncaught error in Middy middleware (#3690) (23eebe4)
  • logger: refresh sample rate calculation before each invocation (#3672) (8c8d6b2)
  • validation: add @​validator decorator for JSON Schema validation (#3679) (ae6b7cf)
  • validation: Add Middy.js middleware for JSON Schema validation (#3694) (443202b)
  • validation: implement validate function (#3662) (f55127b)

2.15.0 (2025-02-25)

Bug Fixes

... (truncated)

Commits
  • 577c76d chore(ci): bump version to 2.17.0 (#3770)
  • fa414d5 chore(parameters): update AWS SDK client type (#3768)
  • 64f5cf2 chore(deps): bump @​types/aws-lambda from 8.10.147 to 8.10.148 (#3767)
  • 103a7f9 chore(deps): bump github/codeql-action from 3.28.12 to 3.28.13 (#3764)
  • 3cc0451 chore(deps): bump @​types/node from 22.13.11 to 22.13.13 (#3766)
  • 434cc8b chore: add Guild customer reference (#3769)
  • 5e9f051 chore(ci): Simplified GovCloud Deploy (#3763)
  • afab04f chore(ci): fix region typo in govcloud (#3762)
  • 57d6344 chore(ci): fix workflow GovCloud formatting (#3761)
  • b44b1eb chore(deps-dev): bump the typescript group across 1 directory with 2 updates ...
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/parameters from 2.13.1 to 2.17.0

Release notes

Sourced from @​aws-lambda-powertools/parameters's releases.

v2.17.0

Summary

This release introduces the new Validation utility to validate payloads with JSON Schemas. This addition further reduces the feature gap between this version of Powertools for AWS Lambda and the more mature one in Python, and it’s also the first utility that was built primarily by community contributors, hats off to @​VatsalGoel3!

The release also enhances Logger with correlation ID support, improves cold start reporting for Provisioned Concurrency, adds customizable function name dimensions for metrics, and extends Lambda layer availability to GovCloud (US) regions.

⭐️ Thanks to @​VatsalGoel3 and @​steven10172 for their contributions, and Guild for becoming a public reference customer!

New Validation utility

Docs

The new Validation utility helps you validate incoming events and responses using JSON Schemas. This is useful when you want request payloads to conform to expected formats. You can also verify that responses meet defined structures, ensuring consistency in both input and output.

Installation

npm i @aws-lambda-powertools/validation

Key Features

  • JSON Schema validation (supports draft-07 by default, configurable to any version supported by Ajv
  • Multiple implementation options:
    • Class method decorator @validator
    • Middy.js middleware validator
    • Standalone validate function
  • Flexible validation targets:
    • Incoming requests
    • Outbound responses
    • Partial payload validation using JMESPath expressions

Examples

Using Middy.js middleware:

carbon-9

Using decorator with envelope extraction:

carbon-10

Error handling with standalone validation:

carbon-6

Learn more

Head over to the documentation to learn more about the utility and see more examples.

... (truncated)

Changelog

Sourced from @​aws-lambda-powertools/parameters's changelog.

2.17.0 (2025-03-25)

Bug Fixes

  • ci: Remove --compatible-architectures from workflow (#3752) (dafa496)
  • idempotency: include sk in error msgs when using composite key (#3709) (661f5ff)
  • logger: correctly refresh sample rate (#3722) (2692ca4)
  • parser: ddb base schema + other exports (#3741) (51a3410)

Features

  • commons: make utilities aware of provisioned concurrency (#3724) (c28e45e)
  • logger: set correlation ID in logs (#3726) (aa74fc8)
  • metrics: allow setting functionName via constructor parameter and environment variable (#3696) (3176fa0)

2.16.0 (2025-03-07)

Bug Fixes

Features

  • logger: Enable log buffering feature (#3641) (8203016)
  • logger: flush buffer on uncaught error decorator (#3676) (28db2e3)
  • logger: Flush buffer on uncaught error in Middy middleware (#3690) (23eebe4)
  • logger: refresh sample rate calculation before each invocation (#3672) (8c8d6b2)
  • validation: add @​validator decorator for JSON Schema validation (#3679) (ae6b7cf)
  • validation: Add Middy.js middleware for JSON Schema validation (#3694) (443202b)
  • validation: implement validate function (#3662) (f55127b)

2.15.0 (2025-02-25)

Bug Fixes

... (truncated)

Commits
  • 577c76d chore(ci): bump version to 2.17.0 (#3770)
  • fa414d5 chore(parameters): update AWS SDK client type (#3768)
  • 64f5cf2 chore(deps): bump @​types/aws-lambda from 8.10.147 to 8.10.148 (#3767)
  • 103a7f9 chore(deps): bump github/codeql-action from 3.28.12 to 3.28.13 (#3764)
  • 3cc0451 chore(deps): bump @​types/node from 22.13.11 to 22.13.13 (#3766)
  • 434cc8b chore: add Guild customer reference (#3769)
  • 5e9f051 chore(ci): Simplified GovCloud Deploy (#3763)
  • afab04f chore(ci): fix region typo in govcloud (#3762)
  • 57d6344 chore(ci): fix workflow GovCloud formatting (#3761)
  • b44b1eb chore(deps-dev): bump the typescript group across 1 directory with 2 updates ...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-dynamodb from 3.716.0 to 3.777.0

Release notes

Sourced from @​aws-sdk/client-dynamodb's releases.

v3.777.0

3.777.0(2025-03-27)

Documentation Changes
  • clients: switch example generation from JS to Smithy, add streaming blob output examples (#6981) (8bf0c034)
New Features
  • clients: update client endpoints as of 2025-03-27 (810fd8c3)
  • client-bcm-pricing-calculator: Added standaloneAccountRateTypeSelections for GetPreferences and UpdatePreferences APIs. Added STALE enum value to status attribute in GetBillScenario and UpdateBillScenario APIs. (f3fe1af8)
  • client-eks: Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions. (09d8cf0d)
  • client-gamelift: Amazon GameLift Servers add support for additional instance types. (a31949ff)
  • client-sagemaker: add: recovery mode for SageMaker Studio apps (126e606d)
  • client-sso-oidc: This release adds AwsAdditionalDetails in the CreateTokenWithIAM API response. (ad600448)
  • client-iam: Update IAM dual-stack endpoints for BJS, IAD and PDT partitions (678eaebc)
  • client-bedrock-agent-runtime: bedrock flow now support node action trace. (9621bd38)
  • client-datazone: This release adds new action type of Create Listing Changeset for the Metadata Enforcement Rule feature. (7b29a722)
  • client-batch: This release will enable two features: Firelens log driver, and Execute Command on Batch jobs on ECS. Both features will be passed through to ECS. (e7c7403e)
  • client-cloudformation: Adding support for the new parameter "ScanFilters" in the CloudFormation StartResourceScan API. When this parameter is included, the StartResourceScan API will initiate a scan limited to the resource types specified by the parameter. (2da6a12c)

For list of updated packages, view updated-packages.md in assets-3.777.0.zip

v3.776.0

3.776.0(2025-03-26)

Chores
Documentation Changes
  • client-rds: Add note about the Availability Zone where RDS restores the DB cluster for the RestoreDBClusterToPointInTime operation. (b34b0218)
New Features
  • clients: update client endpoints as of 2025-03-26 (41f59349)
  • client-polly: Added support for the new voice - Jihye (ko-KR). Jihye is available as a Neural voice only. (016c4d07)
  • client-mediatailor: Add support for log filtering which allow customers to filter out selected event types from logs. (aa2ade89)
  • client-mediaconvert: This release adds a configurable Quality Level setting for the top rendition of Auto ABR jobs (8ab958b5)
  • client-arc-zonal-shift: Add new shiftType field for ARC zonal shifts. (f341188e)
  • client-wafv2: This release adds the ability to associate an AWS WAF v2 web ACL with an AWS Amplify App. (74fdfa0d)
  • client-direct-connect: With this release, AWS Direct Connect allows you to tag your Direct Connect gateways. Tags are metadata that you can create and use to manage your Direct Connect gateways. For more information about tagging, see AWS Tagging Strategies. (f1e93661)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-dynamodb's changelog.

3.777.0 (2025-03-27)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.775.0 (2025-03-25)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.774.0 (2025-03-24)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.772.0 (2025-03-20)

Note: Version bump only for package @​aws-sdk/client-dynamodb

3.767.0 (2025-03-13)

Features

  • client-dynamodb: Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available (d2c9f5d)

3.758.0 (2025-02-27)

Note: Version bump only for package @​aws-sdk/client-dynamodb

... (truncated)

Commits
  • 237cf3e Publish v3.777.0
  • 8bf0c03 docs(clients): switch example generation from JS to Smithy, add streaming blo...
  • bc30dfa Publish v3.775.0
  • df877b2 chore(codegen): sync for client config object custody (#6969)
  • 4ffa154 Publish v3.774.0
  • 9df52d1 fix(core): revert "use credentials provided by extensions when instantiating ...
  • 6288dff fix(core): use credentials provided by extensions when instantiating sigv4 si...
  • f784d49 Publish v3.772.0
  • c0858da Publish v3.767.0
  • d2c9f5d feat(client-dynamodb): Generate account endpoints for DynamoDB requests using...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-personalize from 3.716.0 to 3.777.0

Release notes

Sourced from @​aws-sdk/client-personalize's releases.

v3.777.0

3.777.0(2025-03-27)

Documentation Changes
  • clients: switch example generation from JS to Smithy, add streaming blob output examples (#6981) (8bf0c034)
New Features
  • clients: update client endpoints as of 2025-03-27 (810fd8c3)
  • client-bcm-pricing-calculator: Added standaloneAccountRateTypeSelections for GetPreferences and UpdatePreferences APIs. Added STALE enum value to status attribute in GetBillScenario and UpdateBillScenario APIs. (f3fe1af8)
  • client-eks: Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions. (09d8cf0d)
  • client-gamelift: Amazon GameLift Servers add support for additional instance types. (a31949ff)
  • client-sagemaker: add: recovery mode for SageMaker Studio apps (126e606d)
  • client-sso-oidc: This release adds AwsAdditionalDetails in the CreateTokenWithIAM API response. (ad600448)
  • client-iam: Update IAM dual-stack endpoints for BJS, IAD and PDT partitions (678eaebc)
  • client-bedrock-agent-runtime: bedrock flow now support node action trace. (9621bd38)
  • client-datazone: This release adds new action type of Create Listing Changeset for the Metadata Enforcement Rule feature. (7b29a722)
  • client-batch: This release will enable two features: Firelens log driver, and Execute Command on Batch jobs on ECS. Both features will be passed through to ECS. (e7c7403e)
  • client-cloudformation: Adding support for the new parameter "ScanFilters" in the CloudFormation StartResourceScan API. When this parameter is included, the StartResourceScan API will initiate a scan limited to the resource types specified by the parameter. (2da6a12c)

For list of updated packages, view updated-packages.md in assets-3.777.0.zip

v3.776.0

3.776.0(2025-03-26)

Chores
Documentation Changes
  • client-rds: Add note about the Availability Zone where RDS restores the DB cluster for the RestoreDBClusterToPointInTime operation. (b34b0218)
New Features
  • clients: update client endpoints as of 2025-03-26 (41f59349)
  • client-polly: Added support for the new voice - Jihye (ko-KR). Jihye is available as a Neural voice only. (016c4d07)
  • client-mediatailor: Add support for log filtering which allow customers to filter out selected event types from logs. (aa2ade89)
  • client-mediaconvert: This release adds a configurable Quality Level setting for the top rendition of Auto ABR jobs (8ab958b5)
  • client-arc-zonal-shift: Add new shiftType field for ARC zonal shifts. (f341188e)
  • client-wafv2: This release adds the ability to associate an AWS WAF v2 web ACL with an AWS Amplify App. (74fdfa0d)
  • client-direct-connect: With this release, AWS Direct Connect allows you to tag your Direct Connect gateways. Tags are metadata that you can create and use to manage your Direct Connect gateways. For more information about tagging, see AWS Tagging Strategies. (f1e93661)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-personalize's changelog.

3.777.0 (2025-03-27)

Note: Version bump only for package @​aws-sdk/client-personalize

3.775.0 (2025-03-25)

Note: Version bump only for package @​aws-sdk/client-personalize

3.774.0 (2025-03-24)

Note: Version bump only for package @​aws-sdk/client-personalize

3.772.0 (2025-03-20)

Note: Version bump only for package @​aws-sdk/client-personalize

3.758.0 (2025-02-27)

Note: Version bump only for package @​aws-sdk/client-personalize

3.750.0 (2025-02-17)

Note: Version bump only for package @​aws-sdk/client-personalize

3.749.0 (2025-02-14)

... (truncated)

Commits
  • 237cf3e Publish v3.777.0
  • 8bf0c03 docs(clients): switch example generation from JS to Smithy, add streaming blo...
  • bc30dfa Publish v3.775.0
  • df877b2 chore(codegen): sync for client config object custody (#6969)
  • 4ffa154 Publish v3.774.0
  • 9df52d1 fix(core): revert "use credentials provided by extensions when instantiating ...
  • 6288dff fix(core): use credentials provided by extensions when instantiating sigv4 si...
  • f784d49 Publish v3.772.0
  • 5b34214 Publish v3.758.0
  • db4d43e chore(codegen): update @​smithy/node-http-handler version (#6904)
  • Additional commits viewable in compare view

Updates @aws-sdk/client-s3 from 3.716.0 to 3.779.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.779.0

3.779.0(2025-03-31)

New Features
  • clients: update client endpoints as of 2025-03-31 (fbabe1c8)
  • client-bedrock-runtime: Add Prompt Caching support to Converse and ConverseStream APIs (e48bc083)
  • client-deadline: With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching. (a73e6324)
  • client-sesv2: Add dual-stack support to global endpoints. (b9f2fe39)
  • client-outposts: Enabling Asset Level Capacity Management feature, which allows customers to create a Capacity Task for a single Asset on their active Outpost. (c6a9665c)
  • client-s3-control: Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones (567956e1)
  • client-ec2: Release VPC Route Server, a new feature allowing dynamic routing in VPCs. (37402522)
  • client-s3: Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones (7f2cfea1)
  • client-marketplace-entitlement-service: Add support for Marketplace Entitlement Service dual-stack endpoints. (ce892a7f)
  • client-eks: Add support for updating RemoteNetworkConfig for hybrid nodes on EKS UpdateClusterConfig API (fc7f772e)
  • client-transfer: Add WebAppEndpointPolicy support for WebApps (fad0c2fc)

For list of updated packages, view updated-packages.md in assets-3.779.0.zip

v3.778.0

3.778.0(2025-03-28)

Documentation Changes
  • client-ecs: This is an Amazon ECS documentation only release that addresses tickets. (f9ca0c26)
New Features
  • clients: update client endpoints as of 2025-03-28 (daf689ae)
  • client-apigatewayv2: Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names. (7528ca99)
  • client-api-gateway: Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names. (ef4a874d)
  • client-quicksight: RLS permission dataset with userAs: RLS_RULES flag, Q in QuickSight/Threshold Alerts/Schedules/Snapshots in QS embedding, toggle dataset refresh email alerts via API, transposed table with options: column width, type and index, toggle Q&A on dashboards, Oracle Service Name when creating data source. (625ee9cd)
  • client-networkmanager: Add support for NetworkManager Dualstack endpoints. (cd55850c)
  • client-marketplace-metering: Add support for Marketplace Metering Service dual-stack endpoints. (76dce294)
  • client-payment-cryptography: The service adds support for transferring AES-256 and other keys between the service and other service providers and HSMs. This feature uses ECDH to derive a one-time key transport key to enable these secure key exchanges. (06a1cb57)
  • client-sagemaker: TransformAmiVersion for Batch Transform and SageMaker Search Service Aggregate Search API Extension (86ab9f46)
  • client-bedrock-runtime: Launching Multi-modality Content Filter for Amazon Bedrock Guardrails. (76cfd9b5)
  • client-codebuild: This release adds support for cacheNamespace in ProjectCache (add93bd5)
Bug Fixes
  • lib-dynamodb: read input from middleware instead of command (#6984) (371f05c1)
  • credential-providers: allow env and configFile selection of region in fromTemporaryCredentials (#6982) (f46323d4)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.779.0 (2025-03-31)

Features

  • client-s3: Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones (7f2cfea)

3.777.0 (2025-03-27)

Note: Version bump only for package @​aws-sdk/client-s3

3.775.0 (2025-03-25)

Note: Version bump only for package @​aws-sdk/client-s3

3.774.0 (2025-03-24)

Note: Version bump only for package @​aws-sdk/client-s3

3.772.0 (2025-03-20)

Note: Version bump only for package @​aws-sdk/client-s3

3.758.0 (2025-02-27)

Note: Version bump only for package @​aws-sdk/client-s3

... (truncated)

Commits
  • 0c659f4 Publish v3.779.0
  • 7f2cfea feat(client-s3): Amazon S3 adds support for S3 Access Points for directory bu...
  • 237cf3e Publish v3.777.0
  • 8bf0c03 docs(clients): switch example generation from JS to Smithy, add streaming blo...
  • bc30dfa Publish v3.775.0
  • df877b2 chore(codegen): sync for client config object custody (#6969)
  • 4ffa154 Publish v3.774.0
  • 9df52d1 fix(core): revert "use credentials provided by extensions when instantiating ...
  • 6288dff fix(core): use credentials provided by extensions when instantiating sigv4 si...
  • f784d49 Publish v3.772.0
  • Additional commits viewable in compare view

Updates @aws-sdk/client-ssm from 3.716.0 to 3.777.0

Release notes

Sourced from @​aws-sdk/client-ssm's releases.

v3.777.0

3.777.0(2025-03-27)

Documentation Changes
  • clients: switch example generation from JS to Smithy, add streaming blob output examples (#6981) (8bf0c034)
New Features
  • clients: update client endpoints as of 2025-03-27 (810fd8c3)
  • client-bcm-pricing-calculator: Added standaloneAccountRateTypeSelections for GetPreferences and UpdatePreferences APIs. Added STALE enum value to status attribute in GetBillScenario and UpdateBillScenario APIs. (f3fe1af8)
  • client-eks: Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions. (09d8cf0d)
  • client-gamelift: Amazon GameLift Servers add support for additional instance types. (a31949ff)
  • client-sagemaker: add: recovery mode for SageMaker Studio apps (126e606d)
  • client-sso-oidc: This release adds AwsAdditionalDetails in the CreateTokenWithIAM API response. (ad600448)
  • client-iam: Update IAM dual-stack endpoints for BJS, IAD and PDT partitions (678eaebc)
  • client-bedrock-agent-runtime: bedrock flow now support node action trace. (9621bd38)
  • client-datazone: This release adds new action type of Create Listing Changeset for the Metadata Enforcement Rule feature. (7b29a722)
  • client-batch: This release will enable two features: Firelens log driver, and Execute Command on Batch jobs on ECS. Both features will be passed through to ECS. (e7c7403e)
  • client-cloudformation: Adding support for the new parameter "ScanFilters" in the CloudFormation StartResourceScan API. When this parameter is included, the StartResourceScan API will initiate a scan limited to the resource types specified ...

    Description has been truncated

Bumps the production-dependencies group in /apps/cirrus with 36 updates:

| Package | From | To |
| --- | --- | --- |
| [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.13.1` | `2.17.0` |
| [@aws-lambda-powertools/parameters](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.13.1` | `2.17.0` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.716.0` | `3.777.0` |
| [@aws-sdk/client-personalize](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-personalize) | `3.716.0` | `3.777.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.716.0` | `3.779.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.716.0` | `3.777.0` |
| [@smithy/types](https://github.com/smithy-lang/smithy-typescript/tree/HEAD/packages/types) | `3.7.2` | `4.2.0` |
| [aws-amplify](https://github.com/aws-amplify/amplify-js) | `6.10.3` | `6.14.1` |
| [@aws-amplify/analytics](https://github.com/aws-amplify/amplify-js) | `7.0.63` | `7.0.77` |
| [@aws-amplify/api](https://github.com/aws-amplify/amplify-js) | `6.1.8` | `6.3.8` |
| [@aws-amplify/api-graphql](https://github.com/aws-amplify/amplify-js) | `4.6.6` | `4.7.12` |
| [@aws-amplify/api-rest](https://github.com/aws-amplify/amplify-js) | `4.0.63` | `4.1.1` |
| [@aws-amplify/auth](https://github.com/aws-amplify/amplify-js) | `6.8.3` | `6.12.1` |
| [@aws-amplify/core](https://github.com/aws-amplify/amplify-js) | `6.7.3` | `6.11.1` |
| [@aws-amplify/data-schema](https://github.com/aws-amplify/amplify-data) | `1.17.2` | `1.20.2` |
| [@aws-amplify/datastore](https://github.com/aws-amplify/amplify-js) | `5.0.65` | `5.0.79` |
| [@aws-amplify/notifications](https://github.com/aws-amplify/amplify-js) | `2.0.63` | `2.0.77` |
| [@aws-amplify/storage](https://github.com/aws-amplify/amplify-js) | `6.7.4` | `6.8.1` |
| [@aws-lambda-powertools/commons](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.13.1` | `2.17.0` |
| [@aws-sdk/endpoint-cache](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/endpoint-cache) | `3.693.0` | `3.723.0` |
| [@aws-sdk/middleware-bucket-endpoint](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-bucket-endpoint) | `3.714.0` | `3.775.0` |
| [@aws-sdk/middleware-endpoint-discovery](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-endpoint-discovery) | `3.714.0` | `3.775.0` |
| [@aws-sdk/middleware-expect-continue](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-expect-continue) | `3.714.0` | `3.775.0` |
| [@aws-sdk/middleware-flexible-checksums](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-flexible-checksums) | `3.716.0` | `3.775.0` |
| [@aws-sdk/middleware-location-constraint](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-location-constraint) | `3.714.0` | `3.775.0` |
| [@aws-sdk/middleware-sdk-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-sdk-s3) | `3.716.0` | `3.775.0` |
| [@aws-sdk/middleware-ssec](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/middleware-ssec) | `3.714.0` | `3.775.0` |
| [@aws-sdk/signature-v4-multi-region](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/signature-v4-multi-region) | `3.716.0` | `3.775.0` |
| [@aws-sdk/xml-builder](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/xml-builder) | `3.709.0` | `3.775.0` |
| [@smithy/chunked-blob-reader](https://github.com/awslabs/smithy-typescript/tree/HEAD/packages/chunked-blob-reader) | `4.0.0` | `5.0.0` |
| [@smithy/chunked-blob-reader-native](https://github.com/awslabs/smithy-typescript/tree/HEAD/packages/chunked-blob-reader-native) | `3.0.1` | `4.0.0` |
| [@smithy/hash-blob-browser](https://github.com/smithy-lang/smithy-typescript/tree/HEAD/packages/hash-blob-browser) | `3.1.10` | `4.0.2` |
| [@smithy/hash-stream-node](https://github.com/smithy-lang/smithy-typescript/tree/HEAD/packages/hash-stream-node) | `3.1.10` | `4.0.2` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.147` | `8.10.148` |
| [rxjs](https://github.com/reactivex/rxjs) | `7.8.1` | `7.8.2` |
| [ulid](https://github.com/ulid/javascript) | `2.3.0` | `2.4.0` |


Updates `@aws-lambda-powertools/logger` from 2.13.1 to 2.17.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.13.1...v2.17.0)

Updates `@aws-lambda-powertools/parameters` from 2.13.1 to 2.17.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.13.1...v2.17.0)

Updates `@aws-sdk/client-dynamodb` from 3.716.0 to 3.777.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.777.0/clients/client-dynamodb)

Updates `@aws-sdk/client-personalize` from 3.716.0 to 3.777.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-personalize/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.777.0/clients/client-personalize)

Updates `@aws-sdk/client-s3` from 3.716.0 to 3.779.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.779.0/clients/client-s3)

Updates `@aws-sdk/client-ssm` from 3.716.0 to 3.777.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ssm/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.777.0/clients/client-ssm)

Updates `@smithy/types` from 3.7.2 to 4.2.0
- [Release notes](https://github.com/smithy-lang/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-typescript/commits/@smithy/types@4.2.0/packages/types)

Updates `aws-amplify` from 6.10.3 to 6.14.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.10.3...aws-amplify@6.14.1)

Updates `@aws-amplify/analytics` from 7.0.63 to 7.0.77
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.63...@aws-amplify/analytics@7.0.77)

Updates `@aws-amplify/api` from 6.1.8 to 6.3.8
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.1.8...@aws-amplify/api@6.3.8)

Updates `@aws-amplify/api-graphql` from 4.6.6 to 4.7.12
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.6.6...@aws-amplify/api-graphql@4.7.12)

Updates `@aws-amplify/api-rest` from 4.0.63 to 4.1.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.63...@aws-amplify/api-rest@4.1.1)

Updates `@aws-amplify/auth` from 6.8.3 to 6.12.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.8.3...@aws-amplify/auth@6.12.1)

Updates `@aws-amplify/core` from 6.7.3 to 6.11.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.7.3...@aws-amplify/core@6.11.1)

Updates `@aws-amplify/data-schema` from 1.17.2 to 1.20.2
- [Commits](https://github.com/aws-amplify/amplify-data/compare/@aws-amplify/data-schema@1.17.2...@aws-amplify/data-schema@1.20.2)

Updates `@aws-amplify/datastore` from 5.0.65 to 5.0.79
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.65...@aws-amplify/datastore@5.0.79)

Updates `@aws-amplify/notifications` from 2.0.63 to 2.0.77
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.63...@aws-amplify/notifications@2.0.77)

Updates `@aws-amplify/storage` from 6.7.4 to 6.8.1
- [Release notes](https://github.com/aws-amplify/amplify-js/releases)
- [Commits](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.7.4...@aws-amplify/storage@6.8.1)

Updates `@aws-lambda-powertools/commons` from 2.13.1 to 2.17.0
- [Release notes](https://github.com/aws-powertools/powertools-lambda-typescript/releases)
- [Changelog](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CHANGELOG.md)
- [Commits](aws-powertools/powertools-lambda-typescript@v2.13.1...v2.17.0)

Updates `@aws-sdk/endpoint-cache` from 3.693.0 to 3.723.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/endpoint-cache/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.723.0/packages/endpoint-cache)

Updates `@aws-sdk/middleware-bucket-endpoint` from 3.714.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-bucket-endpoint/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-bucket-endpoint)

Updates `@aws-sdk/middleware-endpoint-discovery` from 3.714.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-endpoint-discovery/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-endpoint-discovery)

Updates `@aws-sdk/middleware-expect-continue` from 3.714.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-expect-continue/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-expect-continue)

Updates `@aws-sdk/middleware-flexible-checksums` from 3.716.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-flexible-checksums/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-flexible-checksums)

Updates `@aws-sdk/middleware-location-constraint` from 3.714.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-location-constraint/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-location-constraint)

Updates `@aws-sdk/middleware-sdk-s3` from 3.716.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-sdk-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-sdk-s3)

Updates `@aws-sdk/middleware-ssec` from 3.714.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-ssec/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/middleware-ssec)

Updates `@aws-sdk/signature-v4-multi-region` from 3.716.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/signature-v4-multi-region/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/signature-v4-multi-region)

Updates `@aws-sdk/xml-builder` from 3.709.0 to 3.775.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/xml-builder/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.775.0/packages/xml-builder)

Updates `@smithy/chunked-blob-reader` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/chunked-blob-reader/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/chunked-blob-reader@5.0.0/packages/chunked-blob-reader)

Updates `@smithy/chunked-blob-reader-native` from 3.0.1 to 4.0.0
- [Release notes](https://github.com/awslabs/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/chunked-blob-reader-native/CHANGELOG.md)
- [Commits](https://github.com/awslabs/smithy-typescript/commits/@smithy/chunked-blob-reader-native@4.0.0/packages/chunked-blob-reader-native)

Updates `@smithy/hash-blob-browser` from 3.1.10 to 4.0.2
- [Release notes](https://github.com/smithy-lang/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/hash-blob-browser/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-typescript/commits/@smithy/hash-blob-browser@4.0.2/packages/hash-blob-browser)

Updates `@smithy/hash-stream-node` from 3.1.10 to 4.0.2
- [Release notes](https://github.com/smithy-lang/smithy-typescript/releases)
- [Changelog](https://github.com/smithy-lang/smithy-typescript/blob/main/packages/hash-stream-node/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-typescript/commits/@smithy/hash-stream-node@4.0.2/packages/hash-stream-node)

Updates `@types/aws-lambda` from 8.10.147 to 8.10.148
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `rxjs` from 7.8.1 to 7.8.2
- [Release notes](https://github.com/reactivex/rxjs/releases)
- [Changelog](https://github.com/ReactiveX/rxjs/blob/7.8.2/CHANGELOG.md)
- [Commits](ReactiveX/rxjs@7.8.1...7.8.2)

Updates `ulid` from 2.3.0 to 2.4.0
- [Release notes](https://github.com/ulid/javascript/releases)
- [Commits](ulid/javascript@v2.3.0...v2.4.0)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-lambda-powertools/parameters"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-personalize"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-ssm"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@smithy/types"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: aws-amplify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/analytics"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/api"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/api-graphql"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/api-rest"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/auth"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/core"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/data-schema"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/datastore"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/notifications"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@aws-amplify/storage"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-lambda-powertools/commons"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/endpoint-cache"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-bucket-endpoint"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-endpoint-discovery"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-expect-continue"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-flexible-checksums"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-location-constraint"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-sdk-s3"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/middleware-ssec"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/signature-v4-multi-region"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/xml-builder"
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@smithy/chunked-blob-reader"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@smithy/chunked-blob-reader-native"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@smithy/hash-blob-browser"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@smithy/hash-stream-node"
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/aws-lambda"
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: rxjs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ulid
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 2, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 2, 2025

Reviewers

The following teams could not be added as reviewers: team-elrond. Either the team does not exist or it does not have the correct permissions to be added as a reviewer.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant