Skip to content

Bump the npm group across 1 directory with 3 updates - #261

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/example/npm-10fde285d3
Aug 25, 2026
Merged

Bump the npm group across 1 directory with 3 updates#261
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/example/npm-10fde285d3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 25, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm group with 3 updates in the /example directory: @aws-lambda-powertools/logger, hono and aws-cdk.

Updates @aws-lambda-powertools/logger from 2.34.0 to 2.35.0

Release notes

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

v2.35.0

Summary

In this release, the Parameters utility gains support for the AWS AppConfig Agent Lambda extension. A new getConfig function fetches application configurations from the agent's local HTTP endpoint, without the AWS SDK and without a cache to manage, since caching, polling, and prefetching are all handled by the agent.

In Logger, the log buffer and the debug sampling log level are now scoped per invocation under Lambda Managed Instances concurrency, so concurrent invocations no longer clear each other's buffered logs or override each other's sampling decision. Logger also now accepts IANA timezone aliases such as Asia/Kolkata in the TZ environment variable, which were previously rejected and produced timestamps for the wrong instant. When a timezone can't be resolved at all, Logger now falls back to UTC consistently and emits a warning, instead of doing so silently.

The Parser utility adds a schema for Amazon Connect Outbound Campaigns custom action events.

Finally, the documentation site has been restyled to match the AWS Developer Guide.

[!IMPORTANT] The project's Discord server has been shut down. Community conversations now happen in GitHub Discussions, and all Discord links in the READMEs, docs, and issue templates now point there.

⭐ Congratulations to @​leiwilson for their first PR merged in the project 🎉

AppConfig Agent support

If you use the AWS AppConfig Agent Lambda extension, you can now fetch application configurations from the agent's local HTTP endpoint with getConfig:

import { getConfig } from '@aws-lambda-powertools/parameters/appconfig-agent';
const config = await getConfig('my-configuration', {
environment: 'my-env',
application: 'my-app',
transform: 'json',
});
export const handler = async (): Promise<void> => {
console.log(config);
};

A few things to know:

  • You must add the AppConfig Agent Lambda extension layer to your function. getConfig talks to it over the agent's local endpoint, so it doesn't need the AWS SDK.
  • Because the agent handles caching, polling, and prefetching, the maxAge and forceFetch options don't apply. You can reduce cold start latency by setting AWS_APPCONFIG_EXTENSION_PREFETCH_LIST so the agent fetches your configuration before your handler runs.
  • When the configuration doesn't exist, getConfig returns undefined, so you can fall back with ??, or set throwOnMissing to get a ParameterNotFoundError instead. Any other failure to reach the agent throws a GetParameterError.
  • Outside of Lambda, or when POWERTOOLS_DEV is enabled, getConfig returns undefined without making a request, so your tests never need to mock the agent. Set POWERTOOLS_APPCONFIG_AGENT_RETURN_VALUE when you want it to return a value instead.

Changes

... (truncated)

Changelog

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

2.35.0 (2026-08-18)

