webpack-dev-server
webpack-dev-server copied to clipboard
chore(deps-dev): bump the dependencies group across 1 directory with 3 updates
Bumps the dependencies group with 3 updates in the / directory: @types/node, hono and puppeteer.
Updates @types/node from 22.15.31 to 22.15.32
Commits
- See full diff in compare view
Updates hono from 4.7.11 to 4.8.0
Release notes
Sourced from hono's releases.
v4.8.0
Release Notes
Hono v4.8.0 is now available!
This release enhances existing features with new options and introduces powerful helpers for routing and static site generation. Additionally, we're introducing new third-party middleware packages.
- Route Helper
- JWT Custom Header Location
- JSX Streaming Nonce Support
- CORS Dynamic allowedMethods
- JWK Allow Anonymous Access
- Cache Status Codes Option
- Service Worker
fire()Function- SSG Plugin System
Plus new third-party middleware:
- MCP Middleware
- UA Blocker Middleware
- Zod Validator v4 Support
Let's look at each of these.
Reduced the code size
First, this update reduces the code size! The smallest
hono/tinypackage has been reduced by about 800 bytes fromv4.7.11, bringing it down to approximately 11 KB. When gzipped, it's only 4.5 KB. Very tiny!Route Helper
New route helper functions provide easy access to route information and path utilities.
import { Hono } from 'hono' import { matchedRoutes, routePath, baseRoutePath, basePath, } from 'hono/route'const api = new Hono()
api.get('/users/:id/posts/:postId', (c) => {
const matched = matchedRoutes(c) // Array of matched route handlers
const current = routePath(c) // '/api/users/:id/posts/:postId'
const base = baseRoutePath(c) // '/api' Base route path
const appBase = basePath(c) // '/api' Base path
return c.json({ matched, current, base, appBase })
})
</tr></table>
... (truncated)
Commits
946fcf44.8.025d4b9dMerge pull request #4227 from honojs/next5af4f1ffeat(ssg): add plugin system (#4156)ad334cdfeat(hono-base): markapp.fire()as deprecated (#4231)81ff801ci: handle fork PRs in http-benchmark workflow (#4229)6071651feat(service-worker): addfire()(#4214)635f15aci: handle fork PRs in http-benchmark workflow (#4229)62e0aacperf(trie-router): improve performance and reduce file size (#4217)3df5bf9fix(req): don't throw if the query param is invalid (#4110)9cdfdf3fix: reduce Context code (#4100)- Additional commits viewable in compare view
Updates puppeteer from 24.10.0 to 24.10.1
Release notes
Sourced from puppeteer's releases.
puppeteer-core: v24.10.1
24.10.1 (2025-06-11)
Bug Fixes
- roll to Chrome 137.0.7151.68 (#13918) (7ae67cd)
- roll to Chrome 137.0.7151.70 (#13933) (c36440d)
- roll to Firefox 139.0.4 (#13934) (f651af3)
puppeteer: v24.10.1
24.10.1 (2025-06-11)
Miscellaneous Chores
- puppeteer: Synchronize puppeteer versions
Dependencies
- The following workspace dependencies were updated
- dependencies
- puppeteer-core bumped from 24.10.0 to 24.10.1
Changelog
Sourced from puppeteer's changelog.
24.10.1 (2025-06-11)
Miscellaneous Chores
- puppeteer: Synchronize puppeteer versions
Dependencies
- The following workspace dependencies were updated
- dependencies
- puppeteer-core bumped from 24.10.0 to 24.10.1
Bug Fixes
Commits
295be62chore: release main (#13919)f651af3fix: roll to Firefox 139.0.4 (#13934)c36440dfix: roll to Chrome 137.0.7151.70 (#13933)14ae222chore: Sync expectations for Bug 1906051 (#13917)c234e81chore: update devcontainer.json (#13923)0f0882cchore(deps): Bump the all group with 2 updates (#13916)3dabf0echore(deps-dev): Bump the dev-dependencies group with 10 updates (#13914)7ae67cdfix: roll to Chrome 137.0.7151.68 (#13918)- 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