Bump the npm group with 10 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(4 months ago)
(4 months ago)
dependencies javascript
poad
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.4Patch Changes
- #1372
1980a66370d4afc8d552ac08bd25af0c87b49112Thanks@mrdear! - fixed github email request content-type
Changelog
Sourced from @hono/oauth-providers's changelog.
0.8.4
Patch Changes
- #1372
1980a66370d4afc8d552ac08bd25af0c87b49112Thanks@mrdear! - fixed github email request content-type
Commits
b319d97Version Packages (#1383)1980a66fix(oauth-providers): github oauth (#1372)- See full diff in compare view
Updates hono from 4.9.0 to 4.9.1
Release notes
Sourced from hono's releases.
v4.9.1
What's Changed
- feat(parseResponse): set
DetailedError.name(+ error tests) by@NamesMTin honojs/hono#4344- fix(parseResponse): should not include error responses in result by
@NamesMTin honojs/hono#4348Full 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
parsefunction 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,@jaimellamasifor their first PRs merged in the project 🎉Parse Function
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
parsefunction, 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
- commons fix code quality issues (#4292) (5ee4198)
- jmespath fix code quality issues (#4286) (787633d)
- logger replace EnvironmentVariablesService class with helper functions (#4251) (b2fcd90)
- tracer fix code quality issues (#4264) (081a514)
- idempotency fix code quality issues (#4298) (1fc8604)
- batch improve code quality in test handlers (#4281) (75e233f)
- kafka improve tests & error handling (#4262) (dab0be1)
Features
- parser make
parsefunction 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
Commits
deab7fcchore(deps): Bumped the version to 2.25.0 (#4310)60bf96eimprov(ci): verify output of Layer deployment (Partitions) GitHub Action (#4308)5d5c602chore(deps): bump actions/checkout from 4.2.2 to 5.0.0 (#4301)95fcefechore(deps): bump@types/nodefrom 24.2.0 to 24.2.1 (#4304)723df62chore(deps): bump the aws-sdk-v3 group across 1 directory with 34 updates (#4...aaac429feat(event-handler): add event handler registry (#4307)eba63dechore(deps-dev): bump the typescript group across 1 directory with 2 updates ...c1c3dd5feat(event-handler): add error classes for http errors (#4299)dc59488chore(deps-dev): bump zod from 4.0.15 to 4.0.17 (#4302)4998d6bfeat(parser): makeparsefunction 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
a639836fix: override Node's native TS formats (#733)bddd4f5chore(deps): update dependency node to v20.19.3 (#720)- See full diff in compare view
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 inferringtsconfigRootDir(#11464)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou 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 inferringtsconfigRootDir(#11464)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou can read about our versioning strategy and releases on our website.
Commits
b2ee794chore(release): publish 8.39.17319badfix(typescript-eslint): handlefile://urls in stack trace when inferring `...- See full diff in compare view
Updates vite from 7.1.1 to 7.1.2
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
Commits
- See full diff in compare view
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
parsefunction 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,@jaimellamasifor their first PRs merged in the project 🎉Parse Function
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
parsefunction, 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
- commons fix code quality issues (#4292) (5ee4198)
- jmespath fix code quality issues (#4286) (787633d)
- logger replace EnvironmentVariablesService class with helper functions (#4251) (b2fcd90)
- tracer fix code quality issues (#4264) (081a514)
- idempotency fix code quality issues (#4298) (1fc8604)
- batch improve code quality in test handlers (#4281) (75e233f)
- kafka improve tests & error handling (#4262) (dab0be1)
Features
- parser make
parsefunction 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
Commits
deab7fcchore(deps): Bumped the version to 2.25.0 (#4310)60bf96eimprov(ci): verify output of Layer deployment (Partitions) GitHub Action (#4308)5d5c602chore(deps): bump actions/checkout from 4.2.2 to 5.0.0 (#4301)95fcefechore(deps): bump@types/nodefrom 24.2.0 to 24.2.1 (#4304)723df62chore(deps): bump the aws-sdk-v3 group across 1 directory with 34 updates (#4...aaac429feat(event-handler): add event handler registry (#4307)eba63dechore(deps-dev): bump the typescript group across 1 directory with 2 updates ...c1c3dd5feat(event-handler): add error classes for http errors (#4299)dc59488chore(deps-dev): bump zod from 4.0.15 to 4.0.17 (#4302)4998d6bfeat(parser): makeparsefunction 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 inferringtsconfigRootDir(#11464)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou 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
b2ee794chore(release): publish 8.39.1fee2bc6chore: update eslint-plugin-eslint-plugin (#11449)- See full diff in compare view
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 inferringtsconfigRootDir(#11464)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou 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
b2ee794chore(release): publish 8.39.1- See full diff in compare view
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 inferringtsconfigRootDir(#11464)❤️ Thank You
- Kirk Waiblinger
@kirkwaiblingerYou 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
b2ee794chore(release): publish 8.39.1- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
1
3
+199
-110
Package Dependencies
@typescript-eslint/parser
npm
8.39.0 → 8.39.1
Patch
@typescript-eslint/eslint-plugin
npm
8.39.0 → 8.39.1
Patch
@typescript-eslint/type-utils
npm
8.39.0 → 8.39.1
Patch
@aws-lambda-powertools/logger
npm
2.24.1 → 2.25.0
Minor
@aws-lambda-powertools/commons
npm
2.24.1 → 2.25.0
Minor
Technical Details
| ID: | 5052571 |
| UUID: | 2740896783 |
| Node ID: | PR_kwDOMiUr3s6jXsQP |
| Host: | GitHub |
| Repository: | poad/github-sbom-viewer |
| Merge State: | Unknown |