Skip to content

chore(deps): update npm minor and patch dependencies#5581

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-minor-patch
Open

chore(deps): update npm minor and patch dependencies#5581
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@anthropic-ai/claude-agent-sdk ^0.3.205^0.3.206 age confidence
@cloudflare/vitest-pool-workers (source) ^0.18.0^0.18.4 age confidence
@lovable.dev/vite-plugin-dev-server-bridge (source) 1.0.31.1.0 age confidence
@lovable.dev/vite-tanstack-config (source) 2.6.52.7.2 age confidence
@radix-ui/react-accordion (source) ^1.2.15^1.2.16 age confidence
@radix-ui/react-alert-dialog (source) ^1.1.18^1.1.19 age confidence
@radix-ui/react-avatar (source) ^1.2.1^1.2.2 age confidence
@radix-ui/react-checkbox (source) ^1.3.6^1.3.7 age confidence
@radix-ui/react-collapsible (source) ^1.1.15^1.1.16 age confidence
@radix-ui/react-context-menu (source) ^2.3.2^2.3.3 age confidence
@radix-ui/react-dialog (source) ^1.1.18^1.1.19 age confidence
@radix-ui/react-dropdown-menu (source) ^2.1.19^2.1.20 age confidence
@radix-ui/react-hover-card (source) ^1.1.18^1.1.19 age confidence
@radix-ui/react-menubar (source) ^1.1.19^1.1.20 age confidence
@radix-ui/react-navigation-menu (source) ^1.2.17^1.2.18 age confidence
@radix-ui/react-popover (source) ^1.1.18^1.1.19 age confidence
@radix-ui/react-progress (source) ^1.1.11^1.1.12 age confidence
@radix-ui/react-radio-group (source) ^1.4.2^1.4.3 age confidence
@radix-ui/react-scroll-area (source) ^1.2.13^1.2.14 age confidence
@radix-ui/react-select (source) ^2.3.2^2.3.3 age confidence
@radix-ui/react-slider (source) ^1.4.2^1.4.3 age confidence
@radix-ui/react-switch (source) ^1.3.2^1.3.3 age confidence
@radix-ui/react-tabs (source) ^1.1.16^1.1.17 age confidence
@radix-ui/react-toggle (source) ^1.1.13^1.1.14 age confidence
@radix-ui/react-toggle-group (source) ^1.1.14^1.1.15 age confidence
@radix-ui/react-tooltip (source) ^1.2.11^1.2.12 age confidence
@sentry/node (source) ^10.63.0^10.65.0 age confidence
@sentry/opentelemetry (source) ^10.63.0^10.65.0 age confidence
@types/node (source) ^22.20.0^22.20.1 age confidence
@types/node (source) ^22.20.0^22.20.1 age confidence
@types/node (source) ^24.13.2^24.13.3 age confidence
@types/react (source) ^19.2.7^19.2.17 age confidence
@vitejs/plugin-react (source) ^5.1.4^5.2.0 age confidence
@vitest/coverage-v8 (source) ^4.1.9^4.1.10 age confidence
eslint-plugin-prettier ^5.5.5^5.5.6 age confidence
eslint-plugin-react-hooks (source) ^7.0.1^7.1.1 age confidence
eslint-plugin-react-refresh ^0.5.2^0.5.3 age confidence
globals ^17.4.0^17.7.0 age confidence
hono (source) ^4.12.27^4.12.29 age confidence
prettier (source) 3.9.43.9.5 age confidence
prettier (source) ^3.9.4^3.9.5 age confidence
prettier (source) ^3.8.1^3.9.5 age confidence
react-hook-form (source) ^7.80.0^7.81.0 age confidence
react-resizable-panels (source) ^4.12.0^4.12.1 age confidence
sharp (source, changelog) ^0.34.5^0.35.3 age confidence
tsx (source) ^4.22.5^4.23.0 age confidence
typescript-eslint (source) ^8.62.1^8.63.0 age confidence
typescript-eslint (source) ^8.56.1^8.63.0 age confidence
vite (source) ^8.1.3^8.1.4 age confidence
vitest (source) ^4.1.9^4.1.10 age confidence
web-tree-sitter (source) ^0.20.8^0.26.10 age confidence
wrangler (source) ^4.107.0^4.110.0 age confidence

