Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 15, 2025

Bumps the major group with 24 updates in the / directory:

Package From To
@kittycad/lib 0.0.52 3.0.6
@octokit/openapi-types 19.1.0 25.1.0
@octokit/rest 20.1.0 22.0.0
@octokit/types 13.5.0 14.1.0
@primer/react 36.6.0 37.31.0
@react-three/csg 3.2.0 4.0.0
@react-three/drei 9.106.0 10.7.6
@react-three/fiber 8.16.2 9.3.0
@testing-library/react 14.2.1 16.3.0
@types/node 20.4.2 24.4.0
react 18.2.0 19.1.1
@types/react 18.2.48 19.1.13
react-dom 18.2.0 19.1.1
@types/react-dom 18.2.19 19.1.9
react-is 18.2.0 19.1.1
styled-components 5.3.11 6.1.19
@vitejs/plugin-react 4.3.4 5.0.2
dotenv 16.4.5 17.2.2
eslint 8.56.0 9.35.0
eslint-config-prettier 9.1.0 10.1.8
happy-dom 15.11.7 18.0.1
jsdom 26.0.0 27.0.0
vite 5.4.14 7.1.5
vitest 1.6.1 3.2.4

Updates @kittycad/lib from 0.0.52 to 3.0.6

Release notes

Sourced from @​kittycad/lib's releases.

v0.1.0

What's Changed

Full Changelog: KittyCAD/kittycad.ts@v0.0.55...v0.1.0

v0.0.59

What's Changed

Full Changelog: KittyCAD/kittycad.ts@v0.1.0...v0.0.59

v0.0.55

What's Changed

Full Changelog: KittyCAD/kittycad.ts@v0.0.54...v0.0.55

Changelog

Sourced from @​kittycad/lib's changelog.

Changelog

All notable changes to this project will be documented in this file.

v3.0.0

Features

  • Pagination helpers: generate snake_case pager helpers for list endpoints that return *ResultsPage with items and next_page.
    • New helpers: <operationId>_pager(params) under each tag, e.g. users.list_users_pager, api_calls.list_api_calls_pager.
    • Generic utilities exported from root: Pager and createPager.
    • Examples: generated example files now include an example_pager() usage snippet (type-checked by tsc).
  • WebSocket endpoints: add generated clients for ml_copilot_ws, ml_reasoning_ws, and modeling_commands_ws.
  • Handlebars templates: migrate generator to Handlebars-based templates for REST, multipart, and WebSocket operations (src/templates/*.hbs).
  • Example generation: create per-endpoint example tests in __tests__/gen for REST and WS endpoints.
  • Error handling helpers: introduce ApiError and throwIfNotOk utilities for consistent HTTP error surfaces. (src/errors.ts)
  • Top-level types: re-export all schema types from the package root so you can import type { User } from '@kittycad/lib' instead of Models['User'].
    • Aliases to avoid name collisions: ApiError (model) → ApiErrorModel, and Error (error-body model) → ApiErrorBody.

Improvements

  • Client injection: REST and WS code now honor client.baseUrl and client.fetch (useful in SSR/Next.js). Falls back to env and global fetch.
  • JSDoc: add rich JSDoc to generated functions and models, including @property docs for params and typed @returns.
  • 204 responses: endpoints declaring 204 are typed as void and skip JSON parsing.
  • Pager naming: use snake_case for helper names to match the rest of the SDK.
  • Windows TLS root CAs: refine dynamic import for win-ca with typed indirection and NodeJS.Process narrowing. (src/client.ts)
  • WebSocket binary parsing: add robust ArrayBufferView detection and safer BSON fallbacks; avoid global any/Buffer guards. (src/templates/ws.hbs)
  • Generator resiliency: better request/response type collection, multipart handling, and spec patch emission. (src/apiGen.ts)
  • Formatting and linting: apply Biome formatting across generated sources.

Breaking Changes

  • Type strictness: remove explicit any from generated and template code.
    • Models generator now falls back to unknown (not any) for ambiguous OpenAPI shapes, and uses Record<string, unknown> instead of bare

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by zoodotdevpush, a new releaser for @​kittycad/lib since your current version.


Updates @octokit/openapi-types from 19.1.0 to 25.1.0

Release notes

Sourced from @​octokit/openapi-types's releases.

v25.1.0

25.1.0 (2025-05-25)

Features

  • add GHES 3.17, new /credentials/revoke, /users/{username}/settings/billing/usage, /enterprises/{enterprise}/members/{username}/copilot endpoints, description updates (#493) (#465) (9c706c4)

v25.0.0

25.0.0 (2025-04-09)

Features

  • new /orgs/{org}/campaigns, /orgs/{org}/campaigns/{campaign_number} endpoints, remove Copilot usage endpoints, description updates (#461) (f27d1a2)

BREAKING CHANGES

  • Remove Copilot usage endpoints

v24.2.0

24.2.0 (2025-03-18)

Features

  • new /orgs/{org}/issue-types, /orgs/{org}/issue-types/{issue_type_id} enpoints, add issue type to responses, add dismissal request for code scanning for GHES and GHEC, description updates (#456) (6dbabd6)

v24.1.0

24.1.0 (2025-03-18)

Features

  • add GHES 3.16, add new epss_percentage sorting to advisories, new epss_percentage parameter for dependabot alerts, new dismissal_approved_by parameter to code scanning alerts, new /enterprises/{enterprise}/actions/hosted-runners, /orgs/{org}/actions/hosted-runners, /orgs/{org}/settings/network-configurations, /orgs/{org}/rulesets/{ruleset_id}/history, /repos/{owner}/{repo}/rulesets/{ruleset_id}/history endpoints, deprecate Projects (classic), deprecate Copilot usage endpoints, description updates (#455) (fbef6d1)

v24.0.0

24.0.0 (2025-02-15)

Features

  • new dismissed_comment and fixed_at attributes on code scanning alerts, description updates, remove GHES 3.10 and 3.11, remove GHAE (#451) (22dc3a0)

BREAKING CHANGES

... (truncated)

Commits
  • 9c706c4 feat: add GHES 3.17, new /credentials/revoke, `/users/{username}/settings/b...
  • f27d1a2 feat: new /orgs/{org}/campaigns, /orgs/{org}/campaigns/{campaign_number} ...
  • 6dbabd6 feat: new /orgs/{org}/issue-types, `/orgs/{org}/issue-types/{issue_type_id}...
  • fbef6d1 feat: add GHES 3.16, add new epss_percentage sorting to advisories, new `ep...
  • 22dc3a0 feat: new dismissed_comment and fixed_at attributes on code scanning aler...
  • 8bd4526 fix: replace missing component with inline definition (#446)
  • c51cfc8 feat: remove GHES 3.9, new action runner groups endpoints, new code scanning ...
  • 5c77aa5 build: update @octokit/openapi (#420)
  • 8ac5115 feat: add copilot endpoints, add reusable components, description updates (#416)
  • f372a47 feat: remove all_of for issue, workflow_run, alert, release, pull_request, ma...
  • Additional commits viewable in compare view

Updates @octokit/rest from 20.1.0 to 22.0.0

Release notes

Sourced from @​octokit/rest's releases.

v22.0.0

22.0.0 (2025-05-25)

Bug Fixes

  • deps: update octokit monorepo (major) (#504) (77530ab)

BREAKING CHANGES

  • deps: Drop support for NodeJS v18
  • deps: Remove deprecated Projects endpoints
  • deps: Remove deprecated Copilot usage metrics endpoints

v21.1.1

21.1.1 (2025-02-14)

Bug Fixes

  • deps: update Octokit dependencies to mitigate ReDos [security] (#484) (ca256c3)

v21.1.0

21.1.0 (2025-01-08)

Features

  • new endpoints, bump Octokit deps to fix Deno (#477) (908b1c8)

v21.0.2

21.0.2 (2024-08-16)

Bug Fixes

v21.0.1

21.0.1 (2024-07-17)

Bug Fixes

... (truncated)

Commits
  • 77530ab fix(deps): update octokit monorepo (major) (#504)
  • d07b719 build(deps): Bump vite from 6.2.5 to 6.3.4 (#509)
  • 61b76da build(deps-dev): Bump http-proxy-middleware from 2.0.7 to 2.0.9 (#505)
  • 1710669 chore(deps): update dependency undici to v6.21.2 [security] (#513)
  • 8ef1473 build(deps): Bump vite from 6.0.11 to 6.2.5 (#503)
  • 1e8306b build(deps): Bump webpack-dev-middleware and gatsby in /docs (#497)
  • 3db0595 build(deps): Bump send and express in /docs (#490)
  • 27f09dd build(deps-dev): Bump webpack from 5.93.0 to 5.98.0 in /docs (#494)
  • 005b147 chore(deps): update dependency prismjs to v1.30.0 [security] (#493)
  • 3517730 chore(deps): update dependency semantic-release-plugin-update-version-in-file...
  • Additional commits viewable in compare view

Updates @octokit/types from 13.5.0 to 14.1.0

Release notes

Sourced from @​octokit/types's releases.

v14.1.0

14.1.0 (2025-05-25)

Features

  • new GET /users/{username}/settings/billing/usage, POST /credentials/revoke endpoints, endpoint type updates, type performance fixes (#675) (a7ec830), closes #667 #666

v14.0.0

14.0.0 (2025-04-10)

Features

  • new /orgs/{org}/campaigns and /orgs/{org}/campaigns/{campaign_number} enpoints, remove Copilot usage endpoints (#672) (42321eb)

BREAKING CHANGES

  • remove Copilot usage endpoints

v13.10.0

13.10.0 (2025-03-18)

Features

  • new /orgs/{org}/issue-types, /orgs/{org}/issue-types/{issue_type_id} enpoints, add issue type to responses, description updates (#669) (302087f)

v13.9.0

13.9.0 (2025-03-18)

Features

  • new /enterprises/{enterprise}/actions/hosted-runners, /orgs/{org}/actions/hosted-runners, /orgs/{org}/settings/network-configurations, /orgs/{org}/rulesets/{ruleset_id}/history,/repos/{owner}/{repo}/rulesets/{ruleset_id}/history endpoints (#668) (3ee44b3)

v13.8.1

13.8.1 (2025-03-18)

Bug Fixes

  • deps: update dependency @​octokit/openapi-types to v24 (#664) (94a68f9)

v13.8.0

13.8.0 (2025-01-31)

Features

... (truncated)

Commits
  • a7ec830 feat: new GET /users/{username}/settings/billing/usage, `POST /credentials/...
  • 10745ee chore(deps): update dependency typedoc to ^0.28.0 (#661)
  • d8fde41 chore(deps): update dependency npm-run-all2 to v8 (#674)
  • bb316aa chore(deps): update dependency github-openapi-graphql-query to v5 (#673)
  • 7de6359 ci: replace OCTOKITBOT_PROJECT_ACTION_TOKEN and OCTOKITBOT_PAT with a tok...
  • 42321eb feat: new /orgs/{org}/campaigns and `/orgs/{org}/campaigns/{campaign_number...
  • 302087f feat: new /orgs/{org}/issue-types, `/orgs/{org}/issue-types/{issue_type_id}...
  • 3ee44b3 feat: new /enterprises/{enterprise}/actions/hosted-runners, `/orgs/{org}/ac...
  • 94a68f9 fix(deps): update dependency @​octokit/openapi-types to v24 (#664)
  • 45945de chore(deps): update dependency semantic-release-plugin-update-version-in-file...
  • Additional commits viewable in compare view

Updates @primer/react from 36.6.0 to 37.31.0

Release notes

Sourced from @​primer/react's releases.

@​primer/react@​37.31.0

Permalink to Documentation

Minor Changes

  • #6470 e53228c Thanks @​copilot-swe-agent! - Add size prop to ActionList.LinkItem component. The size prop accepts 'medium' (default) or 'large' values and provides the same styling options as ActionList.Item for consistent sizing across ActionList components.

  • #6265 829a933 Thanks @​joshblack! - Update IssueLabel component types to support custom content through children and support the as prop

  • #6420 024b82a Thanks @​chanakyav! - Adds variant and shape props to AvatarStack component. The variant prop will allow the component to render in a cascade view (by default) or a new stacked view which will evenly space the avatars and remove opacity. The shape prop will allow the avatars to be rendered as circles (by default) or squares.

  • #4744 3c9e322 Thanks @​TylerJDev! - Address additional ToggleSwitch a11y feedback

  • #6182 9e49abd Thanks @​TylerJDev! - Textarea: Adds minHeight and maxHeight as props

Patch Changes

@​primer/react@​37.30.0

Permalink to Documentation

Minor Changes

Patch Changes

@​primer/react@​37.29.1

Patch Changes

... (truncated)

Commits
  • fabb389 Release tracking (#6418)
  • e1268ff fix(mcp): add component slug for better docs lookup (#6488)
  • 6d74cee chore: update changeset option (#6479)
  • 28d3e46 chore: update mcp package with changes from published package (#6481)
  • 93f2d8b chore(deps-dev): bump @​modelcontextprotocol/inspector from 0.13.0 to 0.14.1 (...
  • 82ab383 feat: add mcp package (#6222)
  • 97d13fa Update Radio stories to no longer use styled-components (#6465)
  • 5a7e563 Update RadioGroup.features.stories.tsx to no longer use styled-components (#6...
  • e53228c Add size prop to ActionList.LinkItem (#6470)
  • a9108e1 Bump version to 0.0.1 in package.json (#6475)
  • Additional commits viewable in compare view

Updates @react-three/csg from 3.2.0 to 4.0.0

Release notes

Sourced from @​react-three/csg's releases.

v4.0.0

Major Changes

  • 4.x, react19, fiber v9

v3.3.0

Minor Changes

  • 497d5a3: feat: forward support for React 19
Changelog

Sourced from @​react-three/csg's changelog.

4.0.0

Major Changes

  • 4.x, react19, fiber v9

3.3.0

Minor Changes

  • 497d5a3: feat: forward support for React 19
Commits

Updates @react-three/drei from 9.106.0 to 10.7.6

Release notes

Sourced from @​react-three/drei's releases.

v10.7.6

10.7.6 (2025-09-11)

Bug Fixes

  • types: fix usage of ambient THREE namespace (#2517) (3b5d7dc)

v10.7.5

10.7.5 (2025-09-08)

Bug Fixes

v10.7.4

10.7.4 (2025-08-23)

Bug Fixes

v10.7.3

10.7.3 (2025-08-17)

Bug Fixes

v10.7.2

10.7.2 (2025-08-16)

Bug Fixes

v10.7.1

10.7.1 (2025-08-16)

Bug Fixes

v10.7.0

10.7.0 (2025-08-16)

... (truncated)

Commits

Updates @react-three/fiber from 8.16.2 to 9.3.0

Release notes

Sourced from @​react-three/fiber's releases.

v9.3.0

With these release we have two big fixes.

  1. flushSync now works properly. To prove it we added an example that allows you to React props and then take a screenshot of the R3F canvas with the latest state. This is a pretty advanced use case, but one people might be interested to explore for exporting videos or images using R3F.
  2. React Native support has been fixed for 0.79 and newer when combined with the same update to Drei: pmndrs/drei#2494. A big thanks to @​thejustinwalsh for helping us with this one.

What's Changed

New Contributors

Full Changelog: pmndrs/react-three-fiber@v9.1.4...v9.3.0

v9.1.4

What's Changed

New Contributors

Full Changelog: pmndrs/react-three-fiber@v9.1.3...v9.1.4

v9.1.3

What's Changed

New Contributors

Full Changelog: pmndrs/react-three-fiber@v9.1.2...v9.1.3

v9.1.2

What's Changed

Full Changelog: pmndrs/react-three-fiber@v9.1.1...v9.1.2

v9.1.1

Most importantly, this fixes rsbuild with vReact 19.1.0 and later.

What's Changed

... (truncated)

Commits
  • e53d667 RELEASING: Releasing 1 package(s)
  • 0281b6b docs(changeset): fix(native): update react-native deep imports for 0.79 compa...
  • 7579c2d docs(changeset): feat: add flushSync example
  • 26e5d6e docs(changeset): fix: update flushSync for new reconciler
  • f2ce4a2 Merge pull request #3560 from pmndrs/feat/add-flushsync-example
  • 51db6ef feat: add flushSync example
  • 7264b7c Merge pull request #3554 from pmndrs/chore/export-flush-sync
  • 0afec9b chore: add note
  • e5d3c15 chore: downgrade reconciler to 0.31 making it compatible with 19.x
  • f75be04 Merge branch 'master' into chore/export-flush-sync
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by krispyaa, a new releaser for @​react-three/fiber since your current version.


Updates @testing-library/react from 14.2.1 to 16.3.0

Release notes

Sourced from @​testing-library/react's releases.

v16.3.0

16.3.0 (2025-04-02)

Features

  • add bernardobelchior as a contributor for code, and doc (#1391) (9fc6a75)

v16.2.0

16.2.0 (2025-01-15)

Features

v16.1.0

16.1.0 (2024-12-05)

Features

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)

v16.0.0

16.0.0 (2024-06-03)

Features

  • Move @testing-library/dom and @types/react-dom to peer dependencies (#1305) (a4744fa)

BREAKING CHANGES

  • @testing-library/dom was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of @testing-library/dom installed that frequently caused bugs when used with @testing-library/user-event. We will also be able to allow new versions of @testing-library/dom being used without a SemVer major release of @testing-library/react by just widening the peer dependency. @types/react-dom needs to be installed if you're typechecking files using @testing-library/react.

v15.0.7

... (truncated)

Commits

Updates @types/node from 20.4.2 to 24.4.0

Commits

Updates react from 18.2.0 to 19.1.1

Release notes

Sourced from react's releases.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)

19.1.0 (March 28, 2025)

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged.

  • An Owner Stack is a development-only stack trace that helps identify which components are responsible for rendering a particular component. An Owner Stack is distinct from a Component Stacks, which shows the hierarchy of components leading to an error.
  • The captureOwnerStack API is only available in development mode and returns a Owner Stack, if available. The API can be used to enhance error overlays or log component relationships when debugging. #29923, #32353, #30306, #32538, #32529, #32538

React

  • Enhanced support for Suspense boundaries to be used anywhere, including the client, server, and during hydration. #32069, #32163, #32224, #32252
  • Reduced unnecessary client rendering through improved hydration scheduling #31751
  • Increased priority of client rendered Suspense boundaries #31776
  • Fixed frozen fallback states by rendering unfinished Suspense boundaries on the client. #31620
  • Reduced garbage collection pressure by improving Suspense boundary retries. #31667
  • Fixed erroneous “Waiting for Paint” log when the passive effect phase was not delayed #31526
  • Fixed a regression causing key warnings for flattened positional children in development mode. #32117
  • Updated useId to use valid CSS selectors, changing format from :r123: to «r123». #32001
  • Added a dev-only warning for null/undefined created in useEffect, useInsertionEffect, and useLayoutEffect. #32355
  • Fixed a bug where dev-only methods were exported in production builds. React.act is no longer available in production builds. #32200
  • Improved consistency across prod and dev to improve compatibility with Google Closure Complier and bindings #31808
  • Impro...

    Description has been truncated

Bumps the major group with 24 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@kittycad/lib](https://github.com/KittyCAD/kittycad.ts) | `0.0.52` | `3.0.6` |
| [@octokit/openapi-types](https://github.com/octokit/openapi-types.ts/tree/HEAD/packages/openapi-types) | `19.1.0` | `25.1.0` |
| [@octokit/rest](https://github.com/octokit/rest.js) | `20.1.0` | `22.0.0` |
| [@octokit/types](https://github.com/octokit/types.ts) | `13.5.0` | `14.1.0` |
| [@primer/react](https://github.com/primer/react) | `36.6.0` | `37.31.0` |
| [@react-three/csg](https://github.com/pmndrs/react-three-csg) | `3.2.0` | `4.0.0` |
| [@react-three/drei](https://github.com/pmndrs/drei) | `9.106.0` | `10.7.6` |
| [@react-three/fiber](https://github.com/pmndrs/react-three-fiber) | `8.16.2` | `9.3.0` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `14.2.1` | `16.3.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.4.2` | `24.4.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `19.1.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.48` | `19.1.13` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `19.1.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.19` | `19.1.9` |
| [react-is](https://github.com/facebook/react/tree/HEAD/packages/react-is) | `18.2.0` | `19.1.1` |
| [styled-components](https://github.com/styled-components/styled-components) | `5.3.11` | `6.1.19` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.4` | `5.0.2` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.5` | `17.2.2` |
| [eslint](https://github.com/eslint/eslint) | `8.56.0` | `9.35.0` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.1.8` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `15.11.7` | `18.0.1` |
| [jsdom](https://github.com/jsdom/jsdom) | `26.0.0` | `27.0.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.14` | `7.1.5` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `3.2.4` |



Updates `@kittycad/lib` from 0.0.52 to 3.0.6
- [Release notes](https://github.com/KittyCAD/kittycad.ts/releases)
- [Changelog](https://github.com/KittyCAD/kittycad.ts/blob/main/CHANGELOG.md)
- [Commits](KittyCAD/kittycad.ts@v0.0.52...v3.0.6)

Updates `@octokit/openapi-types` from 19.1.0 to 25.1.0
- [Release notes](https://github.com/octokit/openapi-types.ts/releases)
- [Commits](https://github.com/octokit/openapi-types.ts/commits/v25.1.0/packages/openapi-types)

Updates `@octokit/rest` from 20.1.0 to 22.0.0
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](octokit/rest.js@v20.1.0...v22.0.0)

Updates `@octokit/types` from 13.5.0 to 14.1.0
- [Release notes](https://github.com/octokit/types.ts/releases)
- [Commits](octokit/types.ts@v13.5.0...v14.1.0)

Updates `@primer/react` from 36.6.0 to 37.31.0
- [Release notes](https://github.com/primer/react/releases)
- [Commits](https://github.com/primer/react/compare/v36.6.0...@primer/[email protected])

Updates `@react-three/csg` from 3.2.0 to 4.0.0
- [Release notes](https://github.com/pmndrs/react-three-csg/releases)
- [Changelog](https://github.com/pmndrs/react-three-csg/blob/main/CHANGELOG.md)
- [Commits](pmndrs/react-three-csg@v3.2.0...v4.0.0)

Updates `@react-three/drei` from 9.106.0 to 10.7.6
- [Release notes](https://github.com/pmndrs/drei/releases)
- [Changelog](https://github.com/pmndrs/drei/blob/master/release.config.js)
- [Commits](pmndrs/drei@v9.106.0...v10.7.6)

Updates `@react-three/fiber` from 8.16.2 to 9.3.0
- [Release notes](https://github.com/pmndrs/react-three-fiber/releases)
- [Commits](pmndrs/react-three-fiber@v8.16.2...v9.3.0)

Updates `@testing-library/react` from 14.2.1 to 16.3.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v14.2.1...v16.3.0)

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

Updates `react` from 18.2.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom)

Updates `@types/react-dom` from 18.2.19 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-is` from 18.2.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-is)

Updates `styled-components` from 5.3.11 to 6.1.19
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](https://github.com/styled-components/styled-components/compare/[email protected])

Updates `@vitejs/plugin-react` from 4.3.4 to 5.0.2
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/[email protected]/packages/plugin-react)

Updates `dotenv` from 16.4.5 to 17.2.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.5...v17.2.2)

Updates `eslint` from 8.56.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.56.0...v9.35.0)

Updates `eslint-config-prettier` from 9.1.0 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.1.0...v10.1.8)

Updates `happy-dom` from 15.11.7 to 18.0.1
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v15.11.7...v18.0.1)

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

Updates `vite` from 5.4.14 to 7.1.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.5/packages/vite)

Updates `vitest` from 1.6.1 to 3.2.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@kittycad/lib"
  dependency-version: 3.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@octokit/openapi-types"
  dependency-version: 25.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@octokit/rest"
  dependency-version: 22.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@octokit/types"
  dependency-version: 14.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@primer/react"
  dependency-version: 37.31.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@react-three/csg"
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@react-three/drei"
  dependency-version: 10.7.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@react-three/fiber"
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@testing-library/react"
  dependency-version: 16.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@types/node"
  dependency-version: 24.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@types/react"
  dependency-version: 19.1.13
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: react-dom
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: react-is
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: styled-components
  dependency-version: 6.1.19
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: dotenv
  dependency-version: 17.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint
  dependency-version: 9.35.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: happy-dom
  dependency-version: 18.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: jsdom
  dependency-version: 27.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: vite
  dependency-version: 7.1.5
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
- dependency-name: vitest
  dependency-version: 3.2.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 15, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 22, 2025

None of your dependencies match this group anymore, you may need to update your configuration file to remove it or change its rules.

@dependabot dependabot bot closed this Sep 22, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/major-a714ea31d2 branch September 22, 2025 10:07
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.

1 participant