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

chore(deps): bump the npm group across 1 directory with 8 updates #444

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Bumps the npm group with 8 updates in the /source/image-handler directory:

Package From To
@aws-sdk/client-s3 3.699.0 3.726.1
sharp 0.33.4 0.33.5
@aws-lambda-powertools/logger 2.11.0 2.12.0
@types/aws-lambda 8.10.141 8.10.147
aws-sdk-client-mock 4.0.1 4.1.0
aws-sdk-client-mock-jest 4.0.1 4.1.0
prettier 3.3.2 3.4.2
tsup 8.1.0 8.3.5

Updates @aws-sdk/client-s3 from 3.699.0 to 3.726.1

Release notes

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

v3.726.1

3.726.1(2025-01-10)

Documentation Changes
  • client-securitylake: Doc only update for ServiceName that fixes several customer-reported issues (f29fee90)
  • client-sts: Fixed typos in the descriptions. (3ea4627b)
  • client-redshift: Additions to the PubliclyAccessible and Encrypted parameters clarifying what the defaults are. (05635df2)
New Features
  • clients: update client endpoints as of 2025-01-10 (9f3d4f99)
Bug Fixes
  • codegen: handle case when sample operation not found (#6788) (a4fb2d43)

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

v3.726.0

3.726.0(2025-01-09)

Chores
  • util-endpoints: update aws partitions.json (5927fcdc)
  • endpoints: update endpoints model (1ba5717c)
  • models: update API models (9284063c)
  • codegen: update template typescript version (#6784) (a5635725)
New Features
  • client-fms: AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator. (e43d607d)
  • client-codebuild: AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambda (4fb5b7ee)
  • client-compute-optimizer: This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types. (b33aa6f1)
Tests

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

v3.725.0

3.725.0(2025-01-08)

... (truncated)

Changelog

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

3.726.1 (2025-01-10)

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

3.726.0 (2025-01-09)

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

3.723.0 (2025-01-06)

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

3.722.0 (2025-01-03)

Features

  • client-s3: This change is only for updating the model regexp of CopySource which is not for validation but only for documentation and user guide change. (3bb74c5)

3.721.0 (2025-01-02)

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

3.717.0 (2024-12-20)

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

... (truncated)

Commits

Updates sharp from 0.33.4 to 0.33.5

Changelog

Sourced from sharp's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

Commits
  • fc32e0b Release v0.33.5
  • 0546e48 Docs: changelog entry for #4191
  • ab65b7a TypeScript: chromaSubsampling can be undefined (#4191)
  • 2474bd4 Prerelease v0.33.5-rc.1
  • ff2e689 Remove yarn v1 specifics from help text
  • 6327f13 CI: Add yarn v1 to packaging tests
  • f1e69a2 Prerelease v0.33.5-rc.0
  • 3c14dbb Minimise use of engines property to improve yarn v1 support
  • 82cebc3 Upgrade to libvips v8.15.3 for Linux ARMv6
  • ad36fa0 Ensure emnapiInit function is exported
  • Additional commits viewable in compare view

Updates @aws-lambda-powertools/logger from 2.11.0 to 2.12.0

Release notes

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

v2.12.0

Summary

In this release we have made the Logger class more extensible, added POWERTOOLS_METRICS_DISABLED to control metrics output in non production environment, and added AppSyncResolverSchema and KinesisDynamoDBStreamSchema to the parser utility.

⭐️ Thanks to @​zirkelc and @​svozza for their contributions to this release!

Logger class is now more extensible

You can now overwrite the Logger methods createAndPopulateLogItem, printLog, processLogItem, which were private before. This allows you to extend the Logger and add new functionality, i.e. implement your own message buffer.

Metrics utility improvements

You can now set POWERTOOLS_METRICS_DISABLED to control the metrics output. This is useful when you don't want to emit metrics in a non-production environment. When POWERTOOLS_DEV is enabled, the metrics are also suppressed, but you can always explicitly enable it with POWERTOOLS_METRICS_DISABLED .

We have also added a warning message when you overwrite a dimension with the same key, which will help you to troubleshoot unintentional changes:

import { Metrics } from '@aws-lambda-powertools/metrics';

const metrics = new Metrics({ singleMetric: true });

metrics.addDimension('test', 'foo');
metrics.addDimension('test', 'bar'); // "bar" replaces "foo"

// warning: Dimension "test" has already been added. The previous value will be overwritten.

New schema for AppSync and DynamoDB events

You can now use AppSyncResolverSchema and AppSyncResolverBatchSchema to parse AppSync Lambda resolver event.

We have also added KinesisDynamoDBStreamSchema to validate the event from the invocation chain of DynamoDB, Kinesis and Lambda, which are slightly different compared to direct DynamoDB Streams invocations, see more details in #3193.

Changes

  • chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422) by @​dependabot
  • chore(deps): bump github/codeql-action from 3.27.5 to 3.27.7 (#3411) by @​dependabot
  • chore(deps): bump actions/setup-node from 4.0.4 to 4.1.0 (#3380) by @​dependabot
  • chore(deps): bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.16 to 3.0.17 (#3362) by @​dependabot
  • chore: replace close-issue-message action (#3364) by @​dreamorosi
  • chore(deps): bump github/codeql-action from 3.27.3 to 3.27.5 (#3336) by @​dependabot
  • chore(parser): return correct type for safeParse in envelopes (#3339) by @​jharlow
  • chore(deps): bump actions/dependency-review-action from 4.4.0 to 4.5.0 (#3344) by @​dependabot
  • chore(deps): bump aws-actions/closed-issue-message from 80edfc24bdf1283400eb04d20a8a605ae8bf7d48 to 37548691e7cc75ba58f85c9f873f9eee43590449 (#3345) by @​dependabot

🌟New features and non-breaking changes

... (truncated)

Changelog

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

2.12.0 (2024-12-17)

Bug Fixes

Features

  • logger: change selected method visibility to protected (#3377) (93a19a5)
  • metrics: disable metrics with POWERTOOLS_METRICS_DISABLED (#3351) (7e8578e)
  • metrics: warn when overwriting dimension (#3352) (12f3e44)
  • parser: Add appsync resolver event Zod schemas (#3301) (318f34b)
  • parser: add schema for DynamoDB - Kinesis Stream event (#3328) (a8dfa74)
Commits
  • d5ec97b chore(ci): bump version to 2.12.0 (#3432)
  • 3cd2f02 chore(deps-dev): bump markdownlint-cli2 from 0.15.0 to 0.16.0 (#3418)
  • 97db537 chore(deps-dev): bump zod from 3.23.8 to 3.24.1 (#3419)
  • 2e4f7f4 chore(deps): bump @​types/node from 22.10.1 to 22.10.2 (#3420)
  • f260ebd chore(deps): bump vscode/devcontainers/javascript-node from d493ef0 to `896...
  • 0ee179c chore(deps): bump github/codeql-action from 3.27.7 to 3.27.9 (#3422)
  • 63ff622 chore(deps-dev): bump lint-staged from 15.2.10 to 15.2.11 (#3417)
  • 0da9cea fix(parser): make SNS subject field nullish (#3415)
  • 248a13e docs: add videos section in community (#3416)
  • fb11da8 chore(deps): bump the aws-cdk group across 1 directory with 2 updates (#3413)
  • Additional commits viewable in compare view

Updates @types/aws-lambda from 8.10.141 to 8.10.147

Commits

Updates aws-sdk-client-mock from 4.0.1 to 4.1.0

Release notes

Sourced from aws-sdk-client-mock's releases.

v4.1.0

4.1.0 (2024-10-15)

Features

v4.1.0-beta.0

4.1.0-beta.0 (2024-10-11)

Features

Bug Fixes

  • jest: import path in types test (750605b)

v4.0.2

4.0.2 (2024-09-23)

v4.0.2-beta.0

4.0.2-beta.0 (2024-06-20)

Bug Fixes

  • jest: allow "toHaveReceivedCommandWith" partial match without required Command fields (79929ae)
Changelog

Sourced from aws-sdk-client-mock's changelog.

4.1.0 (2024-10-15)

Features

4.1.0-beta.0 (2024-10-11)

Features

Bug Fixes

  • jest: import path in types test (750605b)

4.0.2 (2024-09-23)

4.0.2-beta.0 (2024-06-20)

Bug Fixes

  • jest: allow "toHaveReceivedCommandWith" partial match without required Command fields (79929ae)
Commits
  • 2f8100e chore(release): 4.1.0
  • 4f11d4c feat: add commandCall method to AwsStub (#241)
  • dfdbc83 chore(release): 4.1.0-beta.0
  • 750605b fix(jest): import path in types test
  • 3ed37a9 feat(jest): add support for vitest (#231)
  • 72ebb74 docs: update docs website
  • 1f08693 chore(release): 4.0.2
  • 3be9f30 ci: fix CLI conflict for pnpm docs
  • f4b16c5 docs: move reproduction code instructions from body to desc in bug template
  • 6ca4735 docs: mocking lib-storage Upload for small files
  • Additional commits viewable in compare view

Updates aws-sdk-client-mock-jest from 4.0.1 to 4.1.0

Release notes

Sourced from aws-sdk-client-mock-jest's releases.

v4.1.0

4.1.0 (2024-10-15)

Features

v4.1.0-beta.0

4.1.0-beta.0 (2024-10-11)

Features

Bug Fixes

  • jest: import path in types test (750605b)

v4.0.2

4.0.2 (2024-09-23)

v4.0.2-beta.0

4.0.2-beta.0 (2024-06-20)

Bug Fixes

  • jest: allow "toHaveReceivedCommandWith" partial match without required Command fields (79929ae)
Changelog

Sourced from aws-sdk-client-mock-jest's changelog.

4.1.0 (2024-10-15)

Features

4.1.0-beta.0 (2024-10-11)

Features

Bug Fixes

  • jest: import path in types test (750605b)

4.0.2 (2024-09-23)

4.0.2-beta.0 (2024-06-20)

Bug Fixes

  • jest: allow "toHaveReceivedCommandWith" partial match without required Command fields (79929ae)
Commits
  • 2f8100e chore(release): 4.1.0
  • dfdbc83 chore(release): 4.1.0-beta.0
  • 750605b fix(jest): import path in types test
  • 3ed37a9 feat(jest): add support for vitest (#231)
  • 1f08693 chore(release): 4.0.2
  • 6d098fc chore: bump sinon from 16.1.3 to 18.0.1 (#237)
  • a88b565 chore(release): 4.0.2-beta.0
  • 79929ae fix(jest): allow "toHaveReceivedCommandWith" partial match without required C...
  • 97ae3cd chore: bump dependencies
  • afcedac ci: allow uncommitted files for local publish
  • Additional commits viewable in compare view

Updates prettier from 3.3.2 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates tsup from 8.1.0 to 8.3.5

Release notes

Sourced from tsup's releases.

v8.3.5

   🐞 Bug Fixes

    View changes on GitHub

v8.3.4

No significant changes

    View changes on GitHub

v8.3.3

No significant changes

    View changes on GitHub

v8.3.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v8.3.0

8.3.0 (2024-09-17)

Bug Fixes

  • fix experimentalDts file cleaning and watching (#1199) (76dc18b)

Features

v8.2.4

8.2.4 (2024-08-02)

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm group with 8 updates in the /source/image-handler directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.699.0` | `3.726.1` |
| [sharp](https://github.com/lovell/sharp) | `0.33.4` | `0.33.5` |
| [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript) | `2.11.0` | `2.12.0` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.141` | `8.10.147` |
| [aws-sdk-client-mock](https://github.com/m-radzikowski/aws-sdk-client-mock) | `4.0.1` | `4.1.0` |
| [aws-sdk-client-mock-jest](https://github.com/m-radzikowski/aws-sdk-client-mock/tree/HEAD/packages/aws-sdk-client-mock-jest) | `4.0.1` | `4.1.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.2` | `3.4.2` |
| [tsup](https://github.com/egoist/tsup) | `8.1.0` | `8.3.5` |



Updates `@aws-sdk/client-s3` from 3.699.0 to 3.726.1
- [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.726.1/clients/client-s3)

Updates `sharp` from 0.33.4 to 0.33.5
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.33.4...v0.33.5)

Updates `@aws-lambda-powertools/logger` from 2.11.0 to 2.12.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.11.0...v2.12.0)

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

Updates `aws-sdk-client-mock` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/m-radzikowski/aws-sdk-client-mock/releases)
- [Changelog](https://github.com/m-radzikowski/aws-sdk-client-mock/blob/main/CHANGELOG.md)
- [Commits](m-radzikowski/aws-sdk-client-mock@v4.0.1...v4.1.0)

Updates `aws-sdk-client-mock-jest` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/m-radzikowski/aws-sdk-client-mock/releases)
- [Changelog](https://github.com/m-radzikowski/aws-sdk-client-mock/blob/main/CHANGELOG.md)
- [Commits](https://github.com/m-radzikowski/aws-sdk-client-mock/commits/v4.1.0/packages/aws-sdk-client-mock-jest)

Updates `prettier` from 3.3.2 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.2...3.4.2)

Updates `tsup` from 8.1.0 to 8.3.5
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.1.0...v8.3.5)

---
updated-dependencies:
- dependency-name: "@aws-sdk/client-s3"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/aws-lambda"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: aws-sdk-client-mock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: aws-sdk-client-mock-jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

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 Jan 13, 2025
@dependabot dependabot bot requested a review from a team January 13, 2025 11:36
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.

None yet

0 participants