Dependency PRs must keep npm run test:ci passing. The 97% coverage requirement is enforced as Codecov patch coverage on changed lines (codecov/patch), so dependency-only bumps satisfy it without new tests.

GitHub Actions updates must remain SHA-pinned.

Renovate is the sole dependency and security-update bot for this repo; GitHub Dependabot security updates are disabled to avoid duplicate PRs (e.g. the two hono advisory PRs).


Release Notes

anthropics/claude-agent-sdk-typescript (@​anthropic-ai/claude-agent-sdk)

v0.3.206

Compare Source

  • Added command_lifecycle frames to stream-json and SDK sessions, reporting each uuid-stamped message's terminal state (queued/started/completed/cancelled/discarded); zero-API results no longer report stale duration_api_ms
cloudflare/workers-sdk (@​cloudflare/vitest-pool-workers)

v0.18.4

Compare Source

Patch Changes
  • #​14535 1b965c5 Thanks @​Naapperas! - Support dynamic retry delays for Workflow steps in local dev

    A step's retries.delay can now be a function that computes the delay per failed attempt, in addition to a static duration. The function receives { ctx, error } and returns a delay (a number of milliseconds or a duration string like "30 seconds"), and its result is fed into the configured backoff.

    await step.do(
      "call flaky API",
      {
        retries: {
          limit: 5,
          backoff: "constant",
          delay: ({ ctx }) => ctx.attempt * 1000,
        },
      },
      async () => {
        /* ... */
      }
    );

    The function is invoked once per failed attempt with a 5 second timeout. If it throws, times out, or returns an invalid value, the step fails without further retries.

  • Updated dependencies [0283a1f, 7b28392, 1b965c5]:

    • wrangler@​4.110.0
    • miniflare@​4.20260708.1

v0.18.3

Compare Source

Patch Changes
  • #​14489 e3f0cd6 Thanks @​edmundhung! - Add listDurableObjectIds() to Miniflare

    Miniflare now exposes listDurableObjectIds() for listing persisted Durable Object instance IDs by binding name. The Vitest pool now uses this shared Miniflare API internally instead of duplicating Miniflare's storage listing logic.

  • Updated dependencies [e3f0cd6, 8511ddf, 9f74a5f, e3f0cd6, c782e2a, 2fedb1f, 17d2fc1]:

    • miniflare@​4.20260708.0
    • wrangler@​4.109.0

v0.18.2

Compare Source

Patch Changes

v0.18.1

Compare Source

Patch Changes
lovablelabs/lovable (@​lovable.dev/vite-tanstack-config)

v2.7.0

Compare Source

radix-ui/primitives (@​radix-ui/react-accordion)

v1.2.16

  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-collapsible@1.1.16, @radix-ui/react-collection@1.1.12
radix-ui/primitives (@​radix-ui/react-alert-dialog)

v1.1.19

  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-dialog@1.1.19
radix-ui/primitives (@​radix-ui/react-avatar)

v1.2.2

  • Updated dependencies: @radix-ui/react-context@1.2.0
radix-ui/primitives (@​radix-ui/react-checkbox)

v1.3.7

  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-collapsible)

v1.1.16

  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-context-menu)

v2.3.3

  • Fixed ContextMenu not re-anchoring to the latest pointer position when re-triggered while already open.
  • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-menu@2.1.20
radix-ui/primitives (@​radix-ui/react-dialog)

v1.1.19

  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-focus-scope@1.1.12, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-dropdown-menu)

v2.1.20

  • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-menu@2.1.20
radix-ui/primitives (@​radix-ui/react-hover-card)

v1.1.19

  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7, @radix-ui/react-popper@1.3.3
radix-ui/primitives (@​radix-ui/react-menubar)

v1.1.20

  • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-roving-focus@1.1.15, @radix-ui/react-menu@2.1.20, @radix-ui/react-collection@1.1.12
