Skip to content

Comments

chore(deps-dev): bump the dev-dependencies group across 1 directory with 4 updates#108

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-dependencies-ad245451db
Open

chore(deps-dev): bump the dev-dependencies group across 1 directory with 4 updates#108
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/dev-dependencies-ad245451db

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 19, 2026

Bumps the dev-dependencies group with 4 updates in the / directory: turbo, wrangler, @types/node and jsdom.

Updates turbo from 2.8.6 to 2.8.10

Release notes

Sourced from turbo's releases.

Turborepo v2.8.10

What's Changed

create-turbo

Changelog

Full Changelog: vercel/turborepo@v2.8.9...v2.8.10

Turborepo v2.8.10-canary.9

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.10-canary.8...v2.8.10-canary.9

Turborepo v2.8.10-canary.8

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.8.10-canary.7...v2.8.10-canary.8

Turborepo v2.8.10-canary.7

What's Changed

Changelog

... (truncated)

Commits
  • 1e0e1ae publish 2.8.10 to registry
  • 7cb9f0c release(turborepo): 2.8.10-canary.9 (#11892)
  • 2af1c0d perf: Pre-compile glob exclusion filter and cache path prefix in file hashing...
  • 31e29c9 release(turborepo): 2.8.10-canary.8 (#11890)
  • 5cbeef3 perf: Parallelize and pre-build RepoGitIndex (#11889)
  • a4213a1 release(turborepo): 2.8.10-canary.7 (#11888)
  • 42ab7fc perf: Batch per-package git subprocess calls into repo-wide index (#11887)
  • 48f5a2b release(turborepo): 2.8.10-canary.6 (#11885)
  • 8e3395e feat: Make --profile and --anon-profile filename optional (#11883)
  • 5febe7f release(turborepo): 2.8.10-canary.5 (#11884)
  • Additional commits viewable in compare view

Updates wrangler from 4.66.0 to 4.67.0

Release notes

Sourced from wrangler's releases.

wrangler@4.67.0

Minor Changes

  • #12401 8723684 Thanks @​jonesphillip! - Add validation retry loops to pipelines setup command

    The wrangler pipelines setup command now prompts users to retry when validation errors occur, instead of failing the entire setup process. This includes:

    • Validation retry prompts for pipeline names, bucket names, and field names
    • A "simple" mode for sink configuration that uses sensible defaults
    • Automatic bucket creation when buckets don't exist
    • Automatic Data Catalog enablement when not already active

    This improves the setup experience by allowing users to correct mistakes without restarting the entire configuration flow.

  • #12395 aa82c2b Thanks @​cmackenzie1! - Generate typed pipeline bindings from stream schemas

    When running wrangler types, pipeline bindings now generate TypeScript types based on the stream's schema definition. This gives you full autocomplete and type checking when sending data to your pipelines.

    // wrangler.json
    {
    	"pipelines": [
    		{ "binding": "ANALYTICS", "pipeline": "analytics-stream-id" },
    	],
    }

    If your stream has a schema with fields like user_id (string) and event_count (int32), the generated types will be:

    declare namespace Cloudflare {
    	type AnalyticsStreamRecord = { user_id: string; event_count: number };
    	interface Env {
    		ANALYTICS: Pipeline<Cloudflare.AnalyticsStreamRecord>;
    	}
    }

    For unstructured streams or when not authenticated, bindings fall back to the generic Pipeline<PipelineRecord> type.

Patch Changes

  • #12592 aaa7200 Thanks @​dependabot! - Update dependencies of "miniflare", "wrangler"

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20260217.0 1.20260218.0

... (truncated)

Commits
  • 88705ad Version Packages (#12580)
  • ca58062 [wrangler] Stop redacting account names in non-interactive mode (#12598)
  • e2a6600 fix: pass --env flag to auxiliary workers in multi-worker mode (#12604)
  • 2f19a40 chore(deps): bump the workerd-and-workers-types group with 2 updates (#12606)
  • 8723684 Improve pipelines setup command with validation retry loops (#12401)
  • 0b17117 improve: bump up maximum allowed value for Queue delivery and retry delay to ...
  • aa82c2b Generate typed pipeline bindings from stream schemas (#12395)
  • b7841db Migrate tests from unstable_dev() to unstable_startWorker() (#12053)
  • 5f9f0b4 feat(unenv-preset): add support for native node:readline module (#11734)
  • aaa7200 chore(deps): bump the workerd-and-workers-types group with 2 updates (#12592)
  • Additional commits viewable in compare view

Updates @types/node from 25.2.3 to 25.3.0

Commits

Updates jsdom from 28.0.0 to 28.1.0

Release notes

Sourced from jsdom's releases.

Version 28.1.0

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.
Changelog

Sourced from jsdom's changelog.

28.1.0

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.
Commits
  • 12949b5 Version 28.1.0
  • ce4c58f Apply CSS specificity when computing styles
  • 7ed55a0 Skip single-byte-decoder encoding tests on Node 20
  • f3b1973 Generalize node version conditions in test expectations
  • 853c596 Rewrite getElementById ID caching for tree-order correctness
  • 5fbfde6 Fix potential sync XHR worker hang from unhandled dispatch errors
  • 82df38f Cache the root node for document-connected trees
  • ed7c5c0 Add documentation comment to create-event-accessor.js
  • b4562e9 Simplify Window.js installEventHandlers
  • 7da340f Centralize "determine the target of an event handler"
  • 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

…ith 4 updates

Bumps the dev-dependencies group with 4 updates in the / directory: [turbo](https://github.com/vercel/turborepo), [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [jsdom](https://github.com/jsdom/jsdom).


Updates `turbo` from 2.8.6 to 2.8.10
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.8.6...v2.8.10)

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

Updates `@types/node` from 25.2.3 to 25.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `jsdom` from 28.0.0 to 28.1.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@28.0.0...28.1.0)

---
updated-dependencies:
- dependency-name: turbo
  dependency-version: 2.8.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: wrangler
  dependency-version: 4.67.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: jsdom
  dependency-version: 28.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 19, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants