An open index of dependabot pull requests across open source projects.

Bump the npm group with 10 updates

Open
Number: #207
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: August 12, 2025 at 11:10 PM UTC
(4 months ago)
Updated: August 12, 2025 at 11:10 PM UTC
(4 months ago)
Labels:
dependencies javascript
Assignees:
poad
Description:

Bumps the npm group with 10 updates:

Package From To
@hono/oauth-providers 0.8.3 0.8.4
hono 4.9.0 4.9.1
@aws-lambda-powertools/logger 2.24.1 2.25.0
tsx 4.20.3 4.20.4
typescript-eslint 8.39.0 8.39.1
vite 7.1.1 7.1.2
@aws-lambda-powertools/commons 2.24.1 2.25.0
@typescript-eslint/eslint-plugin 8.39.0 8.39.1
@typescript-eslint/parser 8.39.0 8.39.1
@typescript-eslint/type-utils 8.39.0 8.39.1

Updates @hono/oauth-providers from 0.8.3 to 0.8.4

Release notes

Sourced from @​hono/oauth-providers's releases.

@​hono/oauth-providers@​0.8.4

Patch Changes

Changelog

Sourced from @​hono/oauth-providers's changelog.

0.8.4

Patch Changes

Commits

Updates hono from 4.9.0 to 4.9.1

Release notes

Sourced from hono's releases.

v4.9.1

What's Changed

Full Changelog: https://github.com/honojs/hono/compare/v4.9.0...v4.9.1

Commits

Updates @aws-lambda-powertools/logger from 2.24.1 to 2.25.0

Release notes

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

v2.25.0

Summary

We have discontinued support for Node.js 18 with this release. All users are strongly encouraged to upgrade to Node.js 20 or later to ensure continued compatibility and security updates.

The parse function is now exported from the Parser package. This addition enables manual parsing in scenarios such as validating query string parameters, offering more flexibility in data handling and validation.

We’ve also fixed a bug with the Zod schema for the Cognito Trigger Event in the parser.

Furthermore, we have been working on the improvements in the overall code quality and maintainability of the codebase.

⭐ Congratulations @​dwrth, @​bdellegrazie, @​jaimellamasi for their first PRs merged in the project 🎉

Parse Function

Docs

import { parse } from '@aws-lambda-powertools/parser';

export const handler = async (event: APIGatewayEvent) => {
try {
const querySchema = z.object({
id: z.string()
});
const params = parse(event.queryStringParameters, undefined, querySchema);
} catch(error) {
console.error("Failed to parse the query string parameters");
}
}

Before this release, it was only possible to use the parser through middleware or a decorator. To use the parse function, simply pass the payload to be parsed, the envelope (if required), the schema, and the optional safe parse flag.

