Bump the npm group with 7 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 1
(about 2 months ago)
(about 2 months ago)
(about 2 months ago)
by github-actions[bot]
dependencies javascript
poad
Bumps the npm group with 7 updates:
Package | From | To |
---|---|---|
hono | 4.8.9 |
4.8.10 |
@aws-lambda-powertools/logger | 2.24.0 |
2.24.1 |
aws-cdk | 2.1022.0 |
2.1023.0 |
vite-plugin-solid | 2.11.7 |
2.11.8 |
@aws-lambda-powertools/commons | 2.24.0 |
2.24.1 |
caniuse-lite | 1.0.30001727 |
1.0.30001731 |
electron-to-chromium | 1.5.191 |
1.5.192 |
Updates hono
from 4.8.9 to 4.8.10
Release notes
Sourced from hono's releases.
v4.8.10
What's Changed
- chore: add EditorConfig by
@3w36zj6
in honojs/hono#4309- chore: format JSON, YAML, and Markdown by
@yusukebe
in honojs/hono#4310- chore: format and lint
benchmarks/*
by@yusukebe
in honojs/hono#4317- refactor(types): bring adapter/service-worker types up to date by
@idealsh
in honojs/hono#4315- chore: add editorconfig-checker by
@3w36zj6
in honojs/hono#4312- fix(cookie): support lowercase priority for compatibility with other libraries by
@bytaesu
in honojs/hono#4293New Contributors
@idealsh
made their first contribution in honojs/hono#4315@bytaesu
made their first contribution in honojs/hono#4293Full Changelog: https://github.com/honojs/hono/compare/v4.8.9...v4.8.10
Commits
b76ca6e
4.8.10f934117
fix(cookie): support lowercase priority for compatibility with other librarie...d02366f
chore: add editorconfig-checker (#4312)f91ec14
refactor(types): bring adapter/service-worker types up to date (#4315)0d12626
chore: format and lintbenchmarks/*
(#4317)46f484c
chore: format JSON, YAML, and Markdown (#4310)65764d5
chore: add EditorConfig (#4309)- See full diff in compare view
Updates @aws-lambda-powertools/logger
from 2.24.0 to 2.24.1
Release notes
Sourced from @aws-lambda-powertools/logger
's releases.
v2.24.1
Summary
In this release we have improved runtime validations in the Metrics utility, ensuring that invalid metrics are not sent to CloudWatch and avoiding data loss.
Furthermore, we now only support Zod 4.x. Using Zod 3.x with the Parser utility will result in a build-time error.
⭐ Congratulations
@JonkaSusaki
and@uttam282005
for their first PRs merged in the project 🎉Metrics Runtime Validations
Before this release, if you published invalid metrics they could fail silently, leading to data loss. Now Lambda will throw an error if the following constraints do not hold:
- Metric Name: Validated according to CloudWatch constraints
- Metric Value: Validated for numeric values
- Metric Unit: Validated for allowed units
- Metric Resolution: Validated for allowed resolutions
- Dimension Name: Both Dimension name and value are validated for non empty, non-null values.
Changes
- fix(metrics): revert changes when raise warning with overridden default dimensions (#4226) by
@svozza
- fix(metrics): emit warning when default dimensions are overwritten (#4222) by
@uttam282005
- refactor(event-handler): replace EnvironmentVariablesService class with helper functions in Event Handler (#4225) by
@JonkaSusaki
- ci: fix version output interpolation in make-version workflow (#4220) by
@dreamorosi
- ci: set version number correctly when versioning (#4219) by
@dreamorosi
- feat(event-handler): add route management system for ApiGw event handler (#4211) by
@svozza
- ci: update
make-release.yml
workflow to use latest upstream (#4215) by@dreamorosi
- ci: remove local create-pr action (#4213) by
@dreamorosi
- improv(maintenance): Removed some unused assignments and added missing error handling (#4208) by
@sdangol
- ci: remove
lerna version
(#4201) by@dreamorosi
- refactor(ci): Updated the publish command in the CI to use
npm publish
instead oflerna publish
(#4195) by@sdangol
- refactor(metrics): replace EnvironmentVariablesService with cached #envConfig (#4188) by
@uttam282005
- improv(metrics): Added runtime validations for the metrics utility functions (#4181) by
@sdangol
- refactor(parameters): replace EnvironmentVariablesService class with helper functions in Parameters (#4168) by
@JonkaSusaki
🌟New features and non-breaking changes
- feat(event-handler): add base router class (#3972) by
@dreamorosi
📜 Documentation updates
- chore(ci): bump version to 2.24.1 (#4231) by
@sdangol
- chore(deps): bump
@types/aws-lambda
from 8.10.150 to 8.10.152 (#4205) by @dependabot[bot]- chore(deps): bump esbuild from 0.25.6 to 0.25.8 (#4200) by @dependabot[bot]
- chore(deps): bump the aws-sdk-v3 group across 1 directory with 2 updates (#4192) by @dependabot[bot]
- chore(deps): bump
@types/node
from 24.0.14 to 24.1.0 (#4193) by @dependabot[bot]- chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (#4186) by @dependabot[bot]
... (truncated)
Changelog
Sourced from @aws-lambda-powertools/logger
's changelog.
2.24.1 (2025-07-29)
Bug Fixes
- metrics revert changes when raise warning with overridden default dimensions (#4226) (c9d6aa0)
- metrics emit warning when default dimensions are overwritten (#4222) (a933a6a)
- parser set zod peer range to 4.x (#4196) (7a65fcf)
Improvements
- metrics replace EnvironmentVariablesService with cached #envConfig (#4188) (919063b)
- metrics add runtime validations when adding dimensions (#4181) (4226058)
- parameters replace EnvironmentVariablesService class with helper functions in Parameters (#4168) (ce4e618)
- event-handler replace EnvironmentVariablesService class with helper functions in Event Handler (#4225) (d17818e)
Features
Commits
fc26144
chore(ci): bump version to 2.24.1 (#4231)c9d6aa0
fix(metrics): revert changes when raise warning with overridden default dimen...a933a6a
fix(metrics): emit warning when default dimensions are overwritten (#4222)d17818e
refactor(event-handler): replace EnvironmentVariablesService class with helpe...fea274f
ci: fix version output interpolation in make-version workflow (#4220)7bc1121
ci: set version number correctly when versioning (#4219)c2cbb64
feat(event-handler): add route management system for ApiGw event handler (#4211)0c12440
ci: updatemake-release.yml
workflow to use latest upstream (#4215)94ebf16
chore(deps): bump@types/aws-lambda
from 8.10.150 to 8.10.152 (#4205)b1f7fee
ci: remove local create-pr action (#4213)- Additional commits viewable in compare view
Updates aws-cdk
from 2.1022.0 to 2.1023.0
Commits
969c499
feat: modify a single feature flag configuration (#738)2f44d1e
chore: typo in readme (#739)- See full diff in compare view
Updates vite-plugin-solid
from 2.11.7 to 2.11.8
Release notes
Sourced from vite-plugin-solid's releases.
vite-plugin-solid@2.11.8
Patch Changes
- 94431eb: add support for vite 7 in peerDeps
- ea5f791: Fix Vite 7+ compatibility.
Changelog
Sourced from vite-plugin-solid's changelog.
2.11.8
Patch Changes
- 94431eb: add support for vite 7 in peerDeps
- ea5f791: Fix Vite 7+ compatibility.
Commits
Updates @aws-lambda-powertools/commons
from 2.24.0 to 2.24.1
Release notes
Sourced from @aws-lambda-powertools/commons
's releases.
v2.24.1
Summary
In this release we have improved runtime validations in the Metrics utility, ensuring that invalid metrics are not sent to CloudWatch and avoiding data loss.
Furthermore, we now only support Zod 4.x. Using Zod 3.x with the Parser utility will result in a build-time error.
⭐ Congratulations
@JonkaSusaki
and@uttam282005
for their first PRs merged in the project 🎉Metrics Runtime Validations
Before this release, if you published invalid metrics they could fail silently, leading to data loss. Now Lambda will throw an error if the following constraints do not hold:
- Metric Name: Validated according to CloudWatch constraints
- Metric Value: Validated for numeric values
- Metric Unit: Validated for allowed units
- Metric Resolution: Validated for allowed resolutions
- Dimension Name: Both Dimension name and value are validated for non empty, non-null values.
Changes
- fix(metrics): revert changes when raise warning with overridden default dimensions (#4226) by
@svozza
- fix(metrics): emit warning when default dimensions are overwritten (#4222) by
@uttam282005
- refactor(event-handler): replace EnvironmentVariablesService class with helper functions in Event Handler (#4225) by
@JonkaSusaki
- ci: fix version output interpolation in make-version workflow (#4220) by
@dreamorosi
- ci: set version number correctly when versioning (#4219) by
@dreamorosi
- feat(event-handler): add route management system for ApiGw event handler (#4211) by
@svozza
- ci: update
make-release.yml
workflow to use latest upstream (#4215) by@dreamorosi
- ci: remove local create-pr action (#4213) by
@dreamorosi
- improv(maintenance): Removed some unused assignments and added missing error handling (#4208) by
@sdangol
- ci: remove
lerna version
(#4201) by@dreamorosi
- refactor(ci): Updated the publish command in the CI to use
npm publish
instead oflerna publish
(#4195) by@sdangol
- refactor(metrics): replace EnvironmentVariablesService with cached #envConfig (#4188) by
@uttam282005
- improv(metrics): Added runtime validations for the metrics utility functions (#4181) by
@sdangol
- refactor(parameters): replace EnvironmentVariablesService class with helper functions in Parameters (#4168) by
@JonkaSusaki
🌟New features and non-breaking changes
- feat(event-handler): add base router class (#3972) by
@dreamorosi
📜 Documentation updates
- chore(ci): bump version to 2.24.1 (#4231) by
@sdangol
- chore(deps): bump
@types/aws-lambda
from 8.10.150 to 8.10.152 (#4205) by @dependabot[bot]- chore(deps): bump esbuild from 0.25.6 to 0.25.8 (#4200) by @dependabot[bot]
- chore(deps): bump the aws-sdk-v3 group across 1 directory with 2 updates (#4192) by @dependabot[bot]
- chore(deps): bump
@types/node
from 24.0.14 to 24.1.0 (#4193) by @dependabot[bot]- chore(deps): bump the aws-sdk-v3 group across 1 directory with 9 updates (#4186) by @dependabot[bot]
... (truncated)
Changelog
Sourced from @aws-lambda-powertools/commons
's changelog.
2.24.1 (2025-07-29)
Bug Fixes
- metrics revert changes when raise warning with overridden default dimensions (#4226) (c9d6aa0)
- metrics emit warning when default dimensions are overwritten (#4222) (a933a6a)
- parser set zod peer range to 4.x (#4196) (7a65fcf)
Improvements
- metrics replace EnvironmentVariablesService with cached #envConfig (#4188) (919063b)
- metrics add runtime validations when adding dimensions (#4181) (4226058)
- parameters replace EnvironmentVariablesService class with helper functions in Parameters (#4168) (ce4e618)
- event-handler replace EnvironmentVariablesService class with helper functions in Event Handler (#4225) (d17818e)
Features
Commits
fc26144
chore(ci): bump version to 2.24.1 (#4231)c9d6aa0
fix(metrics): revert changes when raise warning with overridden default dimen...a933a6a
fix(metrics): emit warning when default dimensions are overwritten (#4222)d17818e
refactor(event-handler): replace EnvironmentVariablesService class with helpe...fea274f
ci: fix version output interpolation in make-version workflow (#4220)7bc1121
ci: set version number correctly when versioning (#4219)c2cbb64
feat(event-handler): add route management system for ApiGw event handler (#4211)0c12440
ci: updatemake-release.yml
workflow to use latest upstream (#4215)94ebf16
chore(deps): bump@types/aws-lambda
from 8.10.150 to 8.10.152 (#4205)b1f7fee
ci: remove local create-pr action (#4213)- Additional commits viewable in compare view
Updates caniuse-lite
from 1.0.30001727 to 1.0.30001731
Commits
fad7902
Update caniuse-db 1.0.30001731423d5ce
Update caniuse-db 1.0.30001730- See full diff in compare view
Updates electron-to-chromium
from 1.5.191 to 1.5.192
Commits
ca59852
1.5.192856f1c8
generate new version- 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 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
1
3
+41
-41
Package Dependencies
@aws-lambda-powertools/logger
npm
2.24.0 → 2.24.1
Patch
@aws-lambda-powertools/commons
npm
2.24.0 → 2.24.1
Patch
Technical Details
ID: | 4305768 |
UUID: | 2705021984 |
Node ID: | PR_kwDOMiUr3s6hO1wg |
Host: | GitHub |
Repository: | poad/github-sbom-viewer |
Merge State: | Unknown |