Improvements

  • logger isolate log level InvokeStore access in a store (#5548) (a47c7a6)

Bug Fixes

  • logger scope log buffer per invocation under LMI concurrency (#5543) (0d4071b)
  • logger scope debug sampling log level per invocation under LMI concurrency (#5544) (1b4b013)
  • logger accept resolvable IANA timezone aliases in timestamps (#5458) (4cdc936)

Features

  • parameters add support for AppConfig Agent (#5399) (f1deacc)
  • parser add schema for Amazon Connect Outbound Campaigns (#5502) (30d7beb)
Commits
  • 7bcc27b chore(ci): bump version to 2.35.0 (#5563)
  • 66e901c chore(deps): bump the aws-cdk group across 1 directory with 3 updates (#5524)
  • 6bd97ae chore(deps-dev): bump @​valkey/valkey-glide from 2.5.0 to 2.5.1 (#5559)
  • f100ced chore(deps): bump the codeql-action group across 1 directory with 3 updates (...
  • b681b94 chore(deps-dev): bump @​biomejs/biome from 2.5.7 to 2.5.8 (#5560)
  • 97581fd chore(deps-dev): bump @​redis/client from 6.2.0 to 6.2.1 (#5558)
  • 4742290 chore(deps): bump the aws-sdk-v3 group across 1 directory with 48 updates (#5...
  • 6c96925 chore(deps-dev): bump protobufjs from 8.7.1 to 8.7.2 (#5551)
  • 347f60f chore(deps): bump esbuild from 0.28.1 to 0.28.2 (#5552)
  • a47c7a6 refactor(logger): isolate log level InvokeStore access in a store (#5548)
  • Additional commits viewable in compare view

Updates hono from 4.13.2 to 4.13.3

Release notes

Sourced from hono's releases.

v4.13.3

What's Changed

  • fix(client): prevent URL corruption when replaceUrlParam contains $ replacement tokens in honojs/hono#5227
  • fix(etag): copy pending stream bytes in honojs/hono#5239
  • fix(etag): avoid skipping headers when filtering 304 response headers in honojs/hono#5234
  • fix(cors): append Origin to Vary header on OPTIONS preflight in honojs/hono#5235
  • docs(context): add custom headers append option example to Context JSDoc in honojs/hono#5248
  • fix(trie-router): match suffix wildcard routes in honojs/hono#5236
  • fix(pattern-router/linear-router): prevent prefix overmatch on wildcard routes in honojs/hono#5252
  • fix(csrf): exempt OPTIONS request from CSRF validation in honojs/hono#5250
  • fix(utils/ipaddr): avoid truncation on embedded IPv4 addresses in expand IPv6 in honojs/hono#5247
  • feat(pretty-json): support structured JSON content-types (+json) in honojs/hono#5226

Full Changelog: honojs/hono@v4.13.2...v4.13.3

Commits
  • 0293343 4.13.3
  • 5ad469a feat(pretty-json): support structured JSON content-types (+json) (#5226)
  • c91ec9b fix(utils/ipaddr): avoid truncation on embedded IPv4 addresses in expandIPv6 ...
  • eea9735 fix(csrf): exempt OPTIONS request from CSRF validation (#5250)
  • a194628 fix(pattern-router/linear-router): prevent prefix overmatch on wildcard route...
  • 63bbcf5 fix(trie-router): match suffix wildcard routes (#5236)
  • ef0739d docs(context): add custom headers append option example to Context JSDoc (#5248)
  • 8bf03c3 fix(cors): append Origin to Vary header on OPTIONS preflight (#5235)
  • 546eca0 fix(etag): avoid skipping headers when filtering 304 response headers (#5234)
  • 7195c24 fix(etag): copy pending stream bytes (#5239)
  • Additional commits viewable in compare view

Updates aws-cdk from 2.1136.0 to 2.1137.0

Release notes

Sourced from aws-cdk's releases.

aws-cdk@v2.1137.0

2.1137.0 (2026-08-17)

Features

Bug Fixes

  • toolkit-lib: every change-set deployment announces "waiting in review for manual execution (--no-execute)" although the change set is executed (#1818) (86ee97e), closes #1815 #1273
Commits
  • 0b2e50a feat(deps): upgrade aws-cdk-lib (#1840)
  • 86ee97e fix(toolkit-lib): every change-set deployment announces "waiting in review fo...
  • See full diff in compare view

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 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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 25, 2026
@github-actions

github-actions Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
npm/@aws-lambda-powertools/logger 2.35.0 🟢 8.9
Details
CheckScoreReason
Security-Policy🟢 10security policy file detected
Code-Review🟢 10all changesets reviewed
Dependency-Update-Tool🟢 10update tool detected
Maintained🟢 1030 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Token-Permissions🟢 10GitHub workflow tokens follow principle of least privilege
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Pinned-Dependencies🟢 10all dependencies are pinned
Binary-Artifacts🟢 10no binaries found in the repo
CII-Best-Practices🟢 5badge detected: Passing
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Packaging🟢 10packaging workflow detected
Vulnerabilities⚠️ 011 existing vulnerabilities detected
Fuzzing🟢 10project is fuzzed
SAST🟢 10SAST tool is run on all commits
Branch-Protection🟢 8branch protection is not maximal on development and all release branches
CI-Tests🟢 1030 out of 30 merged PRs checked by a CI test -- score normalized to 10
Contributors🟢 10project has 11 contributing companies or organizations
npm/aws-cdk 2.1137.0 UnknownUnknown
npm/hono 4.13.3 UnknownUnknown
npm/hono 4.13.3 UnknownUnknown

Scanned Files

  • example/package.json
  • package/package.json

@github-actions
github-actions Bot enabled auto-merge (squash) August 25, 2026 14:51
@poad
poad disabled auto-merge August 25, 2026 23:33
@poad
poad force-pushed the dependabot/npm_and_yarn/example/npm-10fde285d3 branch from 6c394e2 to f6c9a88 Compare August 25, 2026 23:43
@github-actions
github-actions Bot enabled auto-merge (squash) August 25, 2026 23:43
Bumps the npm group with 3 updates in the /example directory: [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript), [hono](https://github.com/honojs/hono) and [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk).

Updates `@aws-lambda-powertools/logger` from 2.34.0 to 2.35.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.34.0...v2.35.0)

Updates `hono` from 4.13.2 to 4.13.3
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.13.2...v4.13.3)

Updates `aws-cdk` from 2.1136.0 to 2.1137.0
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1137.0/packages/aws-cdk)

---
updated-dependencies:
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-version: 2.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: hono
  dependency-version: 4.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: aws-cdk
  dependency-version: 2.1137.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@poad
poad force-pushed the dependabot/npm_and_yarn/example/npm-10fde285d3 branch from f6c9a88 to 8f4318a Compare August 25, 2026 23:47
@github-actions
github-actions Bot merged commit cd6a6cb into main Aug 25, 2026
4 checks passed
@github-actions
github-actions Bot deleted the dependabot/npm_and_yarn/example/npm-10fde285d3 branch August 25, 2026 23:48
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