Changes

  • feat(event-handler): add event handler registry (#4307) by @​svozza
  • feat(event-handler): add error classes for http errors (#4299) by @​svozza
  • feat(parser): Exported the parse function from the parser (#4300) by @​sdangol
  • feat(event-handler): implement route matching & resolution system for rest handler (#4297) by @​svozza
  • refactor(idempotency): fix code quality issues (#4298) by @​dwrth
  • improv(deps): Decrease the update schedule of aws-cdk and aws-sdk-v3 group in dependabot (#4290) by @​sdangol
  • refactor(commons): fix code quality issues (#4292) by @​dwrth
  • refactor(jmespath): fix code quality issues (#4286) by @​dwrth
  • refactor(batch): improve code quality in test handlers (#4281) by @​dwrth
  • refactor(logger): replace EnvironmentVariablesService class with helper functions (#4251) by @​jaimellamasi
  • test(event-handler): coverage 100% for AppSync GraphQL (#4261) by @​dreamorosi
  • refactor(kafka): improve tests & error handling (#4262) by @​dreamorosi
  • refactor(tracer): fix code quality issues (#4264) by @​dwrth

... (truncated)

Changelog

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

2.25.0 (2025-08-12)

Improvements

Features

  • parser make parse function available standalone (#4300) (4998d6b)
  • event-handler add event handler registry (#4307) (aaac429)
  • event-handler add error classes for http errors (#4299) (c1c3dd5)
  • event-handler implement route matching & resolution system for rest handler (#4297) (b8ca368)
  • event-handler add support for AppSync GraphQL batch resolvers (#4218) (12ac2e4)

Bug Fixes

  • parser cognito schema preferredRole may be null (#4259) (5ef5c85)
Commits
  • deab7fc chore(deps): Bumped the version to 2.25.0 (#4310)
  • 60bf96e improv(ci): verify output of Layer deployment (Partitions) GitHub Action (#4308)
  • 5d5c602 chore(deps): bump actions/checkout from 4.2.2 to 5.0.0 (#4301)
  • 95fcefe chore(deps): bump @​types/node from 24.2.0 to 24.2.1 (#4304)
  • 723df62 chore(deps): bump the aws-sdk-v3 group across 1 directory with 34 updates (#4...
  • aaac429 feat(event-handler): add event handler registry (#4307)
  • eba63de chore(deps-dev): bump the typescript group across 1 directory with 2 updates ...
  • c1c3dd5 feat(event-handler): add error classes for http errors (#4299)
  • dc59488 chore(deps-dev): bump zod from 4.0.15 to 4.0.17 (#4302)
  • 4998d6b feat(parser): make parse function available standalone (#4300)
  • Additional commits viewable in compare view

Updates tsx from 4.20.3 to 4.20.4

Release notes

Sourced from tsx's releases.

v4.20.4

4.20.4 (2025-08-12)

Bug Fixes


This release is also available on:

Commits

Updates typescript-eslint from 8.39.0 to 8.39.1

Release notes

Sourced from typescript-eslint's releases.

v8.39.1

8.39.1 (2025-08-11)

🩹 Fixes

  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#11464)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.39.1 (2025-08-11)

🩹 Fixes

  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#11464)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • b2ee794 chore(release): publish 8.39.1
  • 7319bad fix(typescript-eslint): handle file:// urls in stack trace when inferring `...
  • See full diff in compare view

Updates vite from 7.1.1 to 7.1.2

Release notes

Sourced from vite's releases.

v7.1.2

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.1.2 (2025-08-12)

Bug Fixes

  • client: add [vite] prefixes to debug logs (#20595) (7cdef61)
  • config: make debugger work with bundle loader (#20573) (c583927)
  • deps: update all non-major dependencies (#20587) (20d4817)
  • don't consider ids with npm: prefix as a built-in module (#20558) (ab33803)
  • hmr: watch non-inlined assets referenced by CSS (#20581) (b7d494b)
  • module-runner: prevent crash when sourceMappingURL pattern appears in string literals (#20554) (2770478)

Miscellaneous Chores

  • deps: migrate to @jridgewell/remapping from @ampproject/remapping (#20577) (0a6048a)
  • deps: update rolldown-related dependencies (#20586) (77632c5)
Commits

Updates @aws-lambda-powertools/commons from 2.24.1 to 2.25.0

Release notes

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

v2.25.0

Summary

We have discontinued support for Node.js 18 with this release. All users are strongly encouraged to upgrade to Node.js 20 or later to ensure continued compatibility and security updates.

The parse function is now exported from the Parser package. This addition enables manual parsing in scenarios such as validating query string parameters, offering more flexibility in data handling and validation.

We’ve also fixed a bug with the Zod schema for the Cognito Trigger Event in the parser.

Furthermore, we have been working on the improvements in the overall code quality and maintainability of the codebase.

⭐ Congratulations @​dwrth, @​bdellegrazie, @​jaimellamasi for their first PRs merged in the project 🎉

Parse Function

Docs

import { parse } from '@aws-lambda-powertools/parser';

export const handler = async (event: APIGatewayEvent) => {
try {
const querySchema = z.object({
id: z.string()
});
const params = parse(event.queryStringParameters, undefined, querySchema);
} catch(error) {
console.error("Failed to parse the query string parameters");
}
}

Before this release, it was only possible to use the parser through middleware or a decorator. To use the parse function, simply pass the payload to be parsed, the envelope (if required), the schema, and the optional safe parse flag.

Changes

  • feat(event-handler): add event handler registry (#4307) by @​svozza
  • feat(event-handler): add error classes for http errors (#4299) by @​svozza
  • feat(parser): Exported the parse function from the parser (#4300) by @​sdangol
  • feat(event-handler): implement route matching & resolution system for rest handler (#4297) by @​svozza
  • refactor(idempotency): fix code quality issues (#4298) by @​dwrth
  • improv(deps): Decrease the update schedule of aws-cdk and aws-sdk-v3 group in dependabot (#4290) by @​sdangol
  • refactor(commons): fix code quality issues (#4292) by @​dwrth
  • refactor(jmespath): fix code quality issues (#4286) by @​dwrth
  • refactor(batch): improve code quality in test handlers (#4281) by @​dwrth
  • refactor(logger): replace EnvironmentVariablesService class with helper functions (#4251) by @​jaimellamasi
  • test(event-handler): coverage 100% for AppSync GraphQL (#4261) by @​dreamorosi
  • refactor(kafka): improve tests & error handling (#4262) by @​dreamorosi
  • refactor(tracer): fix code quality issues (#4264) by @​dwrth

... (truncated)

Changelog

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

2.25.0 (2025-08-12)

Improvements

Features

  • parser make parse function available standalone (#4300) (4998d6b)
  • event-handler add event handler registry (#4307) (aaac429)
  • event-handler add error classes for http errors (#4299) (c1c3dd5)
  • event-handler implement route matching & resolution system for rest handler (#4297) (b8ca368)
  • event-handler add support for AppSync GraphQL batch resolvers (#4218) (12ac2e4)

Bug Fixes

  • parser cognito schema preferredRole may be null (#4259) (5ef5c85)
Commits
  • deab7fc chore(deps): Bumped the version to 2.25.0 (#4310)
  • 60bf96e improv(ci): verify output of Layer deployment (Partitions) GitHub Action (#4308)
  • 5d5c602 chore(deps): bump actions/checkout from 4.2.2 to 5.0.0 (#4301)
  • 95fcefe chore(deps): bump @​types/node from 24.2.0 to 24.2.1 (#4304)
  • 723df62 chore(deps): bump the aws-sdk-v3 group across 1 directory with 34 updates (#4...
  • aaac429 feat(event-handler): add event handler registry (#4307)
  • eba63de chore(deps-dev): bump the typescript group across 1 directory with 2 updates ...
  • c1c3dd5 feat(event-handler): add error classes for http errors (#4299)
  • dc59488 chore(deps-dev): bump zod from 4.0.15 to 4.0.17 (#4302)
  • 4998d6b feat(parser): make parse function available standalone (#4300)
  • Additional commits viewable in compare view

Updates @typescript-eslint/eslint-plugin from 8.39.0 to 8.39.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.39.1

8.39.1 (2025-08-11)

🩹 Fixes

  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#11464)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.39.1 (2025-08-11)

This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @typescript-eslint/parser from 8.39.0 to 8.39.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.39.1

8.39.1 (2025-08-11)

🩹 Fixes

  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#11464)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.39.1 (2025-08-11)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates @typescript-eslint/type-utils from 8.39.0 to 8.39.1

Release notes

Sourced from @​typescript-eslint/type-utils's releases.

v8.39.1

8.39.1 (2025-08-11)

🩹 Fixes

  • typescript-eslint: handle file:// urls in stack trace when inferring tsconfigRootDir (#11464)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/type-utils's changelog.

8.39.1 (2025-08-11)

This was a version bump only for type-utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

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
Pull Request Statistics
Commits:
1
Files Changed:
3
Additions:
+199
Deletions:
-110
Package Dependencies
Package:
vite
Ecosystem:
npm
Version Change:
7.1.1 → 7.1.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.39.0 → 8.39.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.39.0 → 8.39.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.39.0 → 8.39.1
Update Type:
Patch
Package:
tsx
Ecosystem:
npm
Version Change:
4.20.3 → 4.20.4
Update Type:
Patch
Package:
hono
Ecosystem:
npm
Version Change:
4.9.0 → 4.9.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
8.39.0 → 8.39.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.24.1 → 2.25.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
2.24.1 → 2.25.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.8.3 → 0.8.4
Update Type:
Patch
Technical Details
ID: 5052571
UUID: 2740896783
Node ID: PR_kwDOMiUr3s6jXsQP
Host: GitHub
Repository: poad/github-sbom-viewer
Merge State: Unknown