radix-ui/primitives (@​radix-ui/react-navigation-menu)

v1.2.18

  • Added CSS custom properties for item indicators' translate values.
  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7, @radix-ui/react-collection@1.1.12
radix-ui/primitives (@​radix-ui/react-popover)

v1.1.19

  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-focus-scope@1.1.12, @radix-ui/react-presence@1.1.7, @radix-ui/react-popper@1.3.3
radix-ui/primitives (@​radix-ui/react-progress)

v1.1.12

  • Updated dependencies: @radix-ui/react-context@1.2.0
radix-ui/primitives (@​radix-ui/react-radio-group)

v1.4.3

  • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-roving-focus@1.1.15, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-scroll-area)

v1.2.14

  • Fixed --radix-scroll-area-corner-width and --radix-scroll-area-corner-height not resetting to 0 when the corner is removed (eg. when one of the scrollbars is no longer visible). Previously these values would stick around and leave a permanent gap on the remaining scrollbar.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-select)

v2.3.3

  • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
  • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-focus-scope@1.1.12, @radix-ui/react-presence@1.1.7, @radix-ui/react-collection@1.1.12, @radix-ui/react-popper@1.3.3
radix-ui/primitives (@​radix-ui/react-slider)

v1.4.3

  • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
  • Fixed keyboard stepping skipping a valid value when the current value is off the step grid (eg, a defaultValue that isn't a multiple of step from min). Stepping now snaps to the next step-aligned value in the direction of travel, matching native <input type="range"> behavior.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-collection@1.1.12
radix-ui/primitives (@​radix-ui/react-switch)

v1.3.3

  • Fixed a bug in form control components to ensure their values are updated when their associated form's is reset. This affects RadioGroup, Slider, Select, and Switch.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0
radix-ui/primitives (@​radix-ui/react-tabs)

v1.1.17

  • Fixed menu items, tab triggers, toolbar links, and select items intercepting Space/Enter keys that originate from focusable descendants.
  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-roving-focus@1.1.15, @radix-ui/react-presence@1.1.7
radix-ui/primitives (@​radix-ui/react-toggle)

v1.1.14

  • Updated dependencies: @radix-ui/primitive@1.1.5
radix-ui/primitives (@​radix-ui/react-toggle-group)

v1.1.15

  • Updated dependencies: @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-roving-focus@1.1.15, @radix-ui/react-toggle@1.1.14
radix-ui/primitives (@​radix-ui/react-tooltip)

v1.2.12

  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.15, @radix-ui/primitive@1.1.5, @radix-ui/react-context@1.2.0, @radix-ui/react-presence@1.1.7, @radix-ui/react-popper@1.3.3
getsentry/sentry-javascript (@​sentry/node)

v10.65.0

Compare Source

  • feat(angular): Set url attributes on pageload and navigation spans (#​21985)
  • feat(astro): Set url.template on pageload spans (#​22011)
  • feat(aws-serverless): Replace OTel Lambda instrumentation with handler redirection (#​22079)
  • feat(browser): Set url.path and url.full on pageload and navigation spans (#​21952)
  • feat(bun): warn when externalizing instrumented deps (#​21999)
  • feat(core): Require attributes on SerializedStreamedSpan (#​22052)
  • feat(ember): Set url.template, url.path and url.full on router spans (#​22095)
  • feat(mysql2): Instrument mysql2 >= 3.20.0 via native tracing channels (#​21824)
  • feat(nextjs): Set url attributes on pageload and navigation spans (#​22006)
  • feat(react): Set url.template, url.path and url.full on routing spans (#​22087)
  • feat(react-router): Set url.template, url.path and url.full on pageload and navigation spans (#​22018)
  • feat(remix): Set url.template on pageload and navigation spans (#​22025)
  • feat(server-utils): Add orchestrion support for Vercel AI v4 (#​22139)
  • feat(server-utils): Add requiresParentSpan option to bindTracingChannelToSpan (#​22113)
  • feat(server-utils): Capture usage and output on streamed Vercel AI v7 spans (#​22000)
  • feat(server-utils): Implement orchestrion-based express integration (#​21889)
  • feat(server-utils): Instrument graphql v17 via native tracing channels (#​21804)
  • feat(solid): Set url attributes on solid router and tanstack router spans (#​22090)
  • feat(sveltekit): Set url.template, url.path and url.full on pageload and navigation spans (#​22027)
  • feat(vue, nuxt): Set url.template and URL attributes on router spans (#​22063)
  • fix(browser): Send web vital span sentry.segment.name attribute (#​22024)
  • fix(cloudflare): Honor newTarget in instrumentDurableObjectWithSentry construct trap (#​22104)
  • fix(opentelemetry): Fall back to 'sentry.origin': manual when backfilling OTel data (#​22102)
  • fix(replay): Prevent rrweb recording from dying when the emit callback throws (#​21409)
  • fix(replay): Skip client reports for replay failures after stop (#​22177)
  • perf(vite): add fast component annotation transform (#​22089)
  • ref(server-utils): Add orchestrion support for Vercel AI v5 (#​21979)
Internal Changes
  • chore: Add external contributor to CHANGELOG.md (#​22111)
  • chore: Reinstate changelog anchor (#​22022)
  • chore(cloudflare): Ignore import patterns (#​22008)
  • chore(deps-dev): bump vite from 7.3.2 to 7.3.5 in /dev-packages/e2e-tests/test-applications/tanstackstart-react-orchestrion (#​22041)
  • chore(deps): bump vite from 8.0.1 to 8.0.16 in /dev-packages/bundler-plugin-integration-tests/fixtures/vite8 (#​21664)
  • chore(opentelemetry): Add worker as export | sort exports (#​21859)
  • chore(size-limit): weekly auto-bump (#​21812)
  • ci: Only run cloudflare & bundler plugin tests when necessary (#​22130)
  • ci(deps): bump actions/checkout from 6 to 7 (#​21898)
  • ci(deps): Bump anthropics/claude-code-action from 1.0.124 to 1.0.161 (#​21896)
  • ci(deps): Bump getsentry/craft from 2.26.9 to 2.26.14 (#​21900)
  • ci(deps): Bump getsentry/github-workflows/validate-pr from 71588dd to 4013fc6 (#​21897)
  • ci(deps): bump pnpm/action-setup from 5.0.0 to 6.0.9 (#​21899)
  • feat(core): add isObjectLike guard and consolidate non-null-object checks (#​22155)
  • feat(core): add uniq array util and consolidate call sites (#​22152)
  • feat(deps): Bump @​growthbook/growthbook from 1.6.1 to 1.6.5 (#​21940)
  • feat(deps): Bump @​opentelemetry/semantic-conventions from 1.41.1 to 1.42.0 in the opentelemetry group (#​22147)
  • feat(deps): Bump dotenv from 16.0.3 to 17.4.2 (#​22150)
  • feat(deps): Bump js-yaml from 3.14.2 to 3.15.0 (#​21864)
  • feat(deps): Bump nock from 13.5.5 to 14.0.16 (#​22149)
  • feat(server-utils): Migrate @​opentelemetry/instrumentation-amqplib to orchestrion (#​21981)
  • feat(server-utils): Migrate @opentelemetry/instrumentation-graphql to orchestrion (#​21885)
  • feat(server-utils): Migrate @opentelemetry/instrumentation-redis to orchestrion (#​21925)
  • feat(server-utils): Migrate Google GenAI integration to orchestrion (#​21970)
  • feat(server-utils): Migrate postgres.js instrumentation to orchestrion (#​21983)
  • ref: remove unused addOriginToSpan copies (#​22153)
  • ref(angular): Streamline url attribute creation (#​22091)
  • ref(core): Use common span attribute keys from Sentry conventions (#​22081)
  • ref(nitro, nuxt): inline == null checks for nullish detection (#​22154)
  • ref(node): Refactor http instrumentation away from OTEL (#​21974)
  • ref(redis): expose diagnostics-channel subscription as an integration (#​21963)
  • test: Avoid unnecessary definedness checks for attributes on SerializedStreamedSpan objects (#​22060)
  • test: Remove fixed container_name from node integration test docker-compose files (#​22134)
  • test(browser): Give profiling envelope tests headroom against CI timeouts (#​22067)
  • test(browser): Stabilize flaky manual-mode profile_chunk test (#​22040)
  • test(bun-integration-tests): Type-check test suites in CI (#​22059)
  • test(bundler-plugins): Test bundler plugins on more node versions (#​22105)
  • test(cloudflare-integration-tests): Type-check test suites in CI (#​22068)
  • test(cloudflare): Add headroom for wrangler cold-start in integration tests (#​22083)
  • test(e2e): Add Astro 7 with Orchestrion test (#​22005)
  • test(e2e): Add E2E test app for orchestrion instrumentations on TanStack Start (#​22020)
  • test(e2e): Add test for SvelteKit with orchestrion (#​22014)
  • test(e2e): De-flake remix-hydrogen client tests (#​22051)
  • test(e2e): Gate hydrogen-react-router-7 client clicks on hydration (#​22061)
  • test(e2e): Pin @​cloudflare/vite-plugin to 1.43.1 in Cloudflare E2E test apps (#​22115)
  • test(e2e): Use official @​module-federation/vite (#​21605)
  • test(nitro): Guard throwing-route request in nitro-3 errors test (#​22039)
  • test(node-core): Fix flaky withMonitor span order assertion (#​22129)
  • test(node-integration-tests): Enable Node compile cache for scenario child processes (#​22084)
  • test(node-integration-tests): Make runner completion event-driven instead of polling (#​22085)
  • test(node-integration-tests): Surface early scenario exit instead of hanging (#​22136)
  • test(node-integration-tests): Type-check test suites in CI (#​22054)
  • test(node): Consolidate flaky DB readiness handling into a shared waitForConnection helper (#​22058)
  • test(node): Fix flaky negative sampling (static) envelope ordering (#​22038)
  • test(node): Retry initial tedious connection until the DB is ready (#​22050)
  • test(node): Update vercel AI v7 version in tests & skip on Node 18 (#​21984)
  • test(node): Wait for Postgres readiness in pg integration test scenarios (#​22045)
  • test(server-utils): Remove graphql unit tests that replicated SDK async-context logic (#​22103)
  • test(server-utils): Remove hapi unit test that replicated SDK async-context logic (#​22100)
  • test(server-utils): Remove ioredis unit test that replicated SDK async-context logic (#​22099)
  • test(server-utils): Remove mongoose unit test that replicated SDK async-context logic ([#​22101](ht

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/Phoenix)

  • Branch creation
    • "before 6am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot requested a review from JSONbored as a code owner July 13, 2026 07:01
@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 13, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
loopover-ui 223eb97 Jul 13 2026, 12:10 PM

@codecov

codecov Bot commented Jul 13, 2026

Copy link
Copy Markdown

⚠️ JUnit XML file not found

The CLI was unable to find any JUnit XML files to upload.
For more help, visit our troubleshooting guide.

@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch 2 times, most recently from b76b134 to afceff4 Compare July 13, 2026 07:21
@JSONbored JSONbored force-pushed the renovate/npm-minor-patch branch from afceff4 to 3c98c78 Compare July 13, 2026 07:25
@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch 15 times, most recently from 285c9c0 to f49c7ba Compare July 13, 2026 09:45
@loopover-orb loopover-orb Bot added gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. by:renovate[bot] Gittensor contributor context manual-review Gittensor contributor context labels Jul 13, 2026
@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch 4 times, most recently from 2ba48d8 to 83c45e1 Compare July 13, 2026 11:35
@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch from 83c45e1 to 223eb97 Compare July 13, 2026 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

by:renovate[bot] Gittensor contributor context gittensor:bug Gittensor-scored bug fix — scores a 0.05x multiplier. manual-review Gittensor contributor context

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant