Skip to content

chore(deps)(deps-dev): bump the minor-and-patch group across 1 directory with 3 updates#20

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-a41d5703a6
Open

chore(deps)(deps-dev): bump the minor-and-patch group across 1 directory with 3 updates#20
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-a41d5703a6

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 9, 2026

Bumps the minor-and-patch group with 2 updates in the / directory: @cloudflare/vitest-pool-workers and html-validate.

Updates @cloudflare/vitest-pool-workers from 0.12.14 to 0.12.20

Release notes

Sourced from @​cloudflare/vitest-pool-workers's releases.

@​cloudflare/vitest-pool-workers@​0.12.20

Patch Changes

  • Updated dependencies [ec2459e]:
    • wrangler@4.71.0
    • miniflare@4.20260301.1

@​cloudflare/vitest-pool-workers@​0.12.19

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.18

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.17

Patch Changes

  • Updated dependencies [3d6e421, 294297e]:
    • wrangler@4.68.1
    • miniflare@4.20260302.0

@​cloudflare/vitest-pool-workers@​0.12.16

Patch Changes

@​cloudflare/vitest-pool-workers@​0.12.15

Patch Changes

  • #12602 58a4020 Thanks @​anonrig! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option

    This reduces the number of system calls made when checking for file existence by avoiding the overhead of throwing and catching errors for missing paths. This is an internal performance optimization with no user-visible behavioral changes.

  • Updated dependencies [e93dc01, c2ed7c2, d920811, 896734d, ebdbe52, 58a4020, 6f6cd94]:

    • wrangler@4.67.1
    • miniflare@4.20260302.0
Changelog

Sourced from @​cloudflare/vitest-pool-workers's changelog.

0.12.20

Patch Changes

  • Updated dependencies [ec2459e]:
    • wrangler@4.71.0
    • miniflare@4.20260301.1

0.12.19

Patch Changes

0.12.18

Patch Changes

0.12.17

Patch Changes

  • Updated dependencies [3d6e421, 294297e]:
    • wrangler@4.68.1
    • miniflare@4.20260302.0

0.12.16

Patch Changes

0.12.15

Patch Changes

  • #12602 58a4020 Thanks @​anonrig! - Optimize filesystem operations by using Node.js's throwIfNoEntry: false option

    This reduces the number of system calls made when checking for file existence by avoiding the overhead of throwing and catching errors for missing paths. This is an internal performance optimization with no user-visible behavioral changes.

  • Updated dependencies [e93dc01, c2ed7c2, d920811, 896734d, ebdbe52, 58a4020, 6f6cd94]:

... (truncated)

Commits

Updates html-validate from 10.9.0 to 10.11.1

Release notes

Sourced from html-validate's releases.

v10.11.1

10.11.1 (2026-03-06)

Bug Fixes

  • fix config resolution from cwd when using --stdin (5fc4ff7), closes #344

v10.11.0

10.11.0 (2026-03-04)

Features

  • rules: add include and exclude options to no-redundant-role (864314d), closes #328

v10.10.0

10.10.0 (2026-03-02)

Features

  • api: make Reporter class internal (78835fc)
  • deps: update dependency @​html-validate/stylish to v5 (e059c03)
  • html5: update <button> and <input> elements to set new submitButton property (43f8494)
  • meta: add submitButton metadata property (00e6843)
  • rules: wcag/h32 supports custom submit buttons via new submitButton property (511bc2d)

Bug Fixes

  • rules: form-dup-name handles implicit default button type (e429a66), closes #323
Changelog

Sourced from html-validate's changelog.

10.11.1 (2026-03-06)

Bug Fixes

  • fix config resolution from cwd when using --stdin (5fc4ff7), closes #344

10.11.0 (2026-03-04)

Features

  • rules: add include and exclude options to no-redundant-role (864314d), closes #328

10.10.0 (2026-03-02)

Features

  • api: make Reporter class internal (78835fc)
  • deps: update dependency @​html-validate/stylish to v5 (e059c03)
  • html5: update <button> and <input> elements to set new submitButton property (43f8494)
  • meta: add submitButton metadata property (00e6843)
  • rules: wcag/h32 supports custom submit buttons via new submitButton property (511bc2d)

Bug Fixes

  • rules: form-dup-name handles implicit default button type (e429a66), closes #323
Commits
  • 7a636e2 chore(release): 10.11.1
  • 2f5763e Merge branch 'refactor/eslint-fixes' into 'master'
  • 377b9cf test: add coverage for self-closing title tag
  • 8bd704d test: add coverage for empty selector splitting
  • d0a3e0e test: add coverage for adjacent sibling on first child
  • 0ca58c1 refactor(eslint): fix unicorn/no-object-as-default-parameter
  • f6a8a3f refactor(eslint): fix unicorn/no-useless-promise-resolve-reject
  • 63a6e4d refactor(eslint): fix unicorn/prefer-add-event-listener
  • b7217ac refactor(eslint): fix unicorn/prefer-code-point
  • 2abee09 refactor(eslint): fix unicorn/prefer-import-meta-properties
  • Additional commits viewable in compare view

Updates wrangler from 4.67.0 to 4.71.0

Release notes

Sourced from wrangler's releases.

wrangler@4.71.0

Minor Changes

  • #11656 ec2459e Thanks @​prydt! - feat(hyperdrive): add MySQL SSL mode and Custom CA support

    Hyperdrive now supports MySQL-specific SSL modes (REQUIRED, VERIFY_CA, VERIFY_IDENTITY) alongside the existing PostgreSQL modes. The --sslmode flag now validates the provided value based on the database scheme (PostgreSQL or MySQL) and enforces appropriate CA certificate requirements for each.

    Usage:

    # MySQL with CA verification
    wrangler hyperdrive create my-config --connection-string="mysql://user:pass@host:3306/db" --sslmode=VERIFY_CA --ca-certificate-id=<cert-id>
    PostgreSQL (unchanged)
    wrangler hyperdrive create my-config --connection-string="postgres://user:pass@host:5432/db" --sslmode=verify-full --ca-certificate-id=<cert-id>

Patch Changes

  • Updated dependencies [5cc8fcf]:
    • @​cloudflare/unenv-preset@​2.15.0
    • miniflare@4.20260301.1

wrangler@4.70.0

Minor Changes

  • #11332 6a8aa5f Thanks @​nikitassharma! - Users are now able to configure DockerHub credentials and have containers reference images stored there.

    DockerHub can be configured as follows:

    echo $PAT_TOKEN | npx wrangler@latest containers registries configure docker.io --dockerhub-username=user --secret-name=DockerHub_PAT_Token

    Containers can then specify an image from DockerHub in their wrangler.jsonc as follows:

    "containers": {
      "image": "docker.io/namespace/image:tag",
      ...
    }
  • #12649 35b2c56 Thanks @​gabivlj! - Add experimental support for containers to workers communication with interceptOutboundHttp

    This feature is experimental and requires adding the "experimental" compatibility flag to your Wrangler configuration.

  • #12701 23a365a Thanks @​jamesopstad! - Add local dev validation for the experimental secrets configuration property

    When the new secrets property is defined, wrangler dev and vite dev now validate secrets declared in secrets.required. When required secrets are missing from .dev.vars or .env/process.env, a warning is logged listing the missing secret names.

... (truncated)

Commits
  • 9dff00c Version Packages (#12748)
  • 331d4de Revert "Bump the workerd-and-workers-types group with 2 updates" (#12776)
  • 48bbe20 Bump the workerd-and-workers-types group with 2 updates (#12768)
  • ec2459e Add MySQL SSL options for hyperdrive creation (#11656)
  • 5cc8fcf [unenv] Use the native workerd perf_hooks modules when available (#10618)
  • ea57dfd Version Packages (#12702)
  • bf9cb3d feat: add configurable step limits for Workflows (#12622)
  • 6a8aa5f Allow users to configure DockerHub for use with containers (#11332)
  • d672e2e Fix SolidStart autoconfig for projects using version 2.0.0-alpha or later (#1...
  • 35b2c56 containers: Add container and test Containers interceptOutboundHttp (#12649)
  • 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

…ory with 3 updates

Bumps the minor-and-patch group with 2 updates in the / directory: [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) and [html-validate](https://gitlab.com/html-validate/html-validate).


Updates `@cloudflare/vitest-pool-workers` from 0.12.14 to 0.12.20
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/vitest-pool-workers/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/@cloudflare/vitest-pool-workers@0.12.20/packages/vitest-pool-workers)

Updates `html-validate` from 10.9.0 to 10.11.1
- [Release notes](https://gitlab.com/html-validate/html-validate/tags)
- [Changelog](https://gitlab.com/html-validate/html-validate/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/html-validate/html-validate/compare/v10.9.0...v10.11.1)

Updates `wrangler` from 4.67.0 to 4.71.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.71.0/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@cloudflare/vitest-pool-workers"
  dependency-version: 0.12.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: html-validate
  dependency-version: 10.11.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: wrangler
  dependency-version: 4.71.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 9, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants