Skip to content

Bump the npm group across 2 directories with 2 updates - #262

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

Bump the npm group across 2 directories with 2 updates#262
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/example/npm-c6688b343c

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm group with 1 update in the /example directory: aws-cdk.
Bumps the npm group with 1 update in the /package directory: @aws-lambda-powertools/logger.

Updates aws-cdk from 2.1137.0 to 2.1138.0

Release notes

Sourced from aws-cdk's releases.

aws-cdk@v2.1138.0

2.1138.0 (2026-08-19)

Features

Bug Fixes

  • cli: cdk context header always claims the context was found in cdk.json (#1816) (b7783b5), closes #1814
  • cli: cdk flags --set leaks synthesized cloud assembly directories (#1833) (fd891fb), closes #1832
  • cli: fail fast when --proxy has no or an unsupported protocol (#1843) (da37001), closes #453
  • cli: refactor fails on stacks with bundled assets (#1812) (8458a4a), closes #1810
  • cli: reject non-numeric ids in cdk acknowledge (#1844) (c71ab23), closes #248
Commits
  • a4c0282 feat(cli): add "errors-only" progress mode that only prints errors (#1800)
  • 8458a4a fix(cli): refactor fails on stacks with bundled assets (#1812)
  • fd891fb fix(cli): cdk flags --set leaks synthesized cloud assembly directories (#1833)
  • f8e7da1 feat(cli): support notification-arns in cdk import (#1740)
  • da37001 fix(cli): fail fast when --proxy has no or an unsupported protocol (#1843)
  • bcc0f2b chore(deps): upgrade dependencies (#1841)
  • b7783b5 fix(cli): cdk context header always claims the context was found in cdk.json ...
  • c71ab23 fix(cli): reject non-numeric ids in cdk acknowledge (#1844)
  • See full diff in compare view

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

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

Bumps the npm group with 1 update in the /example directory: [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk).
Bumps the npm group with 1 update in the /package directory: [@aws-lambda-powertools/logger](https://github.com/aws-powertools/powertools-lambda-typescript).


Updates `aws-cdk` from 2.1137.0 to 2.1138.0
- [Release notes](https://github.com/aws/aws-cdk-cli/releases)
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1138.0/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)

---
updated-dependencies:
- dependency-name: aws-cdk
  dependency-version: 2.1138.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@aws-lambda-powertools/logger"
  dependency-version: 2.35.0
  dependency-type: direct:production
  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 Aug 26, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) August 26, 2026 18:15
@github-actions

Copy link
Copy Markdown
Contributor

Dependency Review

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

OpenSSF Scorecard

PackageVersionScoreDetails
npm/aws-cdk 2.1138.0 UnknownUnknown
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

Scanned Files

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

@github-actions
github-actions Bot merged commit fac1b9e into main Aug 26, 2026
4 checks passed
@github-actions
github-actions Bot deleted the dependabot/npm_and_yarn/example/npm-c6688b343c branch August 26, 2026 18:18
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