waveterm/package.json

167 lines
5.6 KiB
JSON
Raw Normal View History

{
2024-09-19 21:04:47 +00:00
"name": "waveterm",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"author": {
"name": "Command Line Inc",
"email": "info@commandline.dev"
},
2024-09-19 21:04:47 +00:00
"productName": "Wave",
"description": "Open-Source AI-Native Terminal Built for Seamless Workflows",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"license": "Apache-2.0",
2025-09-22 18:30:08 +00:00
"version": "0.11.6",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"homepage": "https://waveterm.dev",
"build": {
2024-09-19 21:04:47 +00:00
"appId": "dev.commandline.waveterm"
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
},
"private": true,
"main": "./dist/main/index.js",
"type": "module",
"browserslist": [
"Chrome >= 128"
],
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"scripts": {
"dev": "electron-vite dev",
"start": "electron-vite preview",
"build:dev": "electron-vite build --mode development",
"build:prod": "electron-vite build --mode production",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"coverage": "vitest run --coverage",
"test": "vitest",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
2025-08-15 16:36:54 +00:00
"@chromatic-com/storybook": "^3.2.7",
2025-08-19 17:19:15 +00:00
"@eslint/js": "^8.57.0",
2025-08-15 16:36:54 +00:00
"@rollup/plugin-node-resolve": "^16.0.1",
Bump the storybook-minor group across 1 directory with 5 updates (#2179) Bumps the storybook-minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.8` | `8.6.14` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.8` | `8.6.14` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.8` | `8.6.14` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.8` | `8.6.14` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.5.8` | `8.6.14` | Updates `@storybook/addon-essentials` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/f1838f9816644d1c0b1b884324df2fa1d9564c8f"><code>f1838f9</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27193">#27193</a> from H0onnn/fix/<a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27187">#27187</a></li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/549b913eb7c3757fb122eb50051d31e237ecbc91"><code>549b913</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/30913">#30913</a> from JamesIves/next</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8c122570e96dc39daa24c0e5d89304aba9f9b3cb"><code>8c12257</code></a> Merge branch 'latest-release'</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/64be12f05ee24d498975df0709e4a894c82e1b19"><code>64be12f</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test/issues/31435">#31435</a> from storybookjs/kasper/fix-args-mutation</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@storybook/theming` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/theming</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/theming">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 18:22:14 +00:00
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
Bump the storybook-minor group across 1 directory with 5 updates (#2179) Bumps the storybook-minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.8` | `8.6.14` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.8` | `8.6.14` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.8` | `8.6.14` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.8` | `8.6.14` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.5.8` | `8.6.14` | Updates `@storybook/addon-essentials` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/f1838f9816644d1c0b1b884324df2fa1d9564c8f"><code>f1838f9</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27193">#27193</a> from H0onnn/fix/<a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27187">#27187</a></li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/549b913eb7c3757fb122eb50051d31e237ecbc91"><code>549b913</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/30913">#30913</a> from JamesIves/next</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8c122570e96dc39daa24c0e5d89304aba9f9b3cb"><code>8c12257</code></a> Merge branch 'latest-release'</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/64be12f05ee24d498975df0709e4a894c82e1b19"><code>64be12f</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test/issues/31435">#31435</a> from storybookjs/kasper/fix-args-mutation</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@storybook/theming` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/theming</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/theming">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 18:22:14 +00:00
"@storybook/blocks": "^8.6.14",
"@storybook/builder-vite": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-vite": "^8.6.14",
Bump the storybook-minor group across 1 directory with 5 updates (#2179) Bumps the storybook-minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.8` | `8.6.14` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.8` | `8.6.14` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.8` | `8.6.14` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.8` | `8.6.14` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.5.8` | `8.6.14` | Updates `@storybook/addon-essentials` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/9a7a7953fca0f05be3806318c7676940ed4fc102"><code>9a7a795</code></a> Bump version from &quot;8.6.5&quot; to &quot;8.6.6&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/4e23d75cd2e5bcc83e4a5e2b5ceb39cf6974acdb"><code>4e23d75</code></a> Bump version from &quot;8.6.4&quot; to &quot;8.6.5&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/f1838f9816644d1c0b1b884324df2fa1d9564c8f"><code>f1838f9</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27193">#27193</a> from H0onnn/fix/<a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/27187">#27187</a></li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/549b913eb7c3757fb122eb50051d31e237ecbc91"><code>549b913</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks/issues/30913">#30913</a> from JamesIves/next</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/v8.6.14/CHANGELOG.md"><code>@​storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Update vite-plugin-storybook-nextjs to 2.0.0--canary.33.17a2310.0 - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>8.6.7</h2> <ul> <li>React-Native-Web: Fix errors in CLI template stories - <a href="https://redirect.github.com/storybookjs/storybook/pull/30821">#30821</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> </ul> <h2>8.6.6</h2> <ul> <li>Angular: Make sure that polyfills are loaded before the storybook is loaded - <a href="https://redirect.github.com/storybookjs/storybook/pull/30811">#30811</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/ab871786fa96d2d39acfe78ee64bb7da125e67d4"><code>ab87178</code></a> Bump version from &quot;8.6.13&quot; to &quot;8.6.14&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/8c122570e96dc39daa24c0e5d89304aba9f9b3cb"><code>8c12257</code></a> Merge branch 'latest-release'</li> <li><a href="https://github.com/storybookjs/storybook/commit/8fa9049a83005c9294f452fa6b03abf4074230af"><code>8fa9049</code></a> Bump version from &quot;8.6.12&quot; to &quot;8.6.13&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/64be12f05ee24d498975df0709e4a894c82e1b19"><code>64be12f</code></a> Merge pull request <a href="https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test/issues/31435">#31435</a> from storybookjs/kasper/fix-args-mutation</li> <li><a href="https://github.com/storybookjs/storybook/commit/1c35b29e8a6c91dcc3f0dd6d31c1a7b9a5324639"><code>1c35b29</code></a> Bump version from &quot;8.6.11&quot; to &quot;8.6.12&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/2afd30d75089f27a8029a1ac320d7698873b163f"><code>2afd30d</code></a> Bump version from &quot;8.6.10&quot; to &quot;8.6.11&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/23d20370b15b6d490dfd9499af836cc2bac26234"><code>23d2037</code></a> Bump version from &quot;8.6.9&quot; to &quot;8.6.10&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/207c2f46348303bf86950865cf7a193b5a60ab69"><code>207c2f4</code></a> Bump version from &quot;8.6.8&quot; to &quot;8.6.9&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/d4960eaca17e0096cef014285dbb3923012b91f8"><code>d4960ea</code></a> Bump version from &quot;8.6.7&quot; to &quot;8.6.8&quot; [skip ci]</li> <li><a href="https://github.com/storybookjs/storybook/commit/019cd1f864a4f3c4f75d9eb6b557ba5619e68840"><code>019cd1f</code></a> Bump version from &quot;8.6.6&quot; to &quot;8.6.7&quot; [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@storybook/theming` from 8.5.8 to 8.6.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/theming</code>'s releases</a>.</em></p> <blockquote> <h2>v8.6.14</h2> <h2>8.6.14</h2> <ul> <li>CLI: Add skip onboarding, recommended/minimal config - <a href="https://redirect.github.com/storybookjs/storybook/pull/30930">#30930</a>, thanks <a href="https://github.com/shilman"><code>@​shilman</code></a>!</li> <li>Core: Fix using dates in expect statements - <a href="https://redirect.github.com/storybookjs/storybook/pull/28413">#28413</a>, thanks <a href="https://github.com/yann-combarnous"><code>@​yann-combarnous</code></a>!</li> <li>React Native Web: Fix expo router by setting JSX to automatic - <a href="https://redirect.github.com/storybookjs/storybook/pull/31484">#31484</a>, thanks <a href="https://github.com/dannyhw"><code>@​dannyhw</code></a>!</li> <li>Test: Make sure that lit arrays are not cloned - <a href="https://redirect.github.com/storybookjs/storybook/pull/31435">#31435</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.13</h2> <h2>8.6.13</h2> <ul> <li>Controls: Fix boxShadow on empty controls - <a href="https://redirect.github.com/storybookjs/storybook/pull/27193">#27193</a>, thanks <a href="https://github.com/H0onnn"><code>@​H0onnn</code></a>!</li> <li>React Native Web: Update <code>react-native-web</code> - <a href="https://redirect.github.com/storybookjs/storybook/pull/31324">#31324</a>, thanks <a href="https://github.com/ndelangen"><code>@​ndelangen</code></a>!</li> </ul> <h2>v8.6.12</h2> <h2>8.6.12</h2> <ul> <li>CLI: Only install Visual Test Addon if test feature is selected - <a href="https://redirect.github.com/storybookjs/storybook/pull/30966">#30966</a>, thanks <a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>!</li> <li>Core: Fix telemetry error on Storybook UI - <a href="https://redirect.github.com/storybookjs/storybook/pull/30953">#30953</a>, thanks <a href="https://github.com/yannbf"><code>@​yannbf</code></a>!</li> <li>Ember: Fix <code>ember-template-compiler</code> import for ember 6+ - <a href="https://redirect.github.com/storybookjs/storybook/pull/30682">#30682</a>, thanks <a href="https://github.com/leoeuclids"><code>@​leoeuclids</code></a>!</li> <li>Next: Upgrade vite-plugin-storybook-nextjs for Next v14 compatibility - <a href="https://redirect.github.com/storybookjs/storybook/pull/30997">#30997</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Exclude <code>node_modules</code> from docgen - <a href="https://redirect.github.com/storybookjs/storybook/pull/30981">#30981</a>, thanks <a href="https://github.com/JReinhold"><code>@​JReinhold</code></a>!</li> </ul> <h2>v8.6.11</h2> <h2>8.6.11</h2> <ul> <li>Angular: Fix zone.js support for Angular libraries - <a href="https://redirect.github.com/storybookjs/storybook/pull/30941">#30941</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> </ul> <h2>v8.6.10</h2> <h2>8.6.10</h2> <ul> <li>Addon-docs: Fix non-string handling in Stories block - <a href="https://redirect.github.com/storybookjs/storybook/pull/30913">#30913</a>, thanks <a href="https://github.com/JamesIves"><code>@​JamesIves</code></a>!</li> <li>Nextjs: Fix styled-jsx optimize vite warnings - <a href="https://redirect.github.com/storybookjs/storybook/pull/30932">#30932</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Fix actImplementation is not a function - <a href="https://redirect.github.com/storybookjs/storybook/pull/30929">#30929</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.9</h2> <h2>8.6.9</h2> <ul> <li>Next: Fix react aliases in next vite plugin - <a href="https://redirect.github.com/storybookjs/storybook/pull/30914">#30914</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <h2>v8.6.8</h2> <h2>8.6.8</h2> <ul> <li>Angular: Export all files in Angular package.json - <a href="https://redirect.github.com/storybookjs/storybook/pull/30849">#30849</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>CLI: Don't add packageManager entry to package.json automatically - <a href="https://redirect.github.com/storybookjs/storybook/pull/30855">#30855</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>React: Allow portable stories to be used in SSR - <a href="https://redirect.github.com/storybookjs/storybook/pull/30847">#30847</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Svelte: Adjust Svelte typings to include Svelte 5 function components - <a href="https://redirect.github.com/storybookjs/storybook/pull/30852">#30852</a>, thanks <a href="https://github.com/dummdidumm"><code>@​dummdidumm</code></a>!</li> <li>Telemetry: Make sure that telemetry doesn't fail on init - <a href="https://redirect.github.com/storybookjs/storybook/pull/30857">#30857</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> <li>Vite: Update HMR filter to target specific story file types - <a href="https://redirect.github.com/storybookjs/storybook/pull/30845">#30845</a>, thanks <a href="https://github.com/kasperpeulen"><code>@​kasperpeulen</code></a>!</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.6.14/code/lib/theming">compare view</a></li> </ul> </details> <br /> You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 18:22:14 +00:00
"@storybook/test": "^8.6.14",
"@storybook/theming": "^8.6.14",
2025-08-15 16:36:54 +00:00
"@tailwindcss/vite": "^4.0.17",
"@types/color": "^4.2.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@types/css-tree": "^2",
"@types/debug": "^4",
2025-08-15 16:36:54 +00:00
"@types/node": "^22.13.17",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@types/papaparse": "^5",
"@types/pngjs": "^6.0.5",
2024-11-04 18:04:32 +00:00
"@types/prop-types": "^15",
"@types/react": "19",
"@types/react-dom": "19",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@types/semver": "^7",
"@types/shell-quote": "^1",
"@types/sprintf-js": "^1",
"@types/throttle-debounce": "^5",
"@types/tinycolor2": "^1",
"@types/uuid": "^10.0.0",
2024-09-18 06:10:09 +00:00
"@types/ws": "^8",
"@vitejs/plugin-react-swc": "4.0.1",
2025-08-15 16:36:54 +00:00
"@vitest/coverage-istanbul": "^3.0.9",
Bump electron from 38.1.0 to 38.1.2 in the electron-patch group (#2366) Bumps the electron-patch group with 1 update: [electron](https://github.com/electron/electron). Updates `electron` from 38.1.0 to 38.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/electron/releases">electron's releases</a>.</em></p> <blockquote> <h2>electron v38.1.2</h2> <h1>Release Notes for v38.1.2</h1> <h2>Other Changes</h2> <ul> <li>Use Local Execution, Remote Caching (LERC) for fork PRs [(<a href="https://redirect.github.com/electron/electron/issues/48324">#48324</a>)](<a href="https://redirect.github.com/electron/electron/pull/48324">electron/electron#48324</a>)</li> <li>Updated v8 [(<a href="https://redirect.github.com/electron/electron/issues/48338">#48338</a>)](<a href="https://redirect.github.com/electron/electron/pull/48338">electron/electron#48338</a>)</li> </ul> <h2>electron v38.1.1</h2> <h1>Release Notes for v38.1.1</h1> <h2>Other Changes</h2> <ul> <li>Updated Chromium to 140.0.7339.133. <a href="https://redirect.github.com/electron/electron/pull/48287">#48287</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/electron/commit/d60ae179985685d75d238ee33e17c15a7b53d703"><code>d60ae17</code></a> chore: cherry-pick ec6c18478382 from v8 (<a href="https://redirect.github.com/electron/electron/issues/48337">#48337</a>)</li> <li><a href="https://github.com/electron/electron/commit/f43348e75cf220daec81a7448e6983af88951fdb"><code>f43348e</code></a> ci: Use Local Execution, Remote Caching (LERC) for fork PRS (<a href="https://redirect.github.com/electron/electron/issues/48323">#48323</a>)</li> <li><a href="https://github.com/electron/electron/commit/5e51c882ee25789183771c0173d01aafb9ee96dd"><code>5e51c88</code></a> chore: bump chromium to 140.0.7339.133 (38-x-y) (<a href="https://redirect.github.com/electron/electron/issues/48287">#48287</a>)</li> <li>See full diff in <a href="https://github.com/electron/electron/compare/v38.1.0...v38.1.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=electron&package-manager=npm_and_yarn&previous-version=38.1.0&new-version=38.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 19:15:20 +00:00
"electron": "^38.1.2",
"electron-builder": "^26.0",
2025-08-19 17:19:15 +00:00
"electron-vite": "^4.0.0",
"eslint": "^8.57.0",
2025-08-15 16:36:54 +00:00
"eslint-config-prettier": "^10.1.8",
Bump the dev-dependencies-minor group across 1 directory with 9 updates (#2291) Bumps the dev-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.8` | `7.7.0` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.14` | `8.18.1` | | [node-abi](https://github.com/electron/node-abi) | `4.6.0` | `4.12.0` | | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.6.2` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.41.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.8` | `0.1.2` | | [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.1.5` | `3.6.2` | Updates `@types/semver` from 7.5.8 to 7.7.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.14 to 8.18.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `node-abi` from 4.6.0 to 4.12.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/node-abi/releases">node-abi's releases</a>.</em></p> <blockquote> <h2>v4.12.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.11.0...v4.12.0">4.12.0</a> (2025-06-30)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b">c4babcb</a>)</li> </ul> <h2>v4.11.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.10.0...v4.11.0">4.11.0</a> (2025-06-25)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b">dc87bac</a>)</li> </ul> <h2>v4.10.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.9.0...v4.10.0">4.10.0</a> (2025-06-24)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48">34a63fa</a>)</li> </ul> <h2>v4.9.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.8.0...v4.9.0">4.9.0</a> (2025-05-21)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2">63bae36</a>)</li> </ul> <h2>v4.8.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.7.0...v4.8.0">4.8.0</a> (2025-05-06)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3">f68e336</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b"><code>c4babcb</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b"><code>dc87bac</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48"><code>34a63fa</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/77272e8f59be274a56c5c35830855a3dad87d561"><code>77272e8</code></a> ci: restrict auto-update to Monday-Friday (<a href="https://redirect.github.com/electron/node-abi/issues/209">#209</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2"><code>63bae36</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/9a0b80b0150172b62772d1521e63fda56e645970"><code>9a0b80b</code></a> ci: timeout release job after 1 hour (<a href="https://redirect.github.com/electron/node-abi/issues/207">#207</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3"><code>f68e336</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/810f4896a6d1a52855b0b8968f0715f3ab7efc81"><code>810f489</code></a> feat: update ABI registry</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.6.0...v4.12.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.4.2 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.5.3...3.6.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/06/23/3.6.0">Release note &quot;Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!&quot;</a></p> <h2>3.5.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#353">Changelog</a></p> <h2>3.5.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#352">Changelog</a></p> <h2>3.5.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#351">Changelog</a></p> <h2>3.5.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.4.2...3.5.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/02/09/3.5.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.6.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.1...3.6.2">diff</a></p> <h4>Markdown: Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/pull/17675">#17675</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="md"><code>&lt;!-- Input --&gt; 1. Some text, and code block below, with newline after code block <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> <p>&lt;!-- Prettier 3.6.1 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> </li> </ol> <p>&lt;!-- Prettier 3.6.2 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List<br /> </code></pre></li> </ol> </li> </ol> <h1>3.6.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.0...3.6.1">diff</a></p> <h4>TypeScript: Allow const without initializer (<a href="https://redirect.github.com/prettier/prettier/pull/17650">#17650</a>, <a href="https://redirect.github.com/prettier/prettier/pull/17654">#17654</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7a8b05f41574633fd3af5298f3eeaf33567ad3d3"><code>7a8b05f</code></a> Release 3.6.2</li> <li><a href="https://github.com/prettier/prettier/commit/46526b49b6315914b9229be412c1557ce59f8dbf"><code>46526b4</code></a> Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/issues/17675">#17675</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/a04ec1196f9c3efe2312b10c2f0d02903c9de5e7"><code>a04ec11</code></a> chore(deps): update babel to v7.27.7 (<a href="https://redirect.github.com/prettier/prettier/issues/17684">#17684</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/32be5b6b44314579f3dcc838f26b03ce47938acb"><code>32be5b6</code></a> chore(deps): update dependency flow-parser to v0.274.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17676">#17676</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b55e777924538b69c564abea51a42e33597910b9"><code>b55e777</code></a> Update docs about &quot;TypeScript Configuration Files&quot; (<a href="https://redirect.github.com/prettier/prettier/issues/17677">#17677</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b197c99224b2e068736020bdaa8b2f8a686d4b1e"><code>b197c99</code></a> chore(deps): update dependency <code>@​vitejs/plugin-react</code> to v4.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17674">#17674</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1185f8370a7a4c1b038b994e7be32a2413fae12d"><code>1185f83</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v20.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/17680">#17680</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/aa1316fa603e25d853e76f69cdc029c19b8d24b9"><code>aa1316f</code></a> chore(deps): update dependency browserslist to v4.25.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17671">#17671</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c468d33f16c665363da86f9275be4b4d9f799dcd"><code>c468d33</code></a> chore(deps): update dependency oxc-parser to v0.75.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17672">#17672</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3f46d91bdb7b2a650f376215fdf884babfc765b7"><code>3f46d91</code></a> chore(deps): update dependency vite to v7 (<a href="https://redirect.github.com/prettier/prettier/issues/17673">#17673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.4.2...3.6.2">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases">prettier-plugin-organize-imports's releases</a>.</em></p> <blockquote> <h2>4.2.0</h2> <ul> <li>fix: use <code>getDefaultCompilerOptions</code> from <code>vue-tsc</code> instead of the deprecated <code>resolveVueCompilerOptions</code> (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb">858cbbe</a>)</li> <li>feat: allow <code>vue-tsc</code> version 3 as peer dependency (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4">c777cd8</a>)</li> <li>chore: update all dev dependencies (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3">253d1bf</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md">prettier-plugin-organize-imports's changelog</a>.</em></p> <blockquote> <p>Version <code>4.2.0</code> switches from using <code>vue-tsc</code>'s deprecated <code>resolveVueCompilerOptions</code> to the new <code>getDefaultCompilerOptions</code> instead, which then also allowed bumping the <code>vue-tsc</code> peer dependency range to include version 3.</p> <p>Version <code>4.1.0</code> bumps the peer dependency range for <code>vue-tsc</code> to <code>^2.1.0</code> because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. <code>npm i -D prettier-plugin-organize-imports vue-tsc</code>.</p> <p>Version <code>4.0.0</code> upgrades/replaces the Volar packages used for Vue support, to use the latest <code>vue-tsc</code> package that's part of Volar 2. To migrate, you just have to remove <code>@volar/vue-typescript</code> and if you're using it, also <code>@volar/vue-language-plugin-pug</code>, and replace it with <code>vue-tsc</code> and <code>@vue/language-plugin-pug</code> respectively. There are no breaking changes other than this.</p> <p>Version <code>3.2.4</code> implements a fix to skip when formatting ranges (i.e. if the plugin is requested to format a range, it doesn't do anything because it would lack the full file context).</p> <p>Version <code>3.2.3</code> updates the readme with instructions for Prettier 3.</p> <p>Version <code>3.2.2</code> fixes a performance regression introduced in <code>3.2.0</code>.</p> <p>Version <code>3.2.1</code> fixes the implementation of the language service host's <code>getCurrentDirectory</code> method to return the directory containing the tsconfig, rather than using <code>ts.sys.getCurrentDirectory</code> (which returns <code>process.cwd()</code>). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).</p> <p>Version <code>3.2.0</code> adds and fixes support for pug templates in Vue files (via <code>@volar/vue-language-plugin-pug</code>). Please be aware that you'll need to update your version of the <code>@volar/vue-typescript</code> peer dependency from <code>0.x</code> to <code>1.x</code>.</p> <p>Version <code>3.1.0</code> adds an option to skip destructive code actions like removing unused imports.</p> <p>Version <code>3.0.3</code> fixes a performance regression introduced in <code>3.0.2</code>.</p> <p>Version <code>3.0.2</code> fixes a regression introduced by adding some file-system related methods to the language service host (to fix a bug), which revealed that another method's implementation was incorrect.</p> <p>Version <code>3.0.1</code> bumps the <code>@volar/vue-typescript</code> version to fix more edge cases, e. g. not removing imports when a component is used via kebab-case naming. <code>@volar/vue-typescript</code> is now defined as an optional peer dependency and you'll need to install version <code>0.39</code> or later. Furthermore a fix has been added that should help support more module resolution algorithms.</p> <p>Version <code>3.0.0</code> switches to a different package for Vue support, which fixes some more issues, e. g. support for setup scripts. No breaking changes otherwise.</p> <p>Version <code>2.3.4</code> fixes an issue with Vue v2 files.</p> <p>Version <code>2.3.3</code> fixes a bug where default imports were removed erroneously.</p> <p>Version <code>2.3.1</code> adds debug logs and fixes Vue.js support.</p> <p>Version <code>2.2.0</code> adds a compiler options cache to improve performance.</p> <p>Version <code>2.1.0</code> adds support for Vue.js (<code>.vue</code> files).</p> <p>Version <code>2.0.0</code> adds support for the parsers <code>babel</code> (i. e. JavaScript) and <code>babel-ts</code> which are only available since Prettier v2 (and thus the peer dependency has received a major bump).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/93df5019c4295cf286bc7c6b3726393b6bbf46a2"><code>93df501</code></a> 4.2.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3"><code>253d1bf</code></a> chore: update all dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb"><code>858cbbe</code></a> fix: use <code>getDefaultCompilerOptions</code> from vue-tsc instead of the deprecated `...</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4"><code>c777cd8</code></a> feat: allow vue-tsc 3 as peer dependency</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/e79ed64e5ecd05bdd65140b814b37c9a1a360767"><code>e79ed64</code></a> chore(ci): remove <code>check-types</code> step (part of <code>test</code> now)</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.1.0...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.39.1 to 8.41.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.41.0</h2> <h2>8.41.0 (2025-08-25)</h2> <h3>🚀 Features</h3> <ul> <li>tighten <code>tsconfigRootDir</code> validation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11463">#11463</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>resolve type error in eslint config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11500">#11500</a>)</li> <li><strong>deps:</strong> update babel monorepo (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11174">#11174</a>)</li> <li><strong>deps:</strong> update dependency prettier to v3.6.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11496">#11496</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.40.0</h2> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> <li><strong>typescript-estree:</strong> correct range of import assertion with trailing comma (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11478">#11478</a>)</li> <li><strong>utils:</strong> correct <code>calculateConfigForFile</code> return type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11451">#11451</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Nolan Gajdascz <a href="https://github.com/Gajdascz"><code>@​Gajdascz</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.41.0 (2025-08-25)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/31a73361bd6449974c89b78ef77be0d04e77510b"><code>31a7336</code></a> chore(release): publish 8.41.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/60c3b26317578b03bf64d8194488ba948c1b05bb"><code>60c3b26</code></a> chore(release): publish 8.40.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3426f0dd6f1f89d923720ff1af53b672809e5587"><code>3426f0d</code></a> fix(typescript-eslint): export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are com...</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pd4d10/vite-plugin-svgr/releases">vite-plugin-svgr's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <p><em>No significant changes</em></p> <h5>    <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.4.0...v4.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/d1f8887202a6edd119053c665f0679419df70025"><code>d1f8887</code></a> 4.5.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b326999d5a2546227bb4b2d2cdcf6092392f4d11"><code>b326999</code></a> ci: fix npm publish</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/79300b869297ab2063a730f33ec6f7984b8acbe8"><code>79300b8</code></a> 4.4.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b7d3c36dd658a6b8344b82307f36dc3acb0d1479"><code>b7d3c36</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/6f9d9af421ec891c1594b5511d4865cea6c8f79a"><code>6f9d9af</code></a> feat: support rolldown-vite via <code>transformWithOxc</code> (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/130">#130</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/cef5adead59da0abfc0b81edf4b2022b193e4607"><code>cef5ade</code></a> ci: fix release note</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.3.0...v4.5.0">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.8 to 0.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/releases"><code>@​mdx-js/typescript-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/blob/main/packages/typescript-plugin/CHANGELOG.md"><code>@​mdx-js/typescript-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>0.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2>0.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2>0.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/5c96eaca267bae3a9bb232945cb89e97b4a8a634"><code>5c96eac</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/509">#509</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Update Volar dependencies</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Filter diagnostics if only MDX files are found (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/508">#508</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/8e5356ffc503a07522968c74e96770aed7db2169"><code>8e5356f</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/506">#506</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Replace jiti with require (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/505">#505</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/644bc26c35217fc49cf0e50d2014150ce6d109e2"><code>644bc26</code></a> Update to xo 1</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f20fb8e182a23355e8c6864999689a6204a90c2c"><code>f20fb8e</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/498">#498</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Add support for some popular transformer plugins (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/501">#501</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Resolve remark plugins synchronously (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/500">#500</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Drop support for Node.js 18 (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/499">#499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.2/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-mdx` from 3.1.5 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/eslint-mdx/releases">eslint-plugin-mdx's releases</a>.</em></p> <blockquote> <h2>eslint-plugin-mdx@3.6.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: set <code>processor</code> for flat config</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: prefer <code>context.languageOptions.parserOptions</code> over <code>context.parserOptions</code></p> </li> <li> <p>Updated dependencies []:</p> <ul> <li>eslint-mdx@3.6.2</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/591">#591</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a>]:</p> <ul> <li>eslint-mdx@3.6.1</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/589">#589</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support specifying <code>remarkConfigPath</code> manually</li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a>]: <ul> <li>eslint-mdx@3.6.0</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.5.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/580">#580</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a> and <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - refactor: target <code>ES2022</code> and drop unnecessary <code>tslib</code> dependency</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/583">#583</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/8c9ef4beecd864a5083700021284af3a975681a1"><code>8c9ef4b</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: use unified <code>performSyncWork</code> for parsing with remark config</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a>]:</p> <ul> <li>eslint-mdx@3.5.0</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0">https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0</a></p> <h2>eslint-plugin-mdx@3.4.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/577">#577</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: remove buggy <code>module-sync</code> entry</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a>]:</p> <ul> <li>eslint-mdx@3.4.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/db21842185f6386e0b14d8d5572d451e474402f3"><code>db21842</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/594">#594</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> fix: set processor for flat config, prefer `context.languageOptions.parserOpt...</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2d7793710a64ea14ea90af65f97dbe7a38e8aafc"><code>2d77937</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/592">#592</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code> (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/591">#591</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/51f359c5152ced8bb2450eb840d705a49e47821b"><code>51f359c</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/590">#590</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> feat: support specifying <code>remarkConfigPath</code> manually (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/589">#589</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a51a0270bbf5a7769ba6509081ce3e1f34643b64"><code>a51a027</code></a> docs: remove blue underline from README.md (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/588">#588</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2fd7907d17cc39a46eb8283a6f50102ac57c95a0"><code>2fd7907</code></a> docs: update funding info (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/587">#587</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/c10165e4f62cfa2261250783c632bf36bb55bc89"><code>c10165e</code></a> chore: bump all (dev)Dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/586">#586</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/6623c9b56f9d82593fbc6fcedc91edf57d3d9a25"><code>6623c9b</code></a> chore(deps): update all dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/585">#585</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.1.5...eslint-plugin-mdx@3.6.2">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:53:59 +00:00
"node-abi": "^4.14.0",
2025-08-15 16:36:54 +00:00
"postcss": "^8.5.6",
Bump the dev-dependencies-minor group across 1 directory with 9 updates (#2291) Bumps the dev-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.8` | `7.7.0` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.14` | `8.18.1` | | [node-abi](https://github.com/electron/node-abi) | `4.6.0` | `4.12.0` | | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.6.2` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.41.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.8` | `0.1.2` | | [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.1.5` | `3.6.2` | Updates `@types/semver` from 7.5.8 to 7.7.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.14 to 8.18.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `node-abi` from 4.6.0 to 4.12.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/node-abi/releases">node-abi's releases</a>.</em></p> <blockquote> <h2>v4.12.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.11.0...v4.12.0">4.12.0</a> (2025-06-30)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b">c4babcb</a>)</li> </ul> <h2>v4.11.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.10.0...v4.11.0">4.11.0</a> (2025-06-25)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b">dc87bac</a>)</li> </ul> <h2>v4.10.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.9.0...v4.10.0">4.10.0</a> (2025-06-24)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48">34a63fa</a>)</li> </ul> <h2>v4.9.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.8.0...v4.9.0">4.9.0</a> (2025-05-21)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2">63bae36</a>)</li> </ul> <h2>v4.8.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.7.0...v4.8.0">4.8.0</a> (2025-05-06)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3">f68e336</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b"><code>c4babcb</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b"><code>dc87bac</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48"><code>34a63fa</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/77272e8f59be274a56c5c35830855a3dad87d561"><code>77272e8</code></a> ci: restrict auto-update to Monday-Friday (<a href="https://redirect.github.com/electron/node-abi/issues/209">#209</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2"><code>63bae36</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/9a0b80b0150172b62772d1521e63fda56e645970"><code>9a0b80b</code></a> ci: timeout release job after 1 hour (<a href="https://redirect.github.com/electron/node-abi/issues/207">#207</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3"><code>f68e336</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/810f4896a6d1a52855b0b8968f0715f3ab7efc81"><code>810f489</code></a> feat: update ABI registry</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.6.0...v4.12.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.4.2 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.5.3...3.6.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/06/23/3.6.0">Release note &quot;Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!&quot;</a></p> <h2>3.5.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#353">Changelog</a></p> <h2>3.5.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#352">Changelog</a></p> <h2>3.5.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#351">Changelog</a></p> <h2>3.5.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.4.2...3.5.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/02/09/3.5.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.6.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.1...3.6.2">diff</a></p> <h4>Markdown: Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/pull/17675">#17675</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="md"><code>&lt;!-- Input --&gt; 1. Some text, and code block below, with newline after code block <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> <p>&lt;!-- Prettier 3.6.1 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> </li> </ol> <p>&lt;!-- Prettier 3.6.2 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List<br /> </code></pre></li> </ol> </li> </ol> <h1>3.6.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.0...3.6.1">diff</a></p> <h4>TypeScript: Allow const without initializer (<a href="https://redirect.github.com/prettier/prettier/pull/17650">#17650</a>, <a href="https://redirect.github.com/prettier/prettier/pull/17654">#17654</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7a8b05f41574633fd3af5298f3eeaf33567ad3d3"><code>7a8b05f</code></a> Release 3.6.2</li> <li><a href="https://github.com/prettier/prettier/commit/46526b49b6315914b9229be412c1557ce59f8dbf"><code>46526b4</code></a> Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/issues/17675">#17675</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/a04ec1196f9c3efe2312b10c2f0d02903c9de5e7"><code>a04ec11</code></a> chore(deps): update babel to v7.27.7 (<a href="https://redirect.github.com/prettier/prettier/issues/17684">#17684</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/32be5b6b44314579f3dcc838f26b03ce47938acb"><code>32be5b6</code></a> chore(deps): update dependency flow-parser to v0.274.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17676">#17676</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b55e777924538b69c564abea51a42e33597910b9"><code>b55e777</code></a> Update docs about &quot;TypeScript Configuration Files&quot; (<a href="https://redirect.github.com/prettier/prettier/issues/17677">#17677</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b197c99224b2e068736020bdaa8b2f8a686d4b1e"><code>b197c99</code></a> chore(deps): update dependency <code>@​vitejs/plugin-react</code> to v4.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17674">#17674</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1185f8370a7a4c1b038b994e7be32a2413fae12d"><code>1185f83</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v20.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/17680">#17680</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/aa1316fa603e25d853e76f69cdc029c19b8d24b9"><code>aa1316f</code></a> chore(deps): update dependency browserslist to v4.25.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17671">#17671</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c468d33f16c665363da86f9275be4b4d9f799dcd"><code>c468d33</code></a> chore(deps): update dependency oxc-parser to v0.75.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17672">#17672</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3f46d91bdb7b2a650f376215fdf884babfc765b7"><code>3f46d91</code></a> chore(deps): update dependency vite to v7 (<a href="https://redirect.github.com/prettier/prettier/issues/17673">#17673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.4.2...3.6.2">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases">prettier-plugin-organize-imports's releases</a>.</em></p> <blockquote> <h2>4.2.0</h2> <ul> <li>fix: use <code>getDefaultCompilerOptions</code> from <code>vue-tsc</code> instead of the deprecated <code>resolveVueCompilerOptions</code> (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb">858cbbe</a>)</li> <li>feat: allow <code>vue-tsc</code> version 3 as peer dependency (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4">c777cd8</a>)</li> <li>chore: update all dev dependencies (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3">253d1bf</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md">prettier-plugin-organize-imports's changelog</a>.</em></p> <blockquote> <p>Version <code>4.2.0</code> switches from using <code>vue-tsc</code>'s deprecated <code>resolveVueCompilerOptions</code> to the new <code>getDefaultCompilerOptions</code> instead, which then also allowed bumping the <code>vue-tsc</code> peer dependency range to include version 3.</p> <p>Version <code>4.1.0</code> bumps the peer dependency range for <code>vue-tsc</code> to <code>^2.1.0</code> because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. <code>npm i -D prettier-plugin-organize-imports vue-tsc</code>.</p> <p>Version <code>4.0.0</code> upgrades/replaces the Volar packages used for Vue support, to use the latest <code>vue-tsc</code> package that's part of Volar 2. To migrate, you just have to remove <code>@volar/vue-typescript</code> and if you're using it, also <code>@volar/vue-language-plugin-pug</code>, and replace it with <code>vue-tsc</code> and <code>@vue/language-plugin-pug</code> respectively. There are no breaking changes other than this.</p> <p>Version <code>3.2.4</code> implements a fix to skip when formatting ranges (i.e. if the plugin is requested to format a range, it doesn't do anything because it would lack the full file context).</p> <p>Version <code>3.2.3</code> updates the readme with instructions for Prettier 3.</p> <p>Version <code>3.2.2</code> fixes a performance regression introduced in <code>3.2.0</code>.</p> <p>Version <code>3.2.1</code> fixes the implementation of the language service host's <code>getCurrentDirectory</code> method to return the directory containing the tsconfig, rather than using <code>ts.sys.getCurrentDirectory</code> (which returns <code>process.cwd()</code>). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).</p> <p>Version <code>3.2.0</code> adds and fixes support for pug templates in Vue files (via <code>@volar/vue-language-plugin-pug</code>). Please be aware that you'll need to update your version of the <code>@volar/vue-typescript</code> peer dependency from <code>0.x</code> to <code>1.x</code>.</p> <p>Version <code>3.1.0</code> adds an option to skip destructive code actions like removing unused imports.</p> <p>Version <code>3.0.3</code> fixes a performance regression introduced in <code>3.0.2</code>.</p> <p>Version <code>3.0.2</code> fixes a regression introduced by adding some file-system related methods to the language service host (to fix a bug), which revealed that another method's implementation was incorrect.</p> <p>Version <code>3.0.1</code> bumps the <code>@volar/vue-typescript</code> version to fix more edge cases, e. g. not removing imports when a component is used via kebab-case naming. <code>@volar/vue-typescript</code> is now defined as an optional peer dependency and you'll need to install version <code>0.39</code> or later. Furthermore a fix has been added that should help support more module resolution algorithms.</p> <p>Version <code>3.0.0</code> switches to a different package for Vue support, which fixes some more issues, e. g. support for setup scripts. No breaking changes otherwise.</p> <p>Version <code>2.3.4</code> fixes an issue with Vue v2 files.</p> <p>Version <code>2.3.3</code> fixes a bug where default imports were removed erroneously.</p> <p>Version <code>2.3.1</code> adds debug logs and fixes Vue.js support.</p> <p>Version <code>2.2.0</code> adds a compiler options cache to improve performance.</p> <p>Version <code>2.1.0</code> adds support for Vue.js (<code>.vue</code> files).</p> <p>Version <code>2.0.0</code> adds support for the parsers <code>babel</code> (i. e. JavaScript) and <code>babel-ts</code> which are only available since Prettier v2 (and thus the peer dependency has received a major bump).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/93df5019c4295cf286bc7c6b3726393b6bbf46a2"><code>93df501</code></a> 4.2.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3"><code>253d1bf</code></a> chore: update all dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb"><code>858cbbe</code></a> fix: use <code>getDefaultCompilerOptions</code> from vue-tsc instead of the deprecated `...</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4"><code>c777cd8</code></a> feat: allow vue-tsc 3 as peer dependency</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/e79ed64e5ecd05bdd65140b814b37c9a1a360767"><code>e79ed64</code></a> chore(ci): remove <code>check-types</code> step (part of <code>test</code> now)</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.1.0...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.39.1 to 8.41.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.41.0</h2> <h2>8.41.0 (2025-08-25)</h2> <h3>🚀 Features</h3> <ul> <li>tighten <code>tsconfigRootDir</code> validation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11463">#11463</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>resolve type error in eslint config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11500">#11500</a>)</li> <li><strong>deps:</strong> update babel monorepo (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11174">#11174</a>)</li> <li><strong>deps:</strong> update dependency prettier to v3.6.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11496">#11496</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.40.0</h2> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> <li><strong>typescript-estree:</strong> correct range of import assertion with trailing comma (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11478">#11478</a>)</li> <li><strong>utils:</strong> correct <code>calculateConfigForFile</code> return type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11451">#11451</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Nolan Gajdascz <a href="https://github.com/Gajdascz"><code>@​Gajdascz</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.41.0 (2025-08-25)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/31a73361bd6449974c89b78ef77be0d04e77510b"><code>31a7336</code></a> chore(release): publish 8.41.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/60c3b26317578b03bf64d8194488ba948c1b05bb"><code>60c3b26</code></a> chore(release): publish 8.40.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3426f0dd6f1f89d923720ff1af53b672809e5587"><code>3426f0d</code></a> fix(typescript-eslint): export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are com...</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pd4d10/vite-plugin-svgr/releases">vite-plugin-svgr's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <p><em>No significant changes</em></p> <h5>    <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.4.0...v4.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/d1f8887202a6edd119053c665f0679419df70025"><code>d1f8887</code></a> 4.5.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b326999d5a2546227bb4b2d2cdcf6092392f4d11"><code>b326999</code></a> ci: fix npm publish</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/79300b869297ab2063a730f33ec6f7984b8acbe8"><code>79300b8</code></a> 4.4.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b7d3c36dd658a6b8344b82307f36dc3acb0d1479"><code>b7d3c36</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/6f9d9af421ec891c1594b5511d4865cea6c8f79a"><code>6f9d9af</code></a> feat: support rolldown-vite via <code>transformWithOxc</code> (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/130">#130</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/cef5adead59da0abfc0b81edf4b2022b193e4607"><code>cef5ade</code></a> ci: fix release note</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.3.0...v4.5.0">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.8 to 0.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/releases"><code>@​mdx-js/typescript-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/blob/main/packages/typescript-plugin/CHANGELOG.md"><code>@​mdx-js/typescript-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>0.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2>0.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2>0.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/5c96eaca267bae3a9bb232945cb89e97b4a8a634"><code>5c96eac</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/509">#509</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Update Volar dependencies</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Filter diagnostics if only MDX files are found (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/508">#508</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/8e5356ffc503a07522968c74e96770aed7db2169"><code>8e5356f</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/506">#506</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Replace jiti with require (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/505">#505</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/644bc26c35217fc49cf0e50d2014150ce6d109e2"><code>644bc26</code></a> Update to xo 1</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f20fb8e182a23355e8c6864999689a6204a90c2c"><code>f20fb8e</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/498">#498</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Add support for some popular transformer plugins (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/501">#501</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Resolve remark plugins synchronously (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/500">#500</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Drop support for Node.js 18 (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/499">#499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.2/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-mdx` from 3.1.5 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/eslint-mdx/releases">eslint-plugin-mdx's releases</a>.</em></p> <blockquote> <h2>eslint-plugin-mdx@3.6.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: set <code>processor</code> for flat config</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: prefer <code>context.languageOptions.parserOptions</code> over <code>context.parserOptions</code></p> </li> <li> <p>Updated dependencies []:</p> <ul> <li>eslint-mdx@3.6.2</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/591">#591</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a>]:</p> <ul> <li>eslint-mdx@3.6.1</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/589">#589</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support specifying <code>remarkConfigPath</code> manually</li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a>]: <ul> <li>eslint-mdx@3.6.0</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.5.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/580">#580</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a> and <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - refactor: target <code>ES2022</code> and drop unnecessary <code>tslib</code> dependency</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/583">#583</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/8c9ef4beecd864a5083700021284af3a975681a1"><code>8c9ef4b</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: use unified <code>performSyncWork</code> for parsing with remark config</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a>]:</p> <ul> <li>eslint-mdx@3.5.0</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0">https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0</a></p> <h2>eslint-plugin-mdx@3.4.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/577">#577</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: remove buggy <code>module-sync</code> entry</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a>]:</p> <ul> <li>eslint-mdx@3.4.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/db21842185f6386e0b14d8d5572d451e474402f3"><code>db21842</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/594">#594</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> fix: set processor for flat config, prefer `context.languageOptions.parserOpt...</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2d7793710a64ea14ea90af65f97dbe7a38e8aafc"><code>2d77937</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/592">#592</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code> (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/591">#591</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/51f359c5152ced8bb2450eb840d705a49e47821b"><code>51f359c</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/590">#590</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> feat: support specifying <code>remarkConfigPath</code> manually (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/589">#589</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a51a0270bbf5a7769ba6509081ce3e1f34643b64"><code>a51a027</code></a> docs: remove blue underline from README.md (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/588">#588</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2fd7907d17cc39a46eb8283a6f50102ac57c95a0"><code>2fd7907</code></a> docs: update funding info (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/587">#587</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/c10165e4f62cfa2261250783c632bf36bb55bc89"><code>c10165e</code></a> chore: bump all (dev)Dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/586">#586</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/6623c9b56f9d82593fbc6fcedc91edf57d3d9a25"><code>6623c9b</code></a> chore(deps): update all dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/585">#585</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.1.5...eslint-plugin-mdx@3.6.2">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:53:59 +00:00
"prettier": "^3.6.2",
2025-08-15 16:36:54 +00:00
"prettier-plugin-jsdoc": "^1.3.3",
Bump the dev-dependencies-minor group across 1 directory with 9 updates (#2291) Bumps the dev-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.8` | `7.7.0` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.14` | `8.18.1` | | [node-abi](https://github.com/electron/node-abi) | `4.6.0` | `4.12.0` | | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.6.2` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.41.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.8` | `0.1.2` | | [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.1.5` | `3.6.2` | Updates `@types/semver` from 7.5.8 to 7.7.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.14 to 8.18.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `node-abi` from 4.6.0 to 4.12.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/node-abi/releases">node-abi's releases</a>.</em></p> <blockquote> <h2>v4.12.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.11.0...v4.12.0">4.12.0</a> (2025-06-30)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b">c4babcb</a>)</li> </ul> <h2>v4.11.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.10.0...v4.11.0">4.11.0</a> (2025-06-25)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b">dc87bac</a>)</li> </ul> <h2>v4.10.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.9.0...v4.10.0">4.10.0</a> (2025-06-24)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48">34a63fa</a>)</li> </ul> <h2>v4.9.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.8.0...v4.9.0">4.9.0</a> (2025-05-21)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2">63bae36</a>)</li> </ul> <h2>v4.8.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.7.0...v4.8.0">4.8.0</a> (2025-05-06)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3">f68e336</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b"><code>c4babcb</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b"><code>dc87bac</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48"><code>34a63fa</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/77272e8f59be274a56c5c35830855a3dad87d561"><code>77272e8</code></a> ci: restrict auto-update to Monday-Friday (<a href="https://redirect.github.com/electron/node-abi/issues/209">#209</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2"><code>63bae36</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/9a0b80b0150172b62772d1521e63fda56e645970"><code>9a0b80b</code></a> ci: timeout release job after 1 hour (<a href="https://redirect.github.com/electron/node-abi/issues/207">#207</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3"><code>f68e336</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/810f4896a6d1a52855b0b8968f0715f3ab7efc81"><code>810f489</code></a> feat: update ABI registry</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.6.0...v4.12.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.4.2 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.5.3...3.6.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/06/23/3.6.0">Release note &quot;Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!&quot;</a></p> <h2>3.5.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#353">Changelog</a></p> <h2>3.5.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#352">Changelog</a></p> <h2>3.5.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#351">Changelog</a></p> <h2>3.5.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.4.2...3.5.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/02/09/3.5.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.6.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.1...3.6.2">diff</a></p> <h4>Markdown: Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/pull/17675">#17675</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="md"><code>&lt;!-- Input --&gt; 1. Some text, and code block below, with newline after code block <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> <p>&lt;!-- Prettier 3.6.1 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> </li> </ol> <p>&lt;!-- Prettier 3.6.2 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List<br /> </code></pre></li> </ol> </li> </ol> <h1>3.6.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.0...3.6.1">diff</a></p> <h4>TypeScript: Allow const without initializer (<a href="https://redirect.github.com/prettier/prettier/pull/17650">#17650</a>, <a href="https://redirect.github.com/prettier/prettier/pull/17654">#17654</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7a8b05f41574633fd3af5298f3eeaf33567ad3d3"><code>7a8b05f</code></a> Release 3.6.2</li> <li><a href="https://github.com/prettier/prettier/commit/46526b49b6315914b9229be412c1557ce59f8dbf"><code>46526b4</code></a> Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/issues/17675">#17675</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/a04ec1196f9c3efe2312b10c2f0d02903c9de5e7"><code>a04ec11</code></a> chore(deps): update babel to v7.27.7 (<a href="https://redirect.github.com/prettier/prettier/issues/17684">#17684</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/32be5b6b44314579f3dcc838f26b03ce47938acb"><code>32be5b6</code></a> chore(deps): update dependency flow-parser to v0.274.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17676">#17676</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b55e777924538b69c564abea51a42e33597910b9"><code>b55e777</code></a> Update docs about &quot;TypeScript Configuration Files&quot; (<a href="https://redirect.github.com/prettier/prettier/issues/17677">#17677</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b197c99224b2e068736020bdaa8b2f8a686d4b1e"><code>b197c99</code></a> chore(deps): update dependency <code>@​vitejs/plugin-react</code> to v4.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17674">#17674</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1185f8370a7a4c1b038b994e7be32a2413fae12d"><code>1185f83</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v20.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/17680">#17680</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/aa1316fa603e25d853e76f69cdc029c19b8d24b9"><code>aa1316f</code></a> chore(deps): update dependency browserslist to v4.25.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17671">#17671</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c468d33f16c665363da86f9275be4b4d9f799dcd"><code>c468d33</code></a> chore(deps): update dependency oxc-parser to v0.75.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17672">#17672</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3f46d91bdb7b2a650f376215fdf884babfc765b7"><code>3f46d91</code></a> chore(deps): update dependency vite to v7 (<a href="https://redirect.github.com/prettier/prettier/issues/17673">#17673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.4.2...3.6.2">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases">prettier-plugin-organize-imports's releases</a>.</em></p> <blockquote> <h2>4.2.0</h2> <ul> <li>fix: use <code>getDefaultCompilerOptions</code> from <code>vue-tsc</code> instead of the deprecated <code>resolveVueCompilerOptions</code> (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb">858cbbe</a>)</li> <li>feat: allow <code>vue-tsc</code> version 3 as peer dependency (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4">c777cd8</a>)</li> <li>chore: update all dev dependencies (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3">253d1bf</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md">prettier-plugin-organize-imports's changelog</a>.</em></p> <blockquote> <p>Version <code>4.2.0</code> switches from using <code>vue-tsc</code>'s deprecated <code>resolveVueCompilerOptions</code> to the new <code>getDefaultCompilerOptions</code> instead, which then also allowed bumping the <code>vue-tsc</code> peer dependency range to include version 3.</p> <p>Version <code>4.1.0</code> bumps the peer dependency range for <code>vue-tsc</code> to <code>^2.1.0</code> because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. <code>npm i -D prettier-plugin-organize-imports vue-tsc</code>.</p> <p>Version <code>4.0.0</code> upgrades/replaces the Volar packages used for Vue support, to use the latest <code>vue-tsc</code> package that's part of Volar 2. To migrate, you just have to remove <code>@volar/vue-typescript</code> and if you're using it, also <code>@volar/vue-language-plugin-pug</code>, and replace it with <code>vue-tsc</code> and <code>@vue/language-plugin-pug</code> respectively. There are no breaking changes other than this.</p> <p>Version <code>3.2.4</code> implements a fix to skip when formatting ranges (i.e. if the plugin is requested to format a range, it doesn't do anything because it would lack the full file context).</p> <p>Version <code>3.2.3</code> updates the readme with instructions for Prettier 3.</p> <p>Version <code>3.2.2</code> fixes a performance regression introduced in <code>3.2.0</code>.</p> <p>Version <code>3.2.1</code> fixes the implementation of the language service host's <code>getCurrentDirectory</code> method to return the directory containing the tsconfig, rather than using <code>ts.sys.getCurrentDirectory</code> (which returns <code>process.cwd()</code>). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).</p> <p>Version <code>3.2.0</code> adds and fixes support for pug templates in Vue files (via <code>@volar/vue-language-plugin-pug</code>). Please be aware that you'll need to update your version of the <code>@volar/vue-typescript</code> peer dependency from <code>0.x</code> to <code>1.x</code>.</p> <p>Version <code>3.1.0</code> adds an option to skip destructive code actions like removing unused imports.</p> <p>Version <code>3.0.3</code> fixes a performance regression introduced in <code>3.0.2</code>.</p> <p>Version <code>3.0.2</code> fixes a regression introduced by adding some file-system related methods to the language service host (to fix a bug), which revealed that another method's implementation was incorrect.</p> <p>Version <code>3.0.1</code> bumps the <code>@volar/vue-typescript</code> version to fix more edge cases, e. g. not removing imports when a component is used via kebab-case naming. <code>@volar/vue-typescript</code> is now defined as an optional peer dependency and you'll need to install version <code>0.39</code> or later. Furthermore a fix has been added that should help support more module resolution algorithms.</p> <p>Version <code>3.0.0</code> switches to a different package for Vue support, which fixes some more issues, e. g. support for setup scripts. No breaking changes otherwise.</p> <p>Version <code>2.3.4</code> fixes an issue with Vue v2 files.</p> <p>Version <code>2.3.3</code> fixes a bug where default imports were removed erroneously.</p> <p>Version <code>2.3.1</code> adds debug logs and fixes Vue.js support.</p> <p>Version <code>2.2.0</code> adds a compiler options cache to improve performance.</p> <p>Version <code>2.1.0</code> adds support for Vue.js (<code>.vue</code> files).</p> <p>Version <code>2.0.0</code> adds support for the parsers <code>babel</code> (i. e. JavaScript) and <code>babel-ts</code> which are only available since Prettier v2 (and thus the peer dependency has received a major bump).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/93df5019c4295cf286bc7c6b3726393b6bbf46a2"><code>93df501</code></a> 4.2.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3"><code>253d1bf</code></a> chore: update all dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb"><code>858cbbe</code></a> fix: use <code>getDefaultCompilerOptions</code> from vue-tsc instead of the deprecated `...</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4"><code>c777cd8</code></a> feat: allow vue-tsc 3 as peer dependency</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/e79ed64e5ecd05bdd65140b814b37c9a1a360767"><code>e79ed64</code></a> chore(ci): remove <code>check-types</code> step (part of <code>test</code> now)</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.1.0...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.39.1 to 8.41.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.41.0</h2> <h2>8.41.0 (2025-08-25)</h2> <h3>🚀 Features</h3> <ul> <li>tighten <code>tsconfigRootDir</code> validation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11463">#11463</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>resolve type error in eslint config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11500">#11500</a>)</li> <li><strong>deps:</strong> update babel monorepo (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11174">#11174</a>)</li> <li><strong>deps:</strong> update dependency prettier to v3.6.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11496">#11496</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.40.0</h2> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> <li><strong>typescript-estree:</strong> correct range of import assertion with trailing comma (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11478">#11478</a>)</li> <li><strong>utils:</strong> correct <code>calculateConfigForFile</code> return type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11451">#11451</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Nolan Gajdascz <a href="https://github.com/Gajdascz"><code>@​Gajdascz</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.41.0 (2025-08-25)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/31a73361bd6449974c89b78ef77be0d04e77510b"><code>31a7336</code></a> chore(release): publish 8.41.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/60c3b26317578b03bf64d8194488ba948c1b05bb"><code>60c3b26</code></a> chore(release): publish 8.40.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3426f0dd6f1f89d923720ff1af53b672809e5587"><code>3426f0d</code></a> fix(typescript-eslint): export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are com...</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pd4d10/vite-plugin-svgr/releases">vite-plugin-svgr's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <p><em>No significant changes</em></p> <h5>    <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.4.0...v4.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/d1f8887202a6edd119053c665f0679419df70025"><code>d1f8887</code></a> 4.5.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b326999d5a2546227bb4b2d2cdcf6092392f4d11"><code>b326999</code></a> ci: fix npm publish</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/79300b869297ab2063a730f33ec6f7984b8acbe8"><code>79300b8</code></a> 4.4.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b7d3c36dd658a6b8344b82307f36dc3acb0d1479"><code>b7d3c36</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/6f9d9af421ec891c1594b5511d4865cea6c8f79a"><code>6f9d9af</code></a> feat: support rolldown-vite via <code>transformWithOxc</code> (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/130">#130</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/cef5adead59da0abfc0b81edf4b2022b193e4607"><code>cef5ade</code></a> ci: fix release note</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.3.0...v4.5.0">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.8 to 0.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/releases"><code>@​mdx-js/typescript-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/blob/main/packages/typescript-plugin/CHANGELOG.md"><code>@​mdx-js/typescript-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>0.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2>0.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2>0.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/5c96eaca267bae3a9bb232945cb89e97b4a8a634"><code>5c96eac</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/509">#509</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Update Volar dependencies</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Filter diagnostics if only MDX files are found (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/508">#508</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/8e5356ffc503a07522968c74e96770aed7db2169"><code>8e5356f</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/506">#506</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Replace jiti with require (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/505">#505</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/644bc26c35217fc49cf0e50d2014150ce6d109e2"><code>644bc26</code></a> Update to xo 1</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f20fb8e182a23355e8c6864999689a6204a90c2c"><code>f20fb8e</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/498">#498</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Add support for some popular transformer plugins (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/501">#501</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Resolve remark plugins synchronously (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/500">#500</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Drop support for Node.js 18 (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/499">#499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.2/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-mdx` from 3.1.5 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/eslint-mdx/releases">eslint-plugin-mdx's releases</a>.</em></p> <blockquote> <h2>eslint-plugin-mdx@3.6.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: set <code>processor</code> for flat config</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: prefer <code>context.languageOptions.parserOptions</code> over <code>context.parserOptions</code></p> </li> <li> <p>Updated dependencies []:</p> <ul> <li>eslint-mdx@3.6.2</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/591">#591</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a>]:</p> <ul> <li>eslint-mdx@3.6.1</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/589">#589</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support specifying <code>remarkConfigPath</code> manually</li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a>]: <ul> <li>eslint-mdx@3.6.0</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.5.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/580">#580</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a> and <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - refactor: target <code>ES2022</code> and drop unnecessary <code>tslib</code> dependency</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/583">#583</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/8c9ef4beecd864a5083700021284af3a975681a1"><code>8c9ef4b</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: use unified <code>performSyncWork</code> for parsing with remark config</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a>]:</p> <ul> <li>eslint-mdx@3.5.0</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0">https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0</a></p> <h2>eslint-plugin-mdx@3.4.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/577">#577</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: remove buggy <code>module-sync</code> entry</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a>]:</p> <ul> <li>eslint-mdx@3.4.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/db21842185f6386e0b14d8d5572d451e474402f3"><code>db21842</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/594">#594</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> fix: set processor for flat config, prefer `context.languageOptions.parserOpt...</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2d7793710a64ea14ea90af65f97dbe7a38e8aafc"><code>2d77937</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/592">#592</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code> (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/591">#591</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/51f359c5152ced8bb2450eb840d705a49e47821b"><code>51f359c</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/590">#590</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> feat: support specifying <code>remarkConfigPath</code> manually (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/589">#589</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a51a0270bbf5a7769ba6509081ce3e1f34643b64"><code>a51a027</code></a> docs: remove blue underline from README.md (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/588">#588</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2fd7907d17cc39a46eb8283a6f50102ac57c95a0"><code>2fd7907</code></a> docs: update funding info (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/587">#587</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/c10165e4f62cfa2261250783c632bf36bb55bc89"><code>c10165e</code></a> chore: bump all (dev)Dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/586">#586</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/6623c9b56f9d82593fbc6fcedc91edf57d3d9a25"><code>6623c9b</code></a> chore(deps): update all dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/585">#585</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.1.5...eslint-plugin-mdx@3.6.2">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:53:59 +00:00
"prettier-plugin-organize-imports": "^4.2.0",
"sass": "1.91.0",
2025-08-15 16:36:54 +00:00
"semver": "^7.7.2",
"storybook": "^8.6.14",
"storybook-dark-mode": "^4.0.2",
2025-08-15 16:36:54 +00:00
"tailwindcss": "^4.1.12",
"tailwindcss-animate": "^1.0.7",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"ts-node": "^10.9.2",
Bump the dev-dependencies group across 1 directory with 11 updates (#1201) Bumps the dev-dependencies group with 11 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.13.0` | `9.14.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.8.0` | `22.8.7` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.12` | `8.5.13` | | [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `2.1.3` | `2.1.4` | | [eslint](https://github.com/eslint/eslint) | `9.13.0` | `9.14.0` | | [tslib](https://github.com/Microsoft/tslib) | `2.8.0` | `2.8.1` | | [tsx](https://github.com/privatenumber/tsx) | `4.19.1` | `4.19.2` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.11.0` | `8.13.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.2.0` | `4.3.0` | | [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `5.0.1` | `5.1.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.3` | `2.1.4` | Updates `@eslint/js` from 9.13.0 to 9.14.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases"><code>@​eslint/js</code>'s releases</a>.</em></p> <blockquote> <h2>v9.14.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/3fa009f25992d3d305437205be0ca145a0fb53f4"><code>3fa009f</code></a> feat: add support for Import Attributes and RegExp Modifiers (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19076">#19076</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19010">#19010</a>) (Nitin Kumar)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/24d0172bbfb92cac663cb1631bd04e7539262066"><code>24d0172</code></a> fix: enable retry concurrency limit for readFile() (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19077">#19077</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b44206725247d30b10cd58859c388949f5489087"><code>b442067</code></a> fix: Don't crash when directory is deleted during traversal. (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19067">#19067</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/d474443109762f3b92811df0411965cf64f595c2"><code>d474443</code></a> fix: avoid call stack overflow while processing globs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19035">#19035</a>) (Livia Medeiros)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/151c965aec1c46000ac7dfc67a1c04802112aafc"><code>151c965</code></a> docs: update <code>context.languageOptions.parser</code> description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19084">#19084</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/dc34f94a2ed25b37ac4aafcabed7bfae582db77e"><code>dc34f94</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/f16e846ac004bc32e52cd3991d14d7a89374bbb5"><code>f16e846</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/ee0a77ea3caa5838bab704b54a577eefbed58f68"><code>ee0a77e</code></a> docs: change link from <code>@​types/eslint</code> to lib/types (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19049">#19049</a>) (Karl Horky)</li> <li><a href="https://github.com/eslint/eslint/commit/50f03a119e6827c03b1d6c86d3aa1f4820b609e8"><code>50f03a1</code></a> docs: Clarify global ignores in config migration guide (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19032">#19032</a>) (Milos Djermanovic)</li> </ul> <h2>Build Related</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/37c9177aa07296a7a794c4b4ef5333e16fa22415"><code>37c9177</code></a> build: update <code>@wdio/*</code> dependencies (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19068">#19068</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/35a8858d62cb050fa0b56702e55c94ffaaf6956d"><code>35a8858</code></a> build: exclude flawed dendency versions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19065">#19065</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/f36cb1649a85028fb3999ee2056ee467a907c061"><code>f36cb16</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.14.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19086">#19086</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/f48a2a0e9bf4a659b9af5e70e873fb631430c1ba"><code>f48a2a0</code></a> test: add <code>no-invalid-regexp</code> tests with RegExp Modifiers (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19075">#19075</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/425202ed49a1372c1719d4e7b48d0fbdda8af9fa"><code>425202e</code></a> perf: Fix caching in config loaders (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19042">#19042</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/3d44b3c4751e4c44c32b879b65a723faee9c1c29"><code>3d44b3c</code></a> ci: run tests in Node.js 23 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19055">#19055</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/725962731538eaa38d5d78b9e82ce3fccc9762d0"><code>7259627</code></a> test: ensure tmp directory cleanup in <code>check-emfile-handling.js</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19036">#19036</a>) (Livia Medeiros)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/blob/main/CHANGELOG.md"><code>@​eslint/js</code>'s changelog</a>.</em></p> <blockquote> <p>v9.14.0 - November 1, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/f36cb1649a85028fb3999ee2056ee467a907c061"><code>f36cb16</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.14.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19086">#19086</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/24d0172bbfb92cac663cb1631bd04e7539262066"><code>24d0172</code></a> fix: enable retry concurrency limit for readFile() (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19077">#19077</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/3fa009f25992d3d305437205be0ca145a0fb53f4"><code>3fa009f</code></a> feat: add support for Import Attributes and RegExp Modifiers (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19076">#19076</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19010">#19010</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/151c965aec1c46000ac7dfc67a1c04802112aafc"><code>151c965</code></a> docs: update <code>context.languageOptions.parser</code> description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19084">#19084</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/dc34f94a2ed25b37ac4aafcabed7bfae582db77e"><code>dc34f94</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/f48a2a0e9bf4a659b9af5e70e873fb631430c1ba"><code>f48a2a0</code></a> test: add <code>no-invalid-regexp</code> tests with RegExp Modifiers (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19075">#19075</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/37c9177aa07296a7a794c4b4ef5333e16fa22415"><code>37c9177</code></a> build: update <code>@wdio/*</code> dependencies (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19068">#19068</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/b44206725247d30b10cd58859c388949f5489087"><code>b442067</code></a> fix: Don't crash when directory is deleted during traversal. (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19067">#19067</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/35a8858d62cb050fa0b56702e55c94ffaaf6956d"><code>35a8858</code></a> build: exclude flawed dendency versions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19065">#19065</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/425202ed49a1372c1719d4e7b48d0fbdda8af9fa"><code>425202e</code></a> perf: Fix caching in config loaders (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19042">#19042</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/3d44b3c4751e4c44c32b879b65a723faee9c1c29"><code>3d44b3c</code></a> ci: run tests in Node.js 23 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19055">#19055</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/f16e846ac004bc32e52cd3991d14d7a89374bbb5"><code>f16e846</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/ee0a77ea3caa5838bab704b54a577eefbed58f68"><code>ee0a77e</code></a> docs: change link from <code>@​types/eslint</code> to lib/types (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19049">#19049</a>) (Karl Horky)</li> <li><a href="https://github.com/eslint/eslint/commit/d474443109762f3b92811df0411965cf64f595c2"><code>d474443</code></a> fix: avoid call stack overflow while processing globs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19035">#19035</a>) (Livia Medeiros)</li> <li><a href="https://github.com/eslint/eslint/commit/725962731538eaa38d5d78b9e82ce3fccc9762d0"><code>7259627</code></a> test: ensure tmp directory cleanup in <code>check-emfile-handling.js</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19036">#19036</a>) (Livia Medeiros)</li> <li><a href="https://github.com/eslint/eslint/commit/50f03a119e6827c03b1d6c86d3aa1f4820b609e8"><code>50f03a1</code></a> docs: Clarify global ignores in config migration guide (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19032">#19032</a>) (Milos Djermanovic)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19010">#19010</a>)</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.14.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.8.0 to 22.8.7 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.12 to 8.5.13 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `@vitest/coverage-istanbul` from 2.1.3 to 2.1.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-istanbul</code>'s releases</a>.</em></p> <blockquote> <h2>v2.1.4</h2> <h3>   🚀 Features</h3> <p><em>This patch release includes a non-breaking feature for the experimental Browser Mode that doesn't follow SemVer. If you want to avoid picking up releases like this, make sure to pin the Vitest version in your <code>package.json</code>. See npm's documentation about <a href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for more information.</em></p> <ul> <li><strong>browser</strong>: Allow custom HTML path, respect plugins <code>transformIndexHtml</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6725">vitest-dev/vitest#6725</a> <a href="https://github.com/vitest-dev/vitest/commit/169028f0"><!-- raw HTML omitted -->(16902)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>windows</strong>: <ul> <li>Don't normalize drive case letter in root  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6792">vitest-dev/vitest#6792</a> <a href="https://github.com/vitest-dev/vitest/commit/b28cd2e3"><!-- raw HTML omitted -->(b28cd)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>browser</strong>: <ul> <li>Fix default browser port  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6700">vitest-dev/vitest#6700</a> <a href="https://github.com/vitest-dev/vitest/commit/9c518c14"><!-- raw HTML omitted -->(9c518)<!-- raw HTML omitted --></a></li> <li>Optimize expect-type  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6713">vitest-dev/vitest#6713</a> <a href="https://github.com/vitest-dev/vitest/commit/07918538"><!-- raw HTML omitted -->(07918)<!-- raw HTML omitted --></a></li> <li>Don't polyfill process.env  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6718">vitest-dev/vitest#6718</a> <a href="https://github.com/vitest-dev/vitest/commit/da6d2ea7"><!-- raw HTML omitted -->(da6d2)<!-- raw HTML omitted --></a></li> <li>Increment browser port automatically if there are several projects with browser.enabled  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6717">vitest-dev/vitest#6717</a> <a href="https://github.com/vitest-dev/vitest/commit/a939779f"><!-- raw HTML omitted -->(a9397)<!-- raw HTML omitted --></a></li> <li>Cleanup keyboard state  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6731">vitest-dev/vitest#6731</a> <a href="https://github.com/vitest-dev/vitest/commit/19278f4c"><!-- raw HTML omitted -->(19278)<!-- raw HTML omitted --></a></li> <li>Don't add <code>v=</code> queries to setup files imports  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6759">vitest-dev/vitest#6759</a> <a href="https://github.com/vitest-dev/vitest/commit/b82584c9"><!-- raw HTML omitted -->(b8258)<!-- raw HTML omitted --></a></li> <li>User event cleanup on retry  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6764">vitest-dev/vitest#6764</a> <a href="https://github.com/vitest-dev/vitest/commit/bdd15dd1"><!-- raw HTML omitted -->(bdd15)<!-- raw HTML omitted --></a></li> <li>Ignore non mocked msw requests  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6770">vitest-dev/vitest#6770</a> <a href="https://github.com/vitest-dev/vitest/commit/9d9bad5b"><!-- raw HTML omitted -->(9d9ba)<!-- raw HTML omitted --></a></li> <li>Initiate MSW in the same frame as tests  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6772">vitest-dev/vitest#6772</a> <a href="https://github.com/vitest-dev/vitest/commit/2444ff22"><!-- raw HTML omitted -->(2444f)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update dependency sirv to v3  -  in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6701">vitest-dev/vitest#6701</a> <a href="https://github.com/vitest-dev/vitest/commit/fde5d509"><!-- raw HTML omitted -->(fde5d)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Correct behavior of <code>toThrowError</code> with empty string parameter  -  by <a href="https://github.com/shulaoda"><code>@​shulaoda</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6710">vitest-dev/vitest#6710</a> <a href="https://github.com/vitest-dev/vitest/commit/a61293e9"><!-- raw HTML omitted -->(a6129)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>mocker</strong>: <ul> <li>Remove spy from peer dependencies  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6777">vitest-dev/vitest#6777</a> <a href="https://github.com/vitest-dev/vitest/commit/3a8b56bf"><!-- raw HTML omitted -->(3a8b5)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Clarify slowTestThreshold, print slow tests in non-TTY mode  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6715">vitest-dev/vitest#6715</a> <a href="https://github.com/vitest-dev/vitest/commit/2e6aa647"><!-- raw HTML omitted -->(2e6aa)<!-- raw HTML omitted --></a></li> <li>Print warnings form Vite plugins  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6724">vitest-dev/vitest#6724</a> <a href="https://github.com/vitest-dev/vitest/commit/121b161f"><!-- raw HTML omitted -->(121b1)<!-- raw HTML omitted --></a></li> <li>Don't fail if the working directory starts with a lowercase drive letter  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6779">vitest-dev/vitest#6779</a> <a href="https://github.com/vitest-dev/vitest/commit/df6d750b"><!-- raw HTML omitted -->(df6d7)<!-- raw HTML omitted --></a></li> <li>Silence import analysis warning  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6785">vitest-dev/vitest#6785</a> <a href="https://github.com/vitest-dev/vitest/commit/39041ee5"><!-- raw HTML omitted -->(39041)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest,runner</strong>: <ul> <li>Simplify <code>test.extend</code> type exports  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6707">vitest-dev/vitest#6707</a> <a href="https://github.com/vitest-dev/vitest/commit/e5c388f0"><!-- raw HTML omitted -->(e5c38)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Use <code>hash</code> to replace <code>createHash</code>  -  by <a href="https://github.com/btea"><code>@​btea</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6703">vitest-dev/vitest#6703</a> <a href="https://github.com/vitest-dev/vitest/commit/5d07bba6"><!-- raw HTML omitted -->(5d07b)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v2.1.3...v2.1.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/0df44c0e7c7d7895ddef99f5029cbe3037fe5732"><code>0df44c0</code></a> chore: release v2.1.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/de74785e052649c12a415d290dbce7ad6ad76be4"><code>de74785</code></a> chore(deps): update <code>@antfu/eslint-config</code> v3.8.0 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6751">#6751</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d260cef634b45503a4ec99f0b8afdeaca0b37924"><code>d260cef</code></a> chore(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6360">#6360</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v2.1.4/packages/coverage-istanbul">compare view</a></li> </ul> </details> <br /> Updates `eslint` from 9.13.0 to 9.14.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/releases">eslint's releases</a>.</em></p> <blockquote> <h2>v9.14.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/3fa009f25992d3d305437205be0ca145a0fb53f4"><code>3fa009f</code></a> feat: add support for Import Attributes and RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19076">#19076</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://redirect.github.com/eslint/eslint/issues/19010">#19010</a>) (Nitin Kumar)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/24d0172bbfb92cac663cb1631bd04e7539262066"><code>24d0172</code></a> fix: enable retry concurrency limit for readFile() (<a href="https://redirect.github.com/eslint/eslint/issues/19077">#19077</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b44206725247d30b10cd58859c388949f5489087"><code>b442067</code></a> fix: Don't crash when directory is deleted during traversal. (<a href="https://redirect.github.com/eslint/eslint/issues/19067">#19067</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/d474443109762f3b92811df0411965cf64f595c2"><code>d474443</code></a> fix: avoid call stack overflow while processing globs (<a href="https://redirect.github.com/eslint/eslint/issues/19035">#19035</a>) (Livia Medeiros)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/151c965aec1c46000ac7dfc67a1c04802112aafc"><code>151c965</code></a> docs: update <code>context.languageOptions.parser</code> description (<a href="https://redirect.github.com/eslint/eslint/issues/19084">#19084</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/dc34f94a2ed25b37ac4aafcabed7bfae582db77e"><code>dc34f94</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/f16e846ac004bc32e52cd3991d14d7a89374bbb5"><code>f16e846</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/ee0a77ea3caa5838bab704b54a577eefbed58f68"><code>ee0a77e</code></a> docs: change link from <code>@​types/eslint</code> to lib/types (<a href="https://redirect.github.com/eslint/eslint/issues/19049">#19049</a>) (Karl Horky)</li> <li><a href="https://github.com/eslint/eslint/commit/50f03a119e6827c03b1d6c86d3aa1f4820b609e8"><code>50f03a1</code></a> docs: Clarify global ignores in config migration guide (<a href="https://redirect.github.com/eslint/eslint/issues/19032">#19032</a>) (Milos Djermanovic)</li> </ul> <h2>Build Related</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/37c9177aa07296a7a794c4b4ef5333e16fa22415"><code>37c9177</code></a> build: update <code>@wdio/*</code> dependencies (<a href="https://redirect.github.com/eslint/eslint/issues/19068">#19068</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/35a8858d62cb050fa0b56702e55c94ffaaf6956d"><code>35a8858</code></a> build: exclude flawed dendency versions (<a href="https://redirect.github.com/eslint/eslint/issues/19065">#19065</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/f36cb1649a85028fb3999ee2056ee467a907c061"><code>f36cb16</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.14.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19086">#19086</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/f48a2a0e9bf4a659b9af5e70e873fb631430c1ba"><code>f48a2a0</code></a> test: add <code>no-invalid-regexp</code> tests with RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19075">#19075</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/425202ed49a1372c1719d4e7b48d0fbdda8af9fa"><code>425202e</code></a> perf: Fix caching in config loaders (<a href="https://redirect.github.com/eslint/eslint/issues/19042">#19042</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/3d44b3c4751e4c44c32b879b65a723faee9c1c29"><code>3d44b3c</code></a> ci: run tests in Node.js 23 (<a href="https://redirect.github.com/eslint/eslint/issues/19055">#19055</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/725962731538eaa38d5d78b9e82ce3fccc9762d0"><code>7259627</code></a> test: ensure tmp directory cleanup in <code>check-emfile-handling.js</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19036">#19036</a>) (Livia Medeiros)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/eslint/eslint/blob/main/CHANGELOG.md">eslint's changelog</a>.</em></p> <blockquote> <p>v9.14.0 - November 1, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/f36cb1649a85028fb3999ee2056ee467a907c061"><code>f36cb16</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.14.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19086">#19086</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/24d0172bbfb92cac663cb1631bd04e7539262066"><code>24d0172</code></a> fix: enable retry concurrency limit for readFile() (<a href="https://redirect.github.com/eslint/eslint/issues/19077">#19077</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/3fa009f25992d3d305437205be0ca145a0fb53f4"><code>3fa009f</code></a> feat: add support for Import Attributes and RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19076">#19076</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://redirect.github.com/eslint/eslint/issues/19010">#19010</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/151c965aec1c46000ac7dfc67a1c04802112aafc"><code>151c965</code></a> docs: update <code>context.languageOptions.parser</code> description (<a href="https://redirect.github.com/eslint/eslint/issues/19084">#19084</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/dc34f94a2ed25b37ac4aafcabed7bfae582db77e"><code>dc34f94</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/f48a2a0e9bf4a659b9af5e70e873fb631430c1ba"><code>f48a2a0</code></a> test: add <code>no-invalid-regexp</code> tests with RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19075">#19075</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/37c9177aa07296a7a794c4b4ef5333e16fa22415"><code>37c9177</code></a> build: update <code>@wdio/*</code> dependencies (<a href="https://redirect.github.com/eslint/eslint/issues/19068">#19068</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/b44206725247d30b10cd58859c388949f5489087"><code>b442067</code></a> fix: Don't crash when directory is deleted during traversal. (<a href="https://redirect.github.com/eslint/eslint/issues/19067">#19067</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/35a8858d62cb050fa0b56702e55c94ffaaf6956d"><code>35a8858</code></a> build: exclude flawed dendency versions (<a href="https://redirect.github.com/eslint/eslint/issues/19065">#19065</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/425202ed49a1372c1719d4e7b48d0fbdda8af9fa"><code>425202e</code></a> perf: Fix caching in config loaders (<a href="https://redirect.github.com/eslint/eslint/issues/19042">#19042</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/3d44b3c4751e4c44c32b879b65a723faee9c1c29"><code>3d44b3c</code></a> ci: run tests in Node.js 23 (<a href="https://redirect.github.com/eslint/eslint/issues/19055">#19055</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/f16e846ac004bc32e52cd3991d14d7a89374bbb5"><code>f16e846</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/ee0a77ea3caa5838bab704b54a577eefbed58f68"><code>ee0a77e</code></a> docs: change link from <code>@​types/eslint</code> to lib/types (<a href="https://redirect.github.com/eslint/eslint/issues/19049">#19049</a>) (Karl Horky)</li> <li><a href="https://github.com/eslint/eslint/commit/d474443109762f3b92811df0411965cf64f595c2"><code>d474443</code></a> fix: avoid call stack overflow while processing globs (<a href="https://redirect.github.com/eslint/eslint/issues/19035">#19035</a>) (Livia Medeiros)</li> <li><a href="https://github.com/eslint/eslint/commit/725962731538eaa38d5d78b9e82ce3fccc9762d0"><code>7259627</code></a> test: ensure tmp directory cleanup in <code>check-emfile-handling.js</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19036">#19036</a>) (Livia Medeiros)</li> <li><a href="https://github.com/eslint/eslint/commit/50f03a119e6827c03b1d6c86d3aa1f4820b609e8"><code>50f03a1</code></a> docs: Clarify global ignores in config migration guide (<a href="https://redirect.github.com/eslint/eslint/issues/19032">#19032</a>) (Milos Djermanovic)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/db0b844a66ee25483f9619d04346de1a2a0d79fa"><code>db0b844</code></a> 9.14.0</li> <li><a href="https://github.com/eslint/eslint/commit/20b0da1db5dc91faf18d3a1da62e8b605f9a9dde"><code>20b0da1</code></a> Build: changelog update for 9.14.0</li> <li><a href="https://github.com/eslint/eslint/commit/f36cb1649a85028fb3999ee2056ee467a907c061"><code>f36cb16</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.14.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19086">#19086</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/28be4471f6eb61b4304ae3d17ea7eeacc6364bbe"><code>28be447</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/24d0172bbfb92cac663cb1631bd04e7539262066"><code>24d0172</code></a> fix: enable retry concurrency limit for readFile() (<a href="https://redirect.github.com/eslint/eslint/issues/19077">#19077</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/3fa009f25992d3d305437205be0ca145a0fb53f4"><code>3fa009f</code></a> feat: add support for Import Attributes and RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19076">#19076</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/b0faee30e007a89bd7bdbc22a70223fabb99a541"><code>b0faee3</code></a> feat: add types for the <code>@eslint/js</code> package (<a href="https://redirect.github.com/eslint/eslint/issues/19010">#19010</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/151c965aec1c46000ac7dfc67a1c04802112aafc"><code>151c965</code></a> docs: update <code>context.languageOptions.parser</code> description (<a href="https://redirect.github.com/eslint/eslint/issues/19084">#19084</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/dc34f94a2ed25b37ac4aafcabed7bfae582db77e"><code>dc34f94</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/f48a2a0e9bf4a659b9af5e70e873fb631430c1ba"><code>f48a2a0</code></a> test: add <code>no-invalid-regexp</code> tests with RegExp Modifiers (<a href="https://redirect.github.com/eslint/eslint/issues/19075">#19075</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.13.0...v9.14.0">compare view</a></li> </ul> </details> <br /> Updates `tslib` from 2.8.0 to 2.8.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/tslib/releases">tslib's releases</a>.</em></p> <blockquote> <h2>v2.8.1</h2> <h2>What's Changed</h2> <ul> <li>Fix publish workflow by <a href="https://github.com/andrewbranch"><code>@​andrewbranch</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/271">microsoft/tslib#271</a></li> <li>Include non-enumerable keys in __importStar helper by <a href="https://github.com/rbuckton"><code>@​rbuckton</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/272">microsoft/tslib#272</a></li> <li>Remove use of ES2015 syntax by <a href="https://github.com/andrewbranch"><code>@​andrewbranch</code></a> in <a href="https://redirect.github.com/microsoft/tslib/pull/275">microsoft/tslib#275</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/microsoft/tslib/compare/v2.8.0...v2.8.1">https://github.com/microsoft/tslib/compare/v2.8.0...v2.8.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/tslib/commit/d72d6f70b36286bc3f94a3dda1e64dcb568b1370"><code>d72d6f7</code></a> 2.8.1</li> <li><a href="https://github.com/microsoft/tslib/commit/11fa98227b6680aca0ee1d6dd3d613699672957d"><code>11fa982</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/tslib/issues/275">#275</a> from microsoft/bug/es5-compat</li> <li><a href="https://github.com/microsoft/tslib/commit/3c532ebb15fabac8fb8b6bc08704283c1ce0fad0"><code>3c532eb</code></a> Remove use of ES2015 syntax</li> <li><a href="https://github.com/microsoft/tslib/commit/b0076c4070f7bae5730b49903529d8b27bc43e96"><code>b0076c4</code></a> Include non-enumerable keys in __importStar helper (<a href="https://redirect.github.com/Microsoft/tslib/issues/272">#272</a>)</li> <li><a href="https://github.com/microsoft/tslib/commit/7c11588c364da4267328cfd32ed20de57494db67"><code>7c11588</code></a> Add missing registry-url parameter</li> <li><a href="https://github.com/microsoft/tslib/commit/1fec6679a21ab68bf4519551e76503f2602d6f3c"><code>1fec667</code></a> Merge pull request <a href="https://redirect.github.com/Microsoft/tslib/issues/271">#271</a> from microsoft/fix-publish</li> <li><a href="https://github.com/microsoft/tslib/commit/097e99eae872e743dda18aaee034118fb9c7c063"><code>097e99e</code></a> Fix publish workflow</li> <li>See full diff in <a href="https://github.com/Microsoft/tslib/compare/v2.8.0...v2.8.1">compare view</a></li> </ul> </details> <br /> Updates `tsx` from 4.19.1 to 4.19.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/privatenumber/tsx/releases">tsx's releases</a>.</em></p> <blockquote> <h2>v4.19.2</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.19.1...v4.19.2">4.19.2</a> (2024-10-26)</h2> <h3>Bug Fixes</h3> <ul> <li>generate sourcesContent when Node.js debugger is enabled (<a href="https://redirect.github.com/privatenumber/tsx/issues/670">#670</a>) (<a href="https://github.com/privatenumber/tsx/commit/7c47074652790e8225bb9c0d3123fc92e75d3695">7c47074</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.19.2"><code>npm package (@​latest dist-tag)</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/privatenumber/tsx/commit/7c47074652790e8225bb9c0d3123fc92e75d3695"><code>7c47074</code></a> fix: generate sourcesContent when Node.js debugger is enabled (<a href="https://redirect.github.com/privatenumber/tsx/issues/670">#670</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/315d5f44f301424de595873f93c102a5c184ab46"><code>315d5f4</code></a> docs(watch): document <code>--include</code> flag</li> <li><a href="https://github.com/privatenumber/tsx/commit/375e39a2a68d61045c1483239cd51b284eaea0ad"><code>375e39a</code></a> test: refactor enforce-timeout</li> <li><a href="https://github.com/privatenumber/tsx/commit/524cb775b0ac5f93ba63f1c5cd6b1c0d0b42784c"><code>524cb77</code></a> docs(cjs): add compilation caveats</li> <li><a href="https://github.com/privatenumber/tsx/commit/7f8a051947ad2af22d8d8f1b99f26ca11ed282d2"><code>7f8a051</code></a> chore(deps): update dependency node to v20.18.0 (<a href="https://redirect.github.com/privatenumber/tsx/issues/660">#660</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/97e8de06255119891a03281f24f13442f922ee50"><code>97e8de0</code></a> chore: upgrade pnpm</li> <li><a href="https://github.com/privatenumber/tsx/commit/95d2b0f74b8f43572aa64188252d172216e3dcf6"><code>95d2b0f</code></a> chore: remove commit hooks</li> <li><a href="https://github.com/privatenumber/tsx/commit/0161078994afb4ddb563f6b43d5f2d27df1d8f08"><code>0161078</code></a> docs: add prisma as a premium sponsor</li> <li><a href="https://github.com/privatenumber/tsx/commit/09f953250af502419d5e96cf2eddd2f5f5c4b58f"><code>09f9532</code></a> chore(docs): fix typo (<a href="https://redirect.github.com/privatenumber/tsx/issues/655">#655</a>)</li> <li>See full diff in <a href="https://github.com/privatenumber/tsx/compare/v4.19.1...v4.19.2">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.11.0 to 8.13.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.13.0</h2> <h2>8.13.0 (2024-11-04)</h2> <h3>🚀 Features</h3> <ul> <li>add <code>options</code> property to <code>ImportExpression</code> node (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10255">#10255</a>)</li> <li><strong>eslint-plugin:</strong> disable <code>no-class-assign</code> rule in <code>eslint-recommended</code> config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10250">#10250</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] add option <code>ignoreBooleanCoercion</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9924">#9924</a>)</li> <li><strong>eslint-plugin:</strong> [only-throw-error] add allow option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10221">#10221</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>deps:</strong> update dependency <code>@​eslint-community/regexpp</code> to v4.12.1 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10269">#10269</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-condition] falsey bigint should be falsey (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10205">#10205</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] report on deprecated variables used inside dynamic imports (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10261">#10261</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] report when exported class implements/extends deprecated entity (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10259">#10259</a>)</li> <li><strong>eslint-plugin:</strong> [consistent-type-definitions] don't leave trailing parens when fixing type to interface (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10235">#10235</a>)</li> <li><strong>eslint-plugin:</strong> [switch-exhaustiveness-check] add support for covering a missing property with <code>undefined</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10232">#10232</a>)</li> <li><strong>types:</strong> parent property type annotation in the ImportAttribute node (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10258">#10258</a>)</li> <li><strong>utils:</strong> allow an array for the values of SharedConfig (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10217">#10217</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>auvred <a href="https://github.com/auvred"><code>@​auvred</code></a></li> <li>Kim Sang Du <a href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Mark de Dios <a href="https://github.com/peanutenthusiast"><code>@​peanutenthusiast</code></a></li> <li>Ronen Amiel</li> <li>Trygve Aaberge</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li> <li>Yosuke Ota <a href="https://github.com/ota-meshi"><code>@​ota-meshi</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.12.2</h2> <h2>8.12.2 (2024-10-29)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [switch-exhaustiveness-check] invert <code>considerDefaultExhaustiveForUnions</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10223">#10223</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.12.1</h2> <h2>8.12.1 (2024-10-28)</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.13.0 (2024-11-04)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.12.2 (2024-10-29)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.12.1 (2024-10-28)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.12.0 (2024-10-28)</h2> <h3>🚀 Features</h3> <ul> <li><strong>typescript-eslint:</strong> improve undefined extension handling (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10177">#10177</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Maxim Stykow <a href="https://github.com/mstykow"><code>@​mstykow</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/ac1f63250859313a3dc330d6e0c4c3f7fc234959"><code>ac1f632</code></a> chore(release): publish 8.13.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3b97b550b5f2c02948717265b167fda40fab6b62"><code>3b97b55</code></a> chore: enable eslint-plugin-perfectionist on the rest of the repo (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/10189">#10189</a>)</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/4af866a6642502117c32b49e64d7012a027c42f5"><code>4af866a</code></a> chore(release): publish 8.12.2</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/1edec1d56ccad98fa65f57ac54fe8abbb1d3a922"><code>1edec1d</code></a> chore(release): publish 8.12.1</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3413a2d5bfb1641de86677ed25f1fd66045ac068"><code>3413a2d</code></a> chore(release): publish 8.12.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/ad9d3bab05f6afd388760658c897c6284a6633bb"><code>ad9d3ba</code></a> feat(typescript-eslint): improve undefined extension handling (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/10177">#10177</a>)</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.13.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.2.0 to 4.3.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/702e7569a70d37757c016c9bc6af240c4939ec68"><code>702e756</code></a> 4.3.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b5b1afb8ccdff1a18c3b5433ef27b9b75f61b721"><code>b5b1afb</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/4d515a3d5782c590755b2dc8a8c412e2157ebc98"><code>4d515a3</code></a> feat: add desc to component type (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/120">#120</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/e4a770bb9529b18256ac20c68fdd919bc94afd9d"><code>e4a770b</code></a> docs: add hint about vite-env.d.ts to README (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/124">#124</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/290715588e33debde8a8688f9703a5db5159a5d6"><code>2907155</code></a> style: format</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/bd06e4a5710498c436adc912e4bf22a8fdad3cfe"><code>bd06e4a</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/1280569bbaccc2fb7be43ba70f2b384f6cabba93"><code>1280569</code></a> chore: tweak vite peer version</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/3b7af19949cc97dcef95b6137817490ea6428819"><code>3b7af19</code></a> style: format</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/242e6a605ffe65094cc025bb4b97291befc89ca3"><code>242e6a6</code></a> chore: added codemods to migrate v3 -&gt; v4 (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/104">#104</a>)</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.2.0...v4.3.0">compare view</a></li> </ul> </details> <br /> Updates `vite-tsconfig-paths` from 5.0.1 to 5.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aleclarson/vite-tsconfig-paths/releases">vite-tsconfig-paths's releases</a>.</em></p> <blockquote> <h2>v5.1.0</h2> <ul> <li>Add <code>skip</code> option for adding additional directories to be skipped when searching for tsconfig.json files (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/146">#146</a>)</li> <li>Fix path resolution on Windows when other Vite plugins neglect to normalize the <code>importer</code> path before calling <code>this.resolve</code> in their <code>resolveId</code> hooks (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/157">#157</a>)</li> <li>Allow both tsconfig.json and jsconfig.json in the same directory (4124b091607503d44b876bb4edd726667b386660)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/77b95adaf1345f75aabc1b02b2d6756ade24a186"><code>77b95ad</code></a> 5.1.0</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/4124b091607503d44b876bb4edd726667b386660"><code>4124b09</code></a> fix: allow both tsconfig/jsconfig in same directory</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/9983767511bc124e7e258efcf5c8d26dad0bc5ec"><code>9983767</code></a> chore: enable “format on save” in vscode</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/152687ab44a0dcf0fcfbd7b7bab05261abe5005c"><code>152687a</code></a> fix: tolerate <code>resolveId</code> calls with win32-style importer path (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/157">#157</a>)</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/533590d73ad1ed314b7b6251f3105d00df0f2b53"><code>533590d</code></a> docs: mention allowJs and loose options earlier in readme (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/159">#159</a>)</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/fe5937f40e7099afca842e41200a75dc521354b1"><code>fe5937f</code></a> feat: add <code>skip</code> option (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/146">#146</a>)</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/444ee7b0d05a90e0a6921052bde034dea88a7c24"><code>444ee7b</code></a> chore: add SECURITY.md</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/5c9477078d3a913ade563b168ff4a9ccace187a2"><code>5c94770</code></a> chore: update readme</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/879586aef3b29a9d12f5f11c99b5200f791203ce"><code>879586a</code></a> chore: remove broken test setup</li> <li>See full diff in <a href="https://github.com/aleclarson/vite-tsconfig-paths/compare/v5.0.1...v5.1.0">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 2.1.3 to 2.1.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitest-dev/vitest/releases">vitest's releases</a>.</em></p> <blockquote> <h2>v2.1.4</h2> <h3>   🚀 Features</h3> <p><em>This patch release includes a non-breaking feature for the experimental Browser Mode that doesn't follow SemVer. If you want to avoid picking up releases like this, make sure to pin the Vitest version in your <code>package.json</code>. See npm's documentation about <a href="https://docs.npmjs.com/cli/v6/using-npm/semver/">semver</a> for more information.</em></p> <ul> <li><strong>browser</strong>: Allow custom HTML path, respect plugins <code>transformIndexHtml</code>  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6725">vitest-dev/vitest#6725</a> <a href="https://github.com/vitest-dev/vitest/commit/169028f0"><!-- raw HTML omitted -->(16902)<!-- raw HTML omitted --></a></li> </ul> <h3>   🐞 Bug Fixes</h3> <ul> <li><strong>windows</strong>: <ul> <li>Don't normalize drive case letter in root  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6792">vitest-dev/vitest#6792</a> <a href="https://github.com/vitest-dev/vitest/commit/b28cd2e3"><!-- raw HTML omitted -->(b28cd)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>browser</strong>: <ul> <li>Fix default browser port  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6700">vitest-dev/vitest#6700</a> <a href="https://github.com/vitest-dev/vitest/commit/9c518c14"><!-- raw HTML omitted -->(9c518)<!-- raw HTML omitted --></a></li> <li>Optimize expect-type  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6713">vitest-dev/vitest#6713</a> <a href="https://github.com/vitest-dev/vitest/commit/07918538"><!-- raw HTML omitted -->(07918)<!-- raw HTML omitted --></a></li> <li>Don't polyfill process.env  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6718">vitest-dev/vitest#6718</a> <a href="https://github.com/vitest-dev/vitest/commit/da6d2ea7"><!-- raw HTML omitted -->(da6d2)<!-- raw HTML omitted --></a></li> <li>Increment browser port automatically if there are several projects with browser.enabled  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6717">vitest-dev/vitest#6717</a> <a href="https://github.com/vitest-dev/vitest/commit/a939779f"><!-- raw HTML omitted -->(a9397)<!-- raw HTML omitted --></a></li> <li>Cleanup keyboard state  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6731">vitest-dev/vitest#6731</a> <a href="https://github.com/vitest-dev/vitest/commit/19278f4c"><!-- raw HTML omitted -->(19278)<!-- raw HTML omitted --></a></li> <li>Don't add <code>v=</code> queries to setup files imports  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6759">vitest-dev/vitest#6759</a> <a href="https://github.com/vitest-dev/vitest/commit/b82584c9"><!-- raw HTML omitted -->(b8258)<!-- raw HTML omitted --></a></li> <li>User event cleanup on retry  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6764">vitest-dev/vitest#6764</a> <a href="https://github.com/vitest-dev/vitest/commit/bdd15dd1"><!-- raw HTML omitted -->(bdd15)<!-- raw HTML omitted --></a></li> <li>Ignore non mocked msw requests  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6770">vitest-dev/vitest#6770</a> <a href="https://github.com/vitest-dev/vitest/commit/9d9bad5b"><!-- raw HTML omitted -->(9d9ba)<!-- raw HTML omitted --></a></li> <li>Initiate MSW in the same frame as tests  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6772">vitest-dev/vitest#6772</a> <a href="https://github.com/vitest-dev/vitest/commit/2444ff22"><!-- raw HTML omitted -->(2444f)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>deps</strong>: <ul> <li>Update dependency sirv to v3  -  in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6701">vitest-dev/vitest#6701</a> <a href="https://github.com/vitest-dev/vitest/commit/fde5d509"><!-- raw HTML omitted -->(fde5d)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Correct behavior of <code>toThrowError</code> with empty string parameter  -  by <a href="https://github.com/shulaoda"><code>@​shulaoda</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6710">vitest-dev/vitest#6710</a> <a href="https://github.com/vitest-dev/vitest/commit/a61293e9"><!-- raw HTML omitted -->(a6129)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>mocker</strong>: <ul> <li>Remove spy from peer dependencies  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6777">vitest-dev/vitest#6777</a> <a href="https://github.com/vitest-dev/vitest/commit/3a8b56bf"><!-- raw HTML omitted -->(3a8b5)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Clarify slowTestThreshold, print slow tests in non-TTY mode  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6715">vitest-dev/vitest#6715</a> <a href="https://github.com/vitest-dev/vitest/commit/2e6aa647"><!-- raw HTML omitted -->(2e6aa)<!-- raw HTML omitted --></a></li> <li>Print warnings form Vite plugins  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6724">vitest-dev/vitest#6724</a> <a href="https://github.com/vitest-dev/vitest/commit/121b161f"><!-- raw HTML omitted -->(121b1)<!-- raw HTML omitted --></a></li> <li>Don't fail if the working directory starts with a lowercase drive letter  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6779">vitest-dev/vitest#6779</a> <a href="https://github.com/vitest-dev/vitest/commit/df6d750b"><!-- raw HTML omitted -->(df6d7)<!-- raw HTML omitted --></a></li> <li>Silence import analysis warning  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6785">vitest-dev/vitest#6785</a> <a href="https://github.com/vitest-dev/vitest/commit/39041ee5"><!-- raw HTML omitted -->(39041)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest,runner</strong>: <ul> <li>Simplify <code>test.extend</code> type exports  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6707">vitest-dev/vitest#6707</a> <a href="https://github.com/vitest-dev/vitest/commit/e5c388f0"><!-- raw HTML omitted -->(e5c38)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h3>   🏎 Performance</h3> <ul> <li>Use <code>hash</code> to replace <code>createHash</code>  -  by <a href="https://github.com/btea"><code>@​btea</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6703">vitest-dev/vitest#6703</a> <a href="https://github.com/vitest-dev/vitest/commit/5d07bba6"><!-- raw HTML omitted -->(5d07b)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v2.1.3...v2.1.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/0df44c0e7c7d7895ddef99f5029cbe3037fe5732"><code>0df44c0</code></a> chore: release v2.1.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/2444ff225fa82f07b185ae6e5fef7b10227ec876"><code>2444ff2</code></a> fix(browser): initiate MSW in the same frame as tests (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6772">#6772</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/39041ee55d30ab14cfddb6787cf6263d190e3e8e"><code>39041ee</code></a> fix(vitest): silence import analysis warning (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6785">#6785</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/b28cd2e3967f8fa58ad36518dfff67950ddee86e"><code>b28cd2e</code></a> fix: don't normalize drive case letter in root (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6792">#6792</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/df6d750b79066fdc412cece56051ed4d878e189d"><code>df6d750</code></a> fix(vitest): don't fail if the working directory starts with a lowercase driv...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/169028f03abf5e80d77924f4ed9ae6107647c4c0"><code>169028f</code></a> feat(browser): allow custom HTML path, respect plugins <code>transformIndexHtml</code> (...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/5df7414bf6e66ed379660e276cfb7746980394d2"><code>5df7414</code></a> chore(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6750">#6750</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/de74785e052649c12a415d290dbce7ad6ad76be4"><code>de74785</code></a> chore(deps): update <code>@antfu/eslint-config</code> v3.8.0 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6751">#6751</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/121b161fa81ab06331553f4c017cb357a1d0822d"><code>121b161</code></a> fix(vitest): print warnings form Vite plugins (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6724">#6724</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a939779f1db473f8be3de8454bc94de70cfe5b97"><code>a939779</code></a> fix(browser): increment browser port automatically if there are several proje...</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v2.1.4/packages/vitest">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 co... _Description has been truncated_ Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-04 20:54:08 +00:00
"tslib": "^2.8.1",
2025-08-15 16:36:54 +00:00
"tsx": "^4.20.4",
"typescript": "^5.9.2",
Bump the dev-dependencies-minor group across 1 directory with 9 updates (#2291) Bumps the dev-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.8` | `7.7.0` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.14` | `8.18.1` | | [node-abi](https://github.com/electron/node-abi) | `4.6.0` | `4.12.0` | | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.6.2` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.41.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.8` | `0.1.2` | | [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.1.5` | `3.6.2` | Updates `@types/semver` from 7.5.8 to 7.7.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.14 to 8.18.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `node-abi` from 4.6.0 to 4.12.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/node-abi/releases">node-abi's releases</a>.</em></p> <blockquote> <h2>v4.12.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.11.0...v4.12.0">4.12.0</a> (2025-06-30)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b">c4babcb</a>)</li> </ul> <h2>v4.11.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.10.0...v4.11.0">4.11.0</a> (2025-06-25)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b">dc87bac</a>)</li> </ul> <h2>v4.10.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.9.0...v4.10.0">4.10.0</a> (2025-06-24)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48">34a63fa</a>)</li> </ul> <h2>v4.9.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.8.0...v4.9.0">4.9.0</a> (2025-05-21)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2">63bae36</a>)</li> </ul> <h2>v4.8.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.7.0...v4.8.0">4.8.0</a> (2025-05-06)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3">f68e336</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b"><code>c4babcb</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b"><code>dc87bac</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48"><code>34a63fa</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/77272e8f59be274a56c5c35830855a3dad87d561"><code>77272e8</code></a> ci: restrict auto-update to Monday-Friday (<a href="https://redirect.github.com/electron/node-abi/issues/209">#209</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2"><code>63bae36</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/9a0b80b0150172b62772d1521e63fda56e645970"><code>9a0b80b</code></a> ci: timeout release job after 1 hour (<a href="https://redirect.github.com/electron/node-abi/issues/207">#207</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3"><code>f68e336</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/810f4896a6d1a52855b0b8968f0715f3ab7efc81"><code>810f489</code></a> feat: update ABI registry</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.6.0...v4.12.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.4.2 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.5.3...3.6.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/06/23/3.6.0">Release note &quot;Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!&quot;</a></p> <h2>3.5.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#353">Changelog</a></p> <h2>3.5.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#352">Changelog</a></p> <h2>3.5.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#351">Changelog</a></p> <h2>3.5.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.4.2...3.5.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/02/09/3.5.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.6.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.1...3.6.2">diff</a></p> <h4>Markdown: Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/pull/17675">#17675</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="md"><code>&lt;!-- Input --&gt; 1. Some text, and code block below, with newline after code block <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> <p>&lt;!-- Prettier 3.6.1 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> </li> </ol> <p>&lt;!-- Prettier 3.6.2 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List<br /> </code></pre></li> </ol> </li> </ol> <h1>3.6.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.0...3.6.1">diff</a></p> <h4>TypeScript: Allow const without initializer (<a href="https://redirect.github.com/prettier/prettier/pull/17650">#17650</a>, <a href="https://redirect.github.com/prettier/prettier/pull/17654">#17654</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7a8b05f41574633fd3af5298f3eeaf33567ad3d3"><code>7a8b05f</code></a> Release 3.6.2</li> <li><a href="https://github.com/prettier/prettier/commit/46526b49b6315914b9229be412c1557ce59f8dbf"><code>46526b4</code></a> Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/issues/17675">#17675</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/a04ec1196f9c3efe2312b10c2f0d02903c9de5e7"><code>a04ec11</code></a> chore(deps): update babel to v7.27.7 (<a href="https://redirect.github.com/prettier/prettier/issues/17684">#17684</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/32be5b6b44314579f3dcc838f26b03ce47938acb"><code>32be5b6</code></a> chore(deps): update dependency flow-parser to v0.274.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17676">#17676</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b55e777924538b69c564abea51a42e33597910b9"><code>b55e777</code></a> Update docs about &quot;TypeScript Configuration Files&quot; (<a href="https://redirect.github.com/prettier/prettier/issues/17677">#17677</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b197c99224b2e068736020bdaa8b2f8a686d4b1e"><code>b197c99</code></a> chore(deps): update dependency <code>@​vitejs/plugin-react</code> to v4.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17674">#17674</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1185f8370a7a4c1b038b994e7be32a2413fae12d"><code>1185f83</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v20.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/17680">#17680</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/aa1316fa603e25d853e76f69cdc029c19b8d24b9"><code>aa1316f</code></a> chore(deps): update dependency browserslist to v4.25.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17671">#17671</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c468d33f16c665363da86f9275be4b4d9f799dcd"><code>c468d33</code></a> chore(deps): update dependency oxc-parser to v0.75.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17672">#17672</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3f46d91bdb7b2a650f376215fdf884babfc765b7"><code>3f46d91</code></a> chore(deps): update dependency vite to v7 (<a href="https://redirect.github.com/prettier/prettier/issues/17673">#17673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.4.2...3.6.2">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases">prettier-plugin-organize-imports's releases</a>.</em></p> <blockquote> <h2>4.2.0</h2> <ul> <li>fix: use <code>getDefaultCompilerOptions</code> from <code>vue-tsc</code> instead of the deprecated <code>resolveVueCompilerOptions</code> (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb">858cbbe</a>)</li> <li>feat: allow <code>vue-tsc</code> version 3 as peer dependency (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4">c777cd8</a>)</li> <li>chore: update all dev dependencies (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3">253d1bf</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md">prettier-plugin-organize-imports's changelog</a>.</em></p> <blockquote> <p>Version <code>4.2.0</code> switches from using <code>vue-tsc</code>'s deprecated <code>resolveVueCompilerOptions</code> to the new <code>getDefaultCompilerOptions</code> instead, which then also allowed bumping the <code>vue-tsc</code> peer dependency range to include version 3.</p> <p>Version <code>4.1.0</code> bumps the peer dependency range for <code>vue-tsc</code> to <code>^2.1.0</code> because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. <code>npm i -D prettier-plugin-organize-imports vue-tsc</code>.</p> <p>Version <code>4.0.0</code> upgrades/replaces the Volar packages used for Vue support, to use the latest <code>vue-tsc</code> package that's part of Volar 2. To migrate, you just have to remove <code>@volar/vue-typescript</code> and if you're using it, also <code>@volar/vue-language-plugin-pug</code>, and replace it with <code>vue-tsc</code> and <code>@vue/language-plugin-pug</code> respectively. There are no breaking changes other than this.</p> <p>Version <code>3.2.4</code> implements a fix to skip when formatting ranges (i.e. if the plugin is requested to format a range, it doesn't do anything because it would lack the full file context).</p> <p>Version <code>3.2.3</code> updates the readme with instructions for Prettier 3.</p> <p>Version <code>3.2.2</code> fixes a performance regression introduced in <code>3.2.0</code>.</p> <p>Version <code>3.2.1</code> fixes the implementation of the language service host's <code>getCurrentDirectory</code> method to return the directory containing the tsconfig, rather than using <code>ts.sys.getCurrentDirectory</code> (which returns <code>process.cwd()</code>). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).</p> <p>Version <code>3.2.0</code> adds and fixes support for pug templates in Vue files (via <code>@volar/vue-language-plugin-pug</code>). Please be aware that you'll need to update your version of the <code>@volar/vue-typescript</code> peer dependency from <code>0.x</code> to <code>1.x</code>.</p> <p>Version <code>3.1.0</code> adds an option to skip destructive code actions like removing unused imports.</p> <p>Version <code>3.0.3</code> fixes a performance regression introduced in <code>3.0.2</code>.</p> <p>Version <code>3.0.2</code> fixes a regression introduced by adding some file-system related methods to the language service host (to fix a bug), which revealed that another method's implementation was incorrect.</p> <p>Version <code>3.0.1</code> bumps the <code>@volar/vue-typescript</code> version to fix more edge cases, e. g. not removing imports when a component is used via kebab-case naming. <code>@volar/vue-typescript</code> is now defined as an optional peer dependency and you'll need to install version <code>0.39</code> or later. Furthermore a fix has been added that should help support more module resolution algorithms.</p> <p>Version <code>3.0.0</code> switches to a different package for Vue support, which fixes some more issues, e. g. support for setup scripts. No breaking changes otherwise.</p> <p>Version <code>2.3.4</code> fixes an issue with Vue v2 files.</p> <p>Version <code>2.3.3</code> fixes a bug where default imports were removed erroneously.</p> <p>Version <code>2.3.1</code> adds debug logs and fixes Vue.js support.</p> <p>Version <code>2.2.0</code> adds a compiler options cache to improve performance.</p> <p>Version <code>2.1.0</code> adds support for Vue.js (<code>.vue</code> files).</p> <p>Version <code>2.0.0</code> adds support for the parsers <code>babel</code> (i. e. JavaScript) and <code>babel-ts</code> which are only available since Prettier v2 (and thus the peer dependency has received a major bump).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/93df5019c4295cf286bc7c6b3726393b6bbf46a2"><code>93df501</code></a> 4.2.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3"><code>253d1bf</code></a> chore: update all dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb"><code>858cbbe</code></a> fix: use <code>getDefaultCompilerOptions</code> from vue-tsc instead of the deprecated `...</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4"><code>c777cd8</code></a> feat: allow vue-tsc 3 as peer dependency</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/e79ed64e5ecd05bdd65140b814b37c9a1a360767"><code>e79ed64</code></a> chore(ci): remove <code>check-types</code> step (part of <code>test</code> now)</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.1.0...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.39.1 to 8.41.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.41.0</h2> <h2>8.41.0 (2025-08-25)</h2> <h3>🚀 Features</h3> <ul> <li>tighten <code>tsconfigRootDir</code> validation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11463">#11463</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>resolve type error in eslint config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11500">#11500</a>)</li> <li><strong>deps:</strong> update babel monorepo (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11174">#11174</a>)</li> <li><strong>deps:</strong> update dependency prettier to v3.6.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11496">#11496</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.40.0</h2> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> <li><strong>typescript-estree:</strong> correct range of import assertion with trailing comma (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11478">#11478</a>)</li> <li><strong>utils:</strong> correct <code>calculateConfigForFile</code> return type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11451">#11451</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Nolan Gajdascz <a href="https://github.com/Gajdascz"><code>@​Gajdascz</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.41.0 (2025-08-25)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/31a73361bd6449974c89b78ef77be0d04e77510b"><code>31a7336</code></a> chore(release): publish 8.41.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/60c3b26317578b03bf64d8194488ba948c1b05bb"><code>60c3b26</code></a> chore(release): publish 8.40.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3426f0dd6f1f89d923720ff1af53b672809e5587"><code>3426f0d</code></a> fix(typescript-eslint): export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are com...</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pd4d10/vite-plugin-svgr/releases">vite-plugin-svgr's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <p><em>No significant changes</em></p> <h5>    <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.4.0...v4.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/d1f8887202a6edd119053c665f0679419df70025"><code>d1f8887</code></a> 4.5.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b326999d5a2546227bb4b2d2cdcf6092392f4d11"><code>b326999</code></a> ci: fix npm publish</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/79300b869297ab2063a730f33ec6f7984b8acbe8"><code>79300b8</code></a> 4.4.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b7d3c36dd658a6b8344b82307f36dc3acb0d1479"><code>b7d3c36</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/6f9d9af421ec891c1594b5511d4865cea6c8f79a"><code>6f9d9af</code></a> feat: support rolldown-vite via <code>transformWithOxc</code> (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/130">#130</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/cef5adead59da0abfc0b81edf4b2022b193e4607"><code>cef5ade</code></a> ci: fix release note</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.3.0...v4.5.0">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.8 to 0.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/releases"><code>@​mdx-js/typescript-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/blob/main/packages/typescript-plugin/CHANGELOG.md"><code>@​mdx-js/typescript-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>0.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2>0.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2>0.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/5c96eaca267bae3a9bb232945cb89e97b4a8a634"><code>5c96eac</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/509">#509</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Update Volar dependencies</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Filter diagnostics if only MDX files are found (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/508">#508</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/8e5356ffc503a07522968c74e96770aed7db2169"><code>8e5356f</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/506">#506</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Replace jiti with require (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/505">#505</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/644bc26c35217fc49cf0e50d2014150ce6d109e2"><code>644bc26</code></a> Update to xo 1</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f20fb8e182a23355e8c6864999689a6204a90c2c"><code>f20fb8e</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/498">#498</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Add support for some popular transformer plugins (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/501">#501</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Resolve remark plugins synchronously (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/500">#500</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Drop support for Node.js 18 (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/499">#499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.2/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-mdx` from 3.1.5 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/eslint-mdx/releases">eslint-plugin-mdx's releases</a>.</em></p> <blockquote> <h2>eslint-plugin-mdx@3.6.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: set <code>processor</code> for flat config</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: prefer <code>context.languageOptions.parserOptions</code> over <code>context.parserOptions</code></p> </li> <li> <p>Updated dependencies []:</p> <ul> <li>eslint-mdx@3.6.2</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/591">#591</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a>]:</p> <ul> <li>eslint-mdx@3.6.1</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/589">#589</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support specifying <code>remarkConfigPath</code> manually</li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a>]: <ul> <li>eslint-mdx@3.6.0</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.5.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/580">#580</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a> and <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - refactor: target <code>ES2022</code> and drop unnecessary <code>tslib</code> dependency</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/583">#583</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/8c9ef4beecd864a5083700021284af3a975681a1"><code>8c9ef4b</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: use unified <code>performSyncWork</code> for parsing with remark config</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a>]:</p> <ul> <li>eslint-mdx@3.5.0</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0">https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0</a></p> <h2>eslint-plugin-mdx@3.4.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/577">#577</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: remove buggy <code>module-sync</code> entry</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a>]:</p> <ul> <li>eslint-mdx@3.4.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/db21842185f6386e0b14d8d5572d451e474402f3"><code>db21842</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/594">#594</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> fix: set processor for flat config, prefer `context.languageOptions.parserOpt...</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2d7793710a64ea14ea90af65f97dbe7a38e8aafc"><code>2d77937</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/592">#592</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code> (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/591">#591</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/51f359c5152ced8bb2450eb840d705a49e47821b"><code>51f359c</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/590">#590</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> feat: support specifying <code>remarkConfigPath</code> manually (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/589">#589</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a51a0270bbf5a7769ba6509081ce3e1f34643b64"><code>a51a027</code></a> docs: remove blue underline from README.md (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/588">#588</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2fd7907d17cc39a46eb8283a6f50102ac57c95a0"><code>2fd7907</code></a> docs: update funding info (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/587">#587</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/c10165e4f62cfa2261250783c632bf36bb55bc89"><code>c10165e</code></a> chore: bump all (dev)Dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/586">#586</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/6623c9b56f9d82593fbc6fcedc91edf57d3d9a25"><code>6623c9b</code></a> chore(deps): update all dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/585">#585</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.1.5...eslint-plugin-mdx@3.6.2">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:53:59 +00:00
"typescript-eslint": "^8.43.0",
Bump vite from 6.3.5 to 6.3.6 (#2331) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.5 to 6.3.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v6.3.6</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->6.3.6 (2025-09-08)<!-- raw HTML omitted --></h2> <ul> <li>fix: apply <code>fs.strict</code> check to HTML files (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736">#20736</a>) (<a href="https://github.com/vitejs/vite/commit/0ab19ea9fcb66f544328f442cf6e70f7c0528d5f">0ab19ea</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20736">#20736</a></li> <li>fix: upgrade sirv to 3.0.2 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735">#20735</a>) (<a href="https://github.com/vitejs/vite/commit/e11d24008b97d4ca731ecc1a3b95260a6d12e7e0">e11d240</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20735">#20735</a></li> <li>test: detect ts support via <code>process.features</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20544">#20544</a>) (<a href="https://github.com/vitejs/vite/commit/7d9922972b62329d37a71d4da5a4a382d0bf8a79">7d99229</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/20544">#20544</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/3f337c5e24504e51188d29c970de1416ee523dbb"><code>3f337c5</code></a> release: v6.3.6</li> <li><a href="https://github.com/vitejs/vite/commit/e11d24008b97d4ca731ecc1a3b95260a6d12e7e0"><code>e11d240</code></a> fix: upgrade sirv to 3.0.2 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20735">#20735</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/0ab19ea9fcb66f544328f442cf6e70f7c0528d5f"><code>0ab19ea</code></a> fix: apply <code>fs.strict</code> check to HTML files (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20736">#20736</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/7d9922972b62329d37a71d4da5a4a382d0bf8a79"><code>7d99229</code></a> test: detect ts support via <code>process.features</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20544">#20544</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v6.3.6/packages/vite">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=6.3.5&new-version=6.3.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/wavetermdev/waveterm/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:31:28 +00:00
"vite": "^6.3.6",
2025-08-19 17:19:15 +00:00
"vite-plugin-image-optimizer": "^2.0.2",
Bump vite-plugin-static-copy from 3.1.1 to 3.1.2 (#2274) Bumps [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) from 3.1.1 to 3.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sapphi-red/vite-plugin-static-copy/releases">vite-plugin-static-copy's releases</a>.</em></p> <blockquote> <h2>vite-plugin-static-copy@3.1.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/195">#195</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/0bc6b49ed72b46eecfc9682045f4b46a19694969"><code>0bc6b49</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Files not included in <code>src</code> was possible to acess with a crafted request. See <a href="https://github.com/sapphi-red/vite-plugin-static-copy/security/advisories/GHSA-pp7p-q8fx-2968">GHSA-pp7p-q8fx-2968</a> for more details.</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md">vite-plugin-static-copy's changelog</a>.</em></p> <blockquote> <h2>3.1.2</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/195">#195</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/0bc6b49ed72b46eecfc9682045f4b46a19694969"><code>0bc6b49</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Files not included in <code>src</code> was possible to acess with a crafted request. See <a href="https://github.com/sapphi-red/vite-plugin-static-copy/security/advisories/GHSA-pp7p-q8fx-2968">GHSA-pp7p-q8fx-2968</a> for more details.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/edab809c0188ed66787b8f20ca8d2a2c394a500d"><code>edab809</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/196">#196</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/0bc6b49ed72b46eecfc9682045f4b46a19694969"><code>0bc6b49</code></a> fix: only serve files under <code>src</code> (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/195">#195</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/14895079087ea926826baf62cabb4ec31cbe758a"><code>1489507</code></a> ci: run release against <code>v*</code> branches</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/5cfb90c38ec0d63cbdc93b9619bafe222a90d2aa"><code>5cfb90c</code></a> docs: Add DEBUG section to README for vite:plugin-static-copy logging (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/192">#192</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/a80b1089e37d95fbf3d38208b13758cb073af055"><code>a80b108</code></a> test: use previewServer.close</li> <li>See full diff in <a href="https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@3.1.1...vite-plugin-static-copy@3.1.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite-plugin-static-copy&package-manager=npm_and_yarn&previous-version=3.1.1&new-version=3.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/wavetermdev/waveterm/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 18:01:22 +00:00
"vite-plugin-static-copy": "^3.1.2",
Bump the dev-dependencies-minor group across 1 directory with 9 updates (#2291) Bumps the dev-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.8` | `7.7.0` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.14` | `8.18.1` | | [node-abi](https://github.com/electron/node-abi) | `4.6.0` | `4.12.0` | | [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.6.2` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.1.0` | `4.2.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.41.0` | | [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.8` | `0.1.2` | | [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.1.5` | `3.6.2` | Updates `@types/semver` from 7.5.8 to 7.7.0 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver">compare view</a></li> </ul> </details> <br /> Updates `@types/ws` from 8.5.14 to 8.18.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws">compare view</a></li> </ul> </details> <br /> Updates `node-abi` from 4.6.0 to 4.12.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/node-abi/releases">node-abi's releases</a>.</em></p> <blockquote> <h2>v4.12.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.11.0...v4.12.0">4.12.0</a> (2025-06-30)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b">c4babcb</a>)</li> </ul> <h2>v4.11.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.10.0...v4.11.0">4.11.0</a> (2025-06-25)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b">dc87bac</a>)</li> </ul> <h2>v4.10.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.9.0...v4.10.0">4.10.0</a> (2025-06-24)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48">34a63fa</a>)</li> </ul> <h2>v4.9.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.8.0...v4.9.0">4.9.0</a> (2025-05-21)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2">63bae36</a>)</li> </ul> <h2>v4.8.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.7.0...v4.8.0">4.8.0</a> (2025-05-06)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3">f68e336</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/c4babcba0fd1a808019327cbda0c544eed50f76b"><code>c4babcb</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/dc87bac4e3d4ad540cbad5642ce9db937a07019b"><code>dc87bac</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/34a63fabd9c05be5e751b19a21e69f09ea79fb48"><code>34a63fa</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/77272e8f59be274a56c5c35830855a3dad87d561"><code>77272e8</code></a> ci: restrict auto-update to Monday-Friday (<a href="https://redirect.github.com/electron/node-abi/issues/209">#209</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/63bae363574b4349f3cce08554a07d93a6249be2"><code>63bae36</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/9a0b80b0150172b62772d1521e63fda56e645970"><code>9a0b80b</code></a> ci: timeout release job after 1 hour (<a href="https://redirect.github.com/electron/node-abi/issues/207">#207</a>)</li> <li><a href="https://github.com/electron/node-abi/commit/f68e336d5afa2e436c770f8ff10a37eae0a6bca3"><code>f68e336</code></a> feat: update ABI registry</li> <li><a href="https://github.com/electron/node-abi/commit/810f4896a6d1a52855b0b8968f0715f3ab7efc81"><code>810f489</code></a> feat: update ABI registry</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.6.0...v4.12.0">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.4.2 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> <h2>3.6.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.5.3...3.6.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/06/23/3.6.0">Release note &quot;Prettier 3.6: Experimental fast CLI and new OXC and Hermes plugins!&quot;</a></p> <h2>3.5.3</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#353">Changelog</a></p> <h2>3.5.2</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#352">Changelog</a></p> <h2>3.5.1</h2> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#351">Changelog</a></p> <h2>3.5.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.4.2...3.5.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/02/09/3.5.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.6.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.1...3.6.2">diff</a></p> <h4>Markdown: Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/pull/17675">#17675</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="md"><code>&lt;!-- Input --&gt; 1. Some text, and code block below, with newline after code block <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> <p>&lt;!-- Prettier 3.6.1 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List</li> </ol> </li> </ol> <p>&lt;!-- Prettier 3.6.2 --&gt;</p> <ol> <li> <p>Some text, and code block below, with newline after code block</p> <pre lang="yaml"><code>--- foo: bar </code></pre> <ol> <li>Another</li> <li>List<br /> </code></pre></li> </ol> </li> </ol> <h1>3.6.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.6.0...3.6.1">diff</a></p> <h4>TypeScript: Allow const without initializer (<a href="https://redirect.github.com/prettier/prettier/pull/17650">#17650</a>, <a href="https://redirect.github.com/prettier/prettier/pull/17654">#17654</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input &lt;/tr&gt;&lt;/table&gt; </code></pre> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7a8b05f41574633fd3af5298f3eeaf33567ad3d3"><code>7a8b05f</code></a> Release 3.6.2</li> <li><a href="https://github.com/prettier/prettier/commit/46526b49b6315914b9229be412c1557ce59f8dbf"><code>46526b4</code></a> Add missing blank line around code block (<a href="https://redirect.github.com/prettier/prettier/issues/17675">#17675</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/a04ec1196f9c3efe2312b10c2f0d02903c9de5e7"><code>a04ec11</code></a> chore(deps): update babel to v7.27.7 (<a href="https://redirect.github.com/prettier/prettier/issues/17684">#17684</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/32be5b6b44314579f3dcc838f26b03ce47938acb"><code>32be5b6</code></a> chore(deps): update dependency flow-parser to v0.274.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17676">#17676</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b55e777924538b69c564abea51a42e33597910b9"><code>b55e777</code></a> Update docs about &quot;TypeScript Configuration Files&quot; (<a href="https://redirect.github.com/prettier/prettier/issues/17677">#17677</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/b197c99224b2e068736020bdaa8b2f8a686d4b1e"><code>b197c99</code></a> chore(deps): update dependency <code>@​vitejs/plugin-react</code> to v4.6.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17674">#17674</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1185f8370a7a4c1b038b994e7be32a2413fae12d"><code>1185f83</code></a> chore(deps): update dependency <code>@​angular/compiler</code> to v20.0.5 (<a href="https://redirect.github.com/prettier/prettier/issues/17680">#17680</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/aa1316fa603e25d853e76f69cdc029c19b8d24b9"><code>aa1316f</code></a> chore(deps): update dependency browserslist to v4.25.1 (<a href="https://redirect.github.com/prettier/prettier/issues/17671">#17671</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c468d33f16c665363da86f9275be4b4d9f799dcd"><code>c468d33</code></a> chore(deps): update dependency oxc-parser to v0.75.0 (<a href="https://redirect.github.com/prettier/prettier/issues/17672">#17672</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3f46d91bdb7b2a650f376215fdf884babfc765b7"><code>3f46d91</code></a> chore(deps): update dependency vite to v7 (<a href="https://redirect.github.com/prettier/prettier/issues/17673">#17673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.4.2...3.6.2">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.1.0 to 4.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/releases">prettier-plugin-organize-imports's releases</a>.</em></p> <blockquote> <h2>4.2.0</h2> <ul> <li>fix: use <code>getDefaultCompilerOptions</code> from <code>vue-tsc</code> instead of the deprecated <code>resolveVueCompilerOptions</code> (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb">858cbbe</a>)</li> <li>feat: allow <code>vue-tsc</code> version 3 as peer dependency (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4">c777cd8</a>)</li> <li>chore: update all dev dependencies (<a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3">253d1bf</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/blob/master/changelog.md">prettier-plugin-organize-imports's changelog</a>.</em></p> <blockquote> <p>Version <code>4.2.0</code> switches from using <code>vue-tsc</code>'s deprecated <code>resolveVueCompilerOptions</code> to the new <code>getDefaultCompilerOptions</code> instead, which then also allowed bumping the <code>vue-tsc</code> peer dependency range to include version 3.</p> <p>Version <code>4.1.0</code> bumps the peer dependency range for <code>vue-tsc</code> to <code>^2.1.0</code> because there was a breaking change in its API. If you're using Vue support, upgrade both packages simultaneously, e.g. <code>npm i -D prettier-plugin-organize-imports vue-tsc</code>.</p> <p>Version <code>4.0.0</code> upgrades/replaces the Volar packages used for Vue support, to use the latest <code>vue-tsc</code> package that's part of Volar 2. To migrate, you just have to remove <code>@volar/vue-typescript</code> and if you're using it, also <code>@volar/vue-language-plugin-pug</code>, and replace it with <code>vue-tsc</code> and <code>@vue/language-plugin-pug</code> respectively. There are no breaking changes other than this.</p> <p>Version <code>3.2.4</code> implements a fix to skip when formatting ranges (i.e. if the plugin is requested to format a range, it doesn't do anything because it would lack the full file context).</p> <p>Version <code>3.2.3</code> updates the readme with instructions for Prettier 3.</p> <p>Version <code>3.2.2</code> fixes a performance regression introduced in <code>3.2.0</code>.</p> <p>Version <code>3.2.1</code> fixes the implementation of the language service host's <code>getCurrentDirectory</code> method to return the directory containing the tsconfig, rather than using <code>ts.sys.getCurrentDirectory</code> (which returns <code>process.cwd()</code>). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).</p> <p>Version <code>3.2.0</code> adds and fixes support for pug templates in Vue files (via <code>@volar/vue-language-plugin-pug</code>). Please be aware that you'll need to update your version of the <code>@volar/vue-typescript</code> peer dependency from <code>0.x</code> to <code>1.x</code>.</p> <p>Version <code>3.1.0</code> adds an option to skip destructive code actions like removing unused imports.</p> <p>Version <code>3.0.3</code> fixes a performance regression introduced in <code>3.0.2</code>.</p> <p>Version <code>3.0.2</code> fixes a regression introduced by adding some file-system related methods to the language service host (to fix a bug), which revealed that another method's implementation was incorrect.</p> <p>Version <code>3.0.1</code> bumps the <code>@volar/vue-typescript</code> version to fix more edge cases, e. g. not removing imports when a component is used via kebab-case naming. <code>@volar/vue-typescript</code> is now defined as an optional peer dependency and you'll need to install version <code>0.39</code> or later. Furthermore a fix has been added that should help support more module resolution algorithms.</p> <p>Version <code>3.0.0</code> switches to a different package for Vue support, which fixes some more issues, e. g. support for setup scripts. No breaking changes otherwise.</p> <p>Version <code>2.3.4</code> fixes an issue with Vue v2 files.</p> <p>Version <code>2.3.3</code> fixes a bug where default imports were removed erroneously.</p> <p>Version <code>2.3.1</code> adds debug logs and fixes Vue.js support.</p> <p>Version <code>2.2.0</code> adds a compiler options cache to improve performance.</p> <p>Version <code>2.1.0</code> adds support for Vue.js (<code>.vue</code> files).</p> <p>Version <code>2.0.0</code> adds support for the parsers <code>babel</code> (i. e. JavaScript) and <code>babel-ts</code> which are only available since Prettier v2 (and thus the peer dependency has received a major bump).</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/93df5019c4295cf286bc7c6b3726393b6bbf46a2"><code>93df501</code></a> 4.2.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/253d1bffcba3e20f9893227c6575ce52c8ba1ed3"><code>253d1bf</code></a> chore: update all dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/858cbbea84591dceb33970dbe88cdf367070bbcb"><code>858cbbe</code></a> fix: use <code>getDefaultCompilerOptions</code> from vue-tsc instead of the deprecated `...</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/c777cd8c2a882f8a4eb97288bf975b54afb9f6f4"><code>c777cd8</code></a> feat: allow vue-tsc 3 as peer dependency</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/e79ed64e5ecd05bdd65140b814b37c9a1a360767"><code>e79ed64</code></a> chore(ci): remove <code>check-types</code> step (part of <code>test</code> now)</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.1.0...v4.2.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.39.1 to 8.41.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.41.0</h2> <h2>8.41.0 (2025-08-25)</h2> <h3>🚀 Features</h3> <ul> <li>tighten <code>tsconfigRootDir</code> validation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11463">#11463</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>resolve type error in eslint config (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11500">#11500</a>)</li> <li><strong>deps:</strong> update babel monorepo (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11174">#11174</a>)</li> <li><strong>deps:</strong> update dependency prettier to v3.6.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11496">#11496</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>v8.40.0</h2> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> <li><strong>typescript-estree:</strong> correct range of import assertion with trailing comma (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11478">#11478</a>)</li> <li><strong>utils:</strong> correct <code>calculateConfigForFile</code> return type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11451">#11451</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>Nolan Gajdascz <a href="https://github.com/Gajdascz"><code>@​Gajdascz</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.41.0 (2025-08-25)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> <h2>8.40.0 (2025-08-18)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>typescript-eslint:</strong> export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are compatible with both <code>defineConfig()</code> and <code>tseslint.config()</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11475">#11475</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/31a73361bd6449974c89b78ef77be0d04e77510b"><code>31a7336</code></a> chore(release): publish 8.41.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/60c3b26317578b03bf64d8194488ba948c1b05bb"><code>60c3b26</code></a> chore(release): publish 8.40.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/3426f0dd6f1f89d923720ff1af53b672809e5587"><code>3426f0d</code></a> fix(typescript-eslint): export <code>plugin</code>, <code>parser</code>, and <code>configs</code> that are com...</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pd4d10/vite-plugin-svgr/releases">vite-plugin-svgr's releases</a>.</em></p> <blockquote> <h2>v4.5.0</h2> <p><em>No significant changes</em></p> <h5>    <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.4.0...v4.5.0">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/d1f8887202a6edd119053c665f0679419df70025"><code>d1f8887</code></a> 4.5.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b326999d5a2546227bb4b2d2cdcf6092392f4d11"><code>b326999</code></a> ci: fix npm publish</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/79300b869297ab2063a730f33ec6f7984b8acbe8"><code>79300b8</code></a> 4.4.0</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/b7d3c36dd658a6b8344b82307f36dc3acb0d1479"><code>b7d3c36</code></a> chore: update deps</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/6f9d9af421ec891c1594b5511d4865cea6c8f79a"><code>6f9d9af</code></a> feat: support rolldown-vite via <code>transformWithOxc</code> (<a href="https://redirect.github.com/pd4d10/vite-plugin-svgr/issues/130">#130</a>)</li> <li><a href="https://github.com/pd4d10/vite-plugin-svgr/commit/cef5adead59da0abfc0b81edf4b2022b193e4607"><code>cef5ade</code></a> ci: fix release note</li> <li>See full diff in <a href="https://github.com/pd4d10/vite-plugin-svgr/compare/v4.3.0...v4.5.0">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.8 to 0.1.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/releases"><code>@​mdx-js/typescript-plugin</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/mdx-analyzer/blob/main/packages/typescript-plugin/CHANGELOG.md"><code>@​mdx-js/typescript-plugin</code>'s changelog</a>.</em></p> <blockquote> <h2>0.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/508">#508</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix <code>tsconfig.json</code> diagnostics if only MDX inputs are found</p> </li> <li> <p><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Update Volar dependencies</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.2</li> </ul> </li> </ul> <h2>0.1.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/505">#505</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Replace jiti with native require.</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/507">#507</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Fix organizing imports</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/2e69f9483fc333994f626f25f14655298cf0172a"><code>2e69f94</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.1</li> </ul> </li> </ul> <h2>0.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Make the plugin synchronous</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/499">#499</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Remove support for Node.js 18</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/500">#500</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Use jiti to load ESM synchronously</p> </li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/491">#491</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Enhance support for auto-imports</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/501">#501</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - Add support for <code>recma-export-filepath</code>, <code>rehype-mdx-title</code>, and <code>remark-mdx-frontmatter</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e"><code>8f6c987</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a>, <a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/5c96eaca267bae3a9bb232945cb89e97b4a8a634"><code>5c96eac</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/509">#509</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/456687a032f757ea007fdd6450b2534b74dd0c8d"><code>456687a</code></a> Update Volar dependencies</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/bf880355d603962e803955c2fd504753ba8f6053"><code>bf88035</code></a> Filter diagnostics if only MDX files are found (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/508">#508</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/8e5356ffc503a07522968c74e96770aed7db2169"><code>8e5356f</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/506">#506</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f55d6471224c5df25d7d4a71c5c4806cd06e6859"><code>f55d647</code></a> Replace jiti with require (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/505">#505</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/644bc26c35217fc49cf0e50d2014150ce6d109e2"><code>644bc26</code></a> Update to xo 1</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/f20fb8e182a23355e8c6864999689a6204a90c2c"><code>f20fb8e</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/498">#498</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/9b3b9ce426c614760441f35e27d1f4ddf9f26c80"><code>9b3b9ce</code></a> Add support for some popular transformer plugins (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/501">#501</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6"><code>48d74c8</code></a> Resolve remark plugins synchronously (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/500">#500</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b"><code>d440c79</code></a> Drop support for Node.js 18 (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/499">#499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.2/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-mdx` from 3.1.5 to 3.6.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mdx-js/eslint-mdx/releases">eslint-plugin-mdx's releases</a>.</em></p> <blockquote> <h2>eslint-plugin-mdx@3.6.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: set <code>processor</code> for flat config</p> </li> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/593">#593</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: prefer <code>context.languageOptions.parserOptions</code> over <code>context.parserOptions</code></p> </li> <li> <p>Updated dependencies []:</p> <ul> <li>eslint-mdx@3.6.2</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.1</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/591">#591</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code></p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a>]:</p> <ul> <li>eslint-mdx@3.6.1</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/589">#589</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support specifying <code>remarkConfigPath</code> manually</li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a>]: <ul> <li>eslint-mdx@3.6.0</li> </ul> </li> </ul> <h2>eslint-plugin-mdx@3.5.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/580">#580</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a> Thanks <a href="https://github.com/apps/renovate"><code>@​renovate</code></a> and <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - refactor: target <code>ES2022</code> and drop unnecessary <code>tslib</code> dependency</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/583">#583</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/8c9ef4beecd864a5083700021284af3a975681a1"><code>8c9ef4b</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: use unified <code>performSyncWork</code> for parsing with remark config</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/27da91768c55979f6d65bd6d0226403f05ef5470"><code>27da917</code></a>]:</p> <ul> <li>eslint-mdx@3.5.0</li> </ul> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0">https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.4.2...eslint-plugin-mdx@3.5.0</a></p> <h2>eslint-plugin-mdx@3.4.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/577">#577</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - fix: remove buggy <code>module-sync</code> entry</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/b670ae4b6b8e509d278ab3a90834231666b98609"><code>b670ae4</code></a>]:</p> <ul> <li>eslint-mdx@3.4.2</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/db21842185f6386e0b14d8d5572d451e474402f3"><code>db21842</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/594">#594</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/3e862c7b260b0c2a23fca37ae4654d3a7664ed21"><code>3e862c7</code></a> fix: set processor for flat config, prefer `context.languageOptions.parserOpt...</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2d7793710a64ea14ea90af65f97dbe7a38e8aafc"><code>2d77937</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/592">#592</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a45ee72a71634fbc843596ba36dbc0cc569f0bba"><code>a45ee72</code></a> fix: pass through <code>remarkConfigPath</code> of <code>parserOptions</code> (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/591">#591</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/51f359c5152ced8bb2450eb840d705a49e47821b"><code>51f359c</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/590">#590</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/7b5e7489f59659df7cc8d03b5ed5354e0f8a452e"><code>7b5e748</code></a> feat: support specifying <code>remarkConfigPath</code> manually (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/589">#589</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a51a0270bbf5a7769ba6509081ce3e1f34643b64"><code>a51a027</code></a> docs: remove blue underline from README.md (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/588">#588</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/2fd7907d17cc39a46eb8283a6f50102ac57c95a0"><code>2fd7907</code></a> docs: update funding info (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/587">#587</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/c10165e4f62cfa2261250783c632bf36bb55bc89"><code>c10165e</code></a> chore: bump all (dev)Dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/586">#586</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/6623c9b56f9d82593fbc6fcedc91edf57d3d9a25"><code>6623c9b</code></a> chore(deps): update all dependencies (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/585">#585</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.1.5...eslint-plugin-mdx@3.6.2">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 21:53:59 +00:00
"vite-plugin-svgr": "^4.5.0",
Bump the dev-dependencies group across 1 directory with 6 updates (#1515) Bumps the dev-dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.1` | `22.10.2` | | [@types/prop-types](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prop-types) | `15.7.13` | `15.7.14` | | [sass](https://github.com/sass/dart-sass) | `1.82.0` | `1.83.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.17.0` | `8.18.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.0.2` | `6.0.3` | | [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `5.1.3` | `5.1.4` | Updates `@types/node` from 22.10.1 to 22.10.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare view</a></li> </ul> </details> <br /> Updates `@types/prop-types` from 15.7.13 to 15.7.14 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/prop-types">compare view</a></li> </ul> </details> <br /> Updates `sass` from 1.82.0 to 1.83.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/releases">sass's releases</a>.</em></p> <blockquote> <h2>Dart Sass 1.83.0</h2> <p>To install Sass 1.83.0, download one of the packages below and <a href="https://katiek2.github.io/path-doc/">add it to your PATH</a>, or see <a href="https://sass-lang.com/install">the Sass website</a> for full installation instructions.</p> <h1>Changes</h1> <ul> <li>Allow trailing commas in <em>all</em> argument and parameter lists.</li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1830">full changelog</a> for changes in earlier releases.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md">sass's changelog</a>.</em></p> <blockquote> <h2>1.83.0</h2> <ul> <li>Allow trailing commas in <em>all</em> argument and parameter lists.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/f38dbb00db942592c64a259bdfd9f961316597f6"><code>f38dbb0</code></a> Merge pull request <a href="https://redirect.github.com/sass/dart-sass/issues/2464">#2464</a> from sass/rest-param-comma</li> <li><a href="https://github.com/sass/dart-sass/commit/0230ccf8518064c62c7b68c6808049764390a59c"><code>0230ccf</code></a> Update pkg/sass_api/CHANGELOG.md</li> <li><a href="https://github.com/sass/dart-sass/commit/dd9b106e7e56201948204d648434ad9f515c25fc"><code>dd9b106</code></a> Rename ArgumentInvocation and ArgumentDeclaration</li> <li><a href="https://github.com/sass/dart-sass/commit/c45bc70b39480c35ea61cf05d27444d87cbb5947"><code>c45bc70</code></a> Allow a trailing comma after rest parameters and arguments</li> <li><a href="https://github.com/sass/dart-sass/commit/219fe67817a1efc769e6ff2a80a59e6ac83def9b"><code>219fe67</code></a> Fix static analysis issues for dart 3.6 (<a href="https://redirect.github.com/sass/dart-sass/issues/2462">#2462</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/f9eef8105c898e463b6f661ab82f374616da6f2a"><code>f9eef81</code></a> Fix links to importers in the internal documentation (<a href="https://redirect.github.com/sass/dart-sass/issues/2458">#2458</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/1b3c7de8d3b1789ca8d471a0d75241d356a80097"><code>1b3c7de</code></a> Represent rest parameters as properties on Parameter (<a href="https://redirect.github.com/sass/dart-sass/issues/2454">#2454</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/7a6722cf29cf3675b3bc4ad9ff32a552ecf00dc3"><code>7a6722c</code></a> Fix the declaration of ReturnRule._returnExpression (<a href="https://redirect.github.com/sass/dart-sass/issues/2455">#2455</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/1536dc014637b5676c650e49dcb75a145361fc3b"><code>1536dc0</code></a> Merge pull request <a href="https://redirect.github.com/sass/dart-sass/issues/2453">#2453</a> from sass/return</li> <li><a href="https://github.com/sass/dart-sass/commit/a74f9c301b2ac08c38de7590b6fec7e47caab0aa"><code>a74f9c3</code></a> Enable useDefineForClassFields and fix affected TS files. (<a href="https://redirect.github.com/sass/dart-sass/issues/2447">#2447</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sass/dart-sass/compare/1.82.0...1.83.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.17.0 to 8.18.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.18.0</h2> <h2>8.18.0 (2024-12-09)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> [no-deprecated] report on super call of deprecated constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10397">#10397</a>)</li> <li><strong>eslint-plugin:</strong> [switch-exhaustiveness-check] add support for &quot;no default&quot; comment (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10218">#10218</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>typescript peer dependency (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10373">#10373</a>)</li> <li><strong>deps:</strong> update dependency eslint to v9.16.0 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10471">#10471</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] check if a JSX attribute is deprecated (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10374">#10374</a>)</li> <li><strong>eslint-plugin:</strong> [no-base-to-string] handle more robustly when multiple <code>toString()</code> declarations are present for a type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10432">#10432</a>)</li> <li><strong>eslint-plugin:</strong> [use-unknown-in-catch-callback-variable] only flag function literals (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10436">#10436</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Kim Sang Du <a href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>mdm317</li> <li>rtritto</li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.18.0 (2024-12-09)</h2> <h3>🩹 Fixes</h3> <ul> <li>typescript peer dependency (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10373">#10373</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>rtritto</li> </ul> <p>You can read about our <a href="https://main--typescript-eslint.netlify.app/users/versioning">versioning strategy</a> and <a href="https://main--typescript-eslint.netlify.app/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/c60dbabd8a93e001543de64ec479f62e9725978a"><code>c60dbab</code></a> chore(release): publish 8.18.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/4cb2cf86c3d011fca667c745d43fd8dcd6c9e652"><code>4cb2cf8</code></a> fix: typescript peer dependency (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/10373">#10373</a>)</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite` from 6.0.2 to 6.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v6.0.3</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.0.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->6.0.3 (2024-12-05)<!-- raw HTML omitted --></h2> <ul> <li>fix: handle postcss load unhandled rejections (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18886">#18886</a>) (<a href="https://github.com/vitejs/vite/commit/d5fb653c15903ccf84a093f212da86f0327a9a6f">d5fb653</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18886">#18886</a></li> <li>fix: make handleInvoke interface compatible with invoke (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18876">#18876</a>) (<a href="https://github.com/vitejs/vite/commit/a1dd396da856401a12c921d0cd2c4e97cb63f1b5">a1dd396</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18876">#18876</a></li> <li>fix: make result interfaces for <code>ModuleRunnerTransport#invoke</code> more explicit (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18851">#18851</a>) (<a href="https://github.com/vitejs/vite/commit/a75fc3193d5e8d8756dfb3a046873e9c222bb6c8">a75fc31</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18851">#18851</a></li> <li>fix: merge <code>environments.ssr.resolve</code> with root <code>ssr</code> config (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18857">#18857</a>) (<a href="https://github.com/vitejs/vite/commit/310433106e1e8a0c39dc397e3eace8a71a2416c2">3104331</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18857">#18857</a></li> <li>fix: no permission to create vite config file (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18844">#18844</a>) (<a href="https://github.com/vitejs/vite/commit/ff47778004d609dbeef7f192783e6f253dd66237">ff47778</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18844">#18844</a></li> <li>fix: remove CSS import in CJS correctly in some cases (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18885">#18885</a>) (<a href="https://github.com/vitejs/vite/commit/690a36ffdb7d6f6568f35a304b4904e7aa475f17">690a36f</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18885">#18885</a></li> <li>fix(config): bundle files referenced with imports field (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18887">#18887</a>) (<a href="https://github.com/vitejs/vite/commit/2b5926a0e79ce47d22536d38eed2629d326caca0">2b5926a</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18887">#18887</a></li> <li>fix(config): make stacktrace path correct when sourcemap is enabled (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18833">#18833</a>) (<a href="https://github.com/vitejs/vite/commit/20fdf210ee0ac0824b2db74876527cb7f378a9e8">20fdf21</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18833">#18833</a></li> <li>fix(css): rewrite url when image-set and url exist at the same time (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18868">#18868</a>) (<a href="https://github.com/vitejs/vite/commit/d59efd8dfd1c5bf2e7c45c7cdb1c0abc2a05ba02">d59efd8</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18868">#18868</a></li> <li>fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18853">#18853</a>) (<a href="https://github.com/vitejs/vite/commit/5c0223636fa277d5daeb4d93c3f32d9f3cd69fc5">5c02236</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18853">#18853</a></li> <li>fix(html): allow unexpected question mark in tag name (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18852">#18852</a>) (<a href="https://github.com/vitejs/vite/commit/1b54e506a44420d0c8a9e000cf45b1c4f5e33026">1b54e50</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18852">#18852</a></li> <li>fix(module-runner): decode uri for file url passed to import (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18837">#18837</a>) (<a href="https://github.com/vitejs/vite/commit/88e49aa0418cb3f6b579b744ba59daeda68432f3">88e49aa</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18837">#18837</a></li> <li>refactor: fix logic errors found by no-unnecessary-condition rule (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18891">#18891</a>) (<a href="https://github.com/vitejs/vite/commit/ea802f8f8bcf3771a35c1eaf687378613fbabb24">ea802f8</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18891">#18891</a></li> <li>chore: fix duplicate attributes issue number in comment (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18860">#18860</a>) (<a href="https://github.com/vitejs/vite/commit/ffee61893cfe9f2b0db4aecf9ddb62ca79c80458">ffee618</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18860">#18860</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/7a0758cbbc825717851962d4e6f82e369b8e800b"><code>7a0758c</code></a> release: v6.0.3</li> <li><a href="https://github.com/vitejs/vite/commit/a1dd396da856401a12c921d0cd2c4e97cb63f1b5"><code>a1dd396</code></a> fix: make handleInvoke interface compatible with invoke (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18876">#18876</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/ea802f8f8bcf3771a35c1eaf687378613fbabb24"><code>ea802f8</code></a> refactor: fix logic errors found by no-unnecessary-condition rule (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18891">#18891</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/690a36ffdb7d6f6568f35a304b4904e7aa475f17"><code>690a36f</code></a> fix: remove CSS import in CJS correctly in some cases (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18885">#18885</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/d5fb653c15903ccf84a093f212da86f0327a9a6f"><code>d5fb653</code></a> fix: handle postcss load unhandled rejections (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18886">#18886</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/2b5926a0e79ce47d22536d38eed2629d326caca0"><code>2b5926a</code></a> fix(config): bundle files referenced with imports field (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18887">#18887</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/1b54e506a44420d0c8a9e000cf45b1c4f5e33026"><code>1b54e50</code></a> fix(html): allow unexpected question mark in tag name (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18852">#18852</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/d59efd8dfd1c5bf2e7c45c7cdb1c0abc2a05ba02"><code>d59efd8</code></a> fix(css): rewrite url when image-set and url exist at the same time (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18868">#18868</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/20fdf210ee0ac0824b2db74876527cb7f378a9e8"><code>20fdf21</code></a> fix(config): make stacktrace path correct when sourcemap is enabled (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18833">#18833</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/88e49aa0418cb3f6b579b744ba59daeda68432f3"><code>88e49aa</code></a> fix(module-runner): decode uri for file url passed to import (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18837">#18837</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v6.0.3/packages/vite">compare view</a></li> </ul> </details> <br /> Updates `vite-tsconfig-paths` from 5.1.3 to 5.1.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aleclarson/vite-tsconfig-paths/releases">vite-tsconfig-paths's releases</a>.</em></p> <blockquote> <h2>v5.1.4</h2> <ul> <li><strong>fix:</strong> correctly infer the <code>paths</code> root dir (eea1c17d0fe4ad6e3f8bc324216bc09173e3c778) (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/150">#150</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/f58afbc7ec75826c5034078007d143243dbab4c7"><code>f58afbc</code></a> 5.1.4</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/ece58bf988e1a6de0b568103157da734bdfec3e6"><code>ece58bf</code></a> chore: upgrade typescript</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/593a611dcef7fbb9cd8e5d34e7b5538019f5575b"><code>593a611</code></a> fix: ensure <code>parseNative</code> result is correctly handled</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/eea1c17d0fe4ad6e3f8bc324216bc09173e3c778"><code>eea1c17</code></a> fix: correctly infer the <code>paths</code> root dir</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/34cb651fab6ad273b80b2cbbb11f18fbd5d0131b"><code>34cb651</code></a> test: add case for resolving <code>paths</code> from an extended tsconfig (<a href="https://redirect.github.com/aleclarson/vite-tsconfig-paths/issues/166">#166</a>)</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/2d187b9a455f1042ce0e4c4d8e8e75f3bbe57b92"><code>2d187b9</code></a> chore: upgrade vite &amp; vitest</li> <li><a href="https://github.com/aleclarson/vite-tsconfig-paths/commit/a5bb13e9e2538ba4a6371dd935f3a6208d951f63"><code>a5bb13e</code></a> chore: stop using yarn in package.json scripts</li> <li>See full diff in <a href="https://github.com/aleclarson/vite-tsconfig-paths/compare/v5.1.3...v5.1.4">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-16 21:27:58 +00:00
"vite-tsconfig-paths": "^5.1.4",
2025-08-15 16:36:54 +00:00
"vitest": "^3.0.9"
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
},
"dependencies": {
Bump @floating-ui/react from 0.27.15 to 0.27.16 in the prod-dependencies-patch group (#2282) Bumps the prod-dependencies-patch group with 1 update: [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react). Updates `@floating-ui/react` from 0.27.15 to 0.27.16 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.16</h2> <h3>Patch Changes</h3> <ul> <li>Update dependencies: <code>@floating-ui/react-dom@2.1.6</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.27.16</h2> <h3>Patch Changes</h3> <ul> <li>Update dependencies: <code>@floating-ui/react-dom@2.1.6</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/7c33a3d0198a9b523d54ae2c37cedb315a309452"><code>7c33a3d</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3388">#3388</a>)</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.16/packages/react">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@floating-ui/react&package-manager=npm_and_yarn&previous-version=0.27.15&new-version=0.27.16)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 04:22:02 +00:00
"@floating-ui/react": "^0.27.16",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"@monaco-editor/loader": "^1.5.0",
"@monaco-editor/react": "^4.7.0",
"@observablehq/plot": "^0.6.17",
2025-08-15 16:36:54 +00:00
"@radix-ui/react-label": "^2.1.7",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"@radix-ui/react-slot": "^1.2.3",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@react-hook/resize-observer": "^2.0.2",
"@table-nav/core": "^0.0.7",
"@table-nav/react": "^0.0.7",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"@tanstack/react-table": "^8.21.3",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"@xterm/addon-serialize": "^0.13.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"base64-js": "^1.5.1",
"class-variance-authority": "^0.7.1",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"clsx": "^2.1.1",
"color": "^4.2.3",
"colord": "^2.9.3",
Bump the prod-dependencies-minor group with 6 updates (#1888) Bumps the prod-dependencies-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.28` | `0.27.3` | | [css-tree](https://github.com/csstree/csstree) | `3.0.1` | `3.1.0` | | [debug](https://github.com/debug-js/debug) | `4.3.7` | `4.4.0` | | [papaparse](https://github.com/mholt/PapaParse) | `5.4.1` | `5.5.2` | | [react-zoom-pan-pinch](https://github.com/prc5/react-zoom-pan-pinch) | `3.6.1` | `3.7.0` | | [yaml](https://github.com/eemeli/yaml) | `2.6.1` | `2.7.0` | Updates `@floating-ui/react` from 0.26.28 to 0.27.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2>0.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2>0.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2>0.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/b0dfb58949567209fcdca994ff12848942a85ce4"><code>b0dfb58</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3187">#3187</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/1fa2c50ae5a4175e82f77d69a2955ca45e15f30d"><code>1fa2c50</code></a> chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3177">#3177</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/69b5f888400f7cf1f3157da9ca9fabfd438ff736"><code>69b5f88</code></a> feat(FloatingFocusManager): accept <code>FloatingRootContext</code> (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3182">#3182</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/b6d88be59173af9da75b0f632a6a50c9c5b28244"><code>b6d88be</code></a> fix(useListNavigation): check for virtual pointer on pointerenter (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3184">#3184</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/568eab7e1b8fc4a4533d462b0ddbc865020c8645"><code>568eab7</code></a> refactor: use jsx runtime (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3186">#3186</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/6a9f75821398f71bd3d3c644af41d40d06367544"><code>6a9f758</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3165">#3165</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c9f19ecec22dca1e453918b298d9280de84cff84"><code>c9f19ec</code></a> fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes fro...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/33bd900c70a8b306671c9187607b7aa74a708407"><code>33bd900</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3158">#3158</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/e24b4fbcdb56fc05353355afe35f404af2653cff"><code>e24b4fb</code></a> fix(FloatingFocusManager): avoid marking tree ancestor floating nodes when `m...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c728afa590c81832e374e7c6558fa5d90035205e"><code>c728afa</code></a> fix(FloatingFocusManager): check for floating focus root element (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3159">#3159</a>)</li> <li>Additional commits viewable in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.3/packages/react">compare view</a></li> </ul> </details> <br /> Updates `css-tree` from 3.0.1 to 3.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/releases">css-tree's releases</a>.</em></p> <blockquote> <h2>3.1.0</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of <a href="https://drafts.csswg.org/css-values-5/">CSS Values and Units L5</a>.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/blob/master/CHANGELOG.md">css-tree's changelog</a>.</em></p> <blockquote> <h2>3.1.0 (December 6, 2024)</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of CSS Values and Units Module Level 5.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csstree/csstree/commit/354254f7859bd9cd22c762fc8fada73a74bf2947"><code>354254f</code></a> 3.1.0</li> <li><a href="https://github.com/csstree/csstree/commit/3e0b93b0549e3760745552f351b13b579c944f56"><code>3e0b93b</code></a> Fix <code>TokenStream#balance</code> computation and</li> <li><a href="https://github.com/csstree/csstree/commit/6b24dcc26d93f827d244c64e75bb9b6c341632bf"><code>6b24dcc</code></a> Fix npm audit warning</li> <li><a href="https://github.com/csstree/csstree/commit/758ccf774f41fa9c6c501cbe18b3e2db02a0cdf5"><code>758ccf7</code></a> Fix location of &lt;layer-name&gt; (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/7cfec03270088f42ee40db1c744e00efe2bc219e"><code>7cfec03</code></a> Bump esbuild to ^0.24.0</li> <li><a href="https://github.com/csstree/csstree/commit/eab1c8e7819786d0ec53a744271c3b90fb0b5659"><code>eab1c8e</code></a> Add <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to `Of...</li> <li><a href="https://github.com/csstree/csstree/commit/ab29676545277c8315077f506e53fedd6920ad00"><code>ab29676</code></a> Expose OffsetToLocation in main entry point</li> <li><a href="https://github.com/csstree/csstree/commit/0afee3d88916a2860b48144537027cfb2f48c080"><code>0afee3d</code></a> Update mdn-data to v2.12.2 (<a href="https://redirect.github.com/csstree/csstree/issues/306">#306</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/2c95a514f4680b52012e5477a21cf6c28a6cf0e3"><code>2c95a51</code></a> Add lexer can check at-rules syntax</li> <li><a href="https://github.com/csstree/csstree/commit/511bed50f1d9d66b49aabd3e03d7ec2596dd18a7"><code>511bed5</code></a> Rename &lt;boolean[]&gt; into &lt;boolean-expr[]&gt; (fixes <a href="https://redirect.github.com/csstree/csstree/issues/307">#307</a>)</li> <li>Additional commits viewable in <a href="https://github.com/csstree/csstree/compare/v3.0.1...v3.1.0">compare view</a></li> </ul> </details> <br /> Updates `debug` from 4.3.7 to 4.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/debug-js/debug/releases">debug's releases</a>.</em></p> <blockquote> <h2>4.4.0</h2> <p>Fixes (hopefully) the inefficient regex warnings in <code>.enable()</code>.</p> <p>Minor version as this is invariably going to break certain users who misuse the <code>.enable()</code> API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">https://github.com/debug-js/debug/compare/4.3.7...4.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/debug-js/debug/commit/7e3814cc603bf64fdd69e714e0cf5611ec31f43b"><code>7e3814c</code></a> 4.4.0</li> <li><a href="https://github.com/debug-js/debug/commit/d2d6bf0bab3a0eeeb3a9ce7113cb0a31d8da678f"><code>d2d6bf0</code></a> fix inefficient .enable() regex and .enabled() test</li> <li>See full diff in <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">compare view</a></li> </ul> </details> <br /> Updates `papaparse` from 5.4.1 to 5.5.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mholt/PapaParse/commits">compare view</a></li> </ul> </details> <br /> Updates `react-zoom-pan-pinch` from 3.6.1 to 3.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prc5/react-zoom-pan-pinch/releases">react-zoom-pan-pinch's releases</a>.</em></p> <blockquote> <h2>v3.7.0</h2> <h1><a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">3.7.0</a> (2025-01-31)</h1> <h3>Bug Fixes</h3> <ul> <li>🐛 lint (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27">ab348dc</a>)</li> <li>Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c">3643a47</a>)</li> <li>Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289">5cf057b</a>)</li> <li>zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345">d770efb</a>)</li> </ul> <h3>Features</h3> <ul> <li>Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0">800beb1</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/68616a3a02d26bcf7444eab8c1abadf64bc2c730"><code>68616a3</code></a> test: 💍 resize observer polyfill</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27"><code>ab348dc</code></a> fix: 🐛 lint</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345"><code>d770efb</code></a> fix: zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289"><code>5cf057b</code></a> fix: Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c"><code>3643a47</code></a> fix: Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0"><code>800beb1</code></a> feat: Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>)</li> <li>See full diff in <a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">compare view</a></li> </ul> </details> <br /> Updates `yaml` from 2.6.1 to 2.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.7.0</h2> <p>The library is now available on JSR as <a href="https://jsr.io/@eemeli/yaml"><code>@​eemeli/yaml</code></a> and on deno.land/x as <a href="https://deno.land/x/yaml">yaml</a>. In addition to Node.js and browsers, it should work in Deno, Bun, and Cloudflare Workers.</p> <ul> <li>Use .ts extension in all relative imports (<a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a>)</li> <li>Ignore newline after block seq indicator as space before value (<a href="https://redirect.github.com/eemeli/yaml/issues/590">#590</a>)</li> <li>Require Node.js 14.18 or later (was 14.6) (<a href="https://redirect.github.com/eemeli/yaml/issues/598">#598</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/8f512b526a52e245e770be257235f7d37059ca39"><code>8f512b5</code></a> 2.7.0</li> <li><a href="https://github.com/eemeli/yaml/commit/8a7569afff1a7add4560ed2e125eebab1f9683f1"><code>8a7569a</code></a> ci: Add jsr.jsonc &amp; jsr-publish workflow</li> <li><a href="https://github.com/eemeli/yaml/commit/8ef085fa870f2b749e67ce52bb642afb796b7150"><code>8ef085f</code></a> docs: Fix API docs links</li> <li><a href="https://github.com/eemeli/yaml/commit/374c19cfdc051ca81c5a1ce12ca733c2e2a9ec93"><code>374c19c</code></a> style: Really use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/1ab037d64674baf0265dfe6a57c5b3c8c2d5120a"><code>1ab037d</code></a> style: Include explicit type declarations on all public APIs</li> <li><a href="https://github.com/eemeli/yaml/commit/4354c4233d7f75aed47a6d0ab74ab54867892b61"><code>4354c42</code></a> style: Use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/2c55723ab9f1d654d27deb2ed666d1c414a69013"><code>2c55723</code></a> Merge pull request <a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a> from eemeli/import-ts</li> <li><a href="https://github.com/eemeli/yaml/commit/ab240c17d35bb808a6df8e3039b9ddd6a2de7ac4"><code>ab240c1</code></a> fix: Drop .ts extension from import &amp; export paths in .d.ts files</li> <li><a href="https://github.com/eemeli/yaml/commit/c4c49f9e95db811a6fe7fd529647cb2659f150d0"><code>c4c49f9</code></a> fix: Use separate rather than inline type keyword for TS compatibility</li> <li><a href="https://github.com/eemeli/yaml/commit/3bec004db4206ebb0d4551f981a7f9961077470b"><code>3bec004</code></a> ci: Add deno smoke test</li> <li>Additional commits viewable in <a href="https://github.com/eemeli/yaml/compare/v2.6.1...v2.7.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-31 21:50:36 +00:00
"css-tree": "^3.1.0",
Bump dayjs from 1.11.13 to 1.11.15 in the prod-dependencies-patch group (#2303) Bumps the prod-dependencies-patch group with 1 update: [dayjs](https://github.com/iamkun/dayjs). Updates `dayjs` from 1.11.13 to 1.11.15 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/iamkun/dayjs/releases">dayjs's releases</a>.</em></p> <blockquote> <h2>v1.11.15</h2> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.14...v1.11.15">1.11.15</a> (2025-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>Fix misspellings in Irish or Irish Gaelic [ga] (<a href="https://redirect.github.com/iamkun/dayjs/issues/2861">#2861</a>) (<a href="https://github.com/iamkun/dayjs/commit/9c14a4245a8e764ee3260ff17a7ff48dfd09d279">9c14a42</a>)</li> </ul> <h2>v1.11.14</h2> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.13...v1.11.14">1.11.14</a> (2025-08-27)</h2> <h3>Bug Fixes</h3> <ul> <li>.utcOffset(0, true) result and its clone are different bug (<a href="https://redirect.github.com/iamkun/dayjs/issues/2505">#2505</a>) (<a href="https://github.com/iamkun/dayjs/commit/fefdcd4b6b807786f65139b6dd801e0014d7dc6f">fefdcd4</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md">dayjs's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.14...v1.11.15">1.11.15</a> (2025-08-28)</h2> <h3>Bug Fixes</h3> <ul> <li>Fix misspellings in Irish or Irish Gaelic [ga] (<a href="https://redirect.github.com/iamkun/dayjs/issues/2861">#2861</a>) (<a href="https://github.com/iamkun/dayjs/commit/9c14a4245a8e764ee3260ff17a7ff48dfd09d279">9c14a42</a>)</li> </ul> <h2><a href="https://github.com/iamkun/dayjs/compare/v1.11.13...v1.11.14">1.11.14</a> (2025-08-27)</h2> <h3>Bug Fixes</h3> <ul> <li>.utcOffset(0, true) result and its clone are different bug (<a href="https://redirect.github.com/iamkun/dayjs/issues/2505">#2505</a>) (<a href="https://github.com/iamkun/dayjs/commit/fefdcd4b6b807786f65139b6dd801e0014d7dc6f">fefdcd4</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/iamkun/dayjs/commit/edd6fff2860542c5905ff4ff6ee2b0b4b16a799b"><code>edd6fff</code></a> chore(release): 1.11.15 [skip ci]</li> <li><a href="https://github.com/iamkun/dayjs/commit/d97dba6c0811f5653b17f34361eacfbd097c7411"><code>d97dba6</code></a> Merge pull request <a href="https://redirect.github.com/iamkun/dayjs/issues/2920">#2920</a> from iamkun/dev</li> <li><a href="https://github.com/iamkun/dayjs/commit/9c14a4245a8e764ee3260ff17a7ff48dfd09d279"><code>9c14a42</code></a> fix: Fix misspellings in Irish or Irish Gaelic [ga] (<a href="https://redirect.github.com/iamkun/dayjs/issues/2861">#2861</a>)</li> <li><a href="https://github.com/iamkun/dayjs/commit/37ecf276ffa8b13011b413152e45539ce9aee592"><code>37ecf27</code></a> chore: update workflows</li> <li><a href="https://github.com/iamkun/dayjs/commit/6ab164503767679d814a3ed1de29b7a0bf69a01f"><code>6ab1645</code></a> chore: update workflows</li> <li><a href="https://github.com/iamkun/dayjs/commit/97c901dfb6de7105008825572f2cbcf6e9df7a61"><code>97c901d</code></a> chore: update workflows</li> <li><a href="https://github.com/iamkun/dayjs/commit/83d9e0c5d7f3be2d829daa17ef5b91028ada5ae1"><code>83d9e0c</code></a> test: update test case (<a href="https://redirect.github.com/iamkun/dayjs/issues/2917">#2917</a>)</li> <li><a href="https://github.com/iamkun/dayjs/commit/b91518181726260e77755581aeabe3c797934bf0"><code>b915181</code></a> test: update test case (<a href="https://redirect.github.com/iamkun/dayjs/issues/2916">#2916</a>)</li> <li><a href="https://github.com/iamkun/dayjs/commit/1a2b2f74b48c626f1e4a27781888fe24f0b187ff"><code>1a2b2f7</code></a> chore: update workflows (<a href="https://redirect.github.com/iamkun/dayjs/issues/2915">#2915</a>)</li> <li><a href="https://github.com/iamkun/dayjs/commit/219bc7a1893addb05b29b2d147d3c42efa493e8d"><code>219bc7a</code></a> chore(release): 1.11.14 [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/iamkun/dayjs/compare/v1.11.13...v1.11.15">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dayjs&package-manager=npm_and_yarn&previous-version=1.11.13&new-version=1.11.15)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 18:21:27 +00:00
"dayjs": "^1.11.15",
2025-08-15 16:36:54 +00:00
"debug": "^4.4.1",
"electron-updater": "^6.6",
"env-paths": "^3.0.0",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"fast-average-color": "^9.5.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"htl": "^0.3.1",
"html-to-image": "^1.11.13",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"immer": "^10.1.1",
"jotai": "2.9.3",
"mermaid": "^11.11.0",
Bump the prod-dependencies-patch group with 4 updates (#1829) Bumps the prod-dependencies-patch group with 4 updates: [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table), [monaco-editor](https://github.com/microsoft/monaco-editor), [react-markdown](https://github.com/remarkjs/react-markdown) and [prism-react-renderer](https://github.com/FormidableLabs/prism-react-renderer). Updates `@tanstack/react-table` from 8.20.5 to 8.20.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.20.6</h2> <p>Version 8.20.6 - 12/13/24, 2:34 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>) (cbcea6a) by Bill Collins</li> </ul> <h3>Chore</h3> <ul> <li>update <code>@​tanstack/config</code> to v0.13.0 (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5731">#5731</a>) (2db4061) by Lachlan Collins</li> </ul> <h3>Docs</h3> <ul> <li>Updated some incomplete docs (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5741">#5741</a>) (6b4d616) by M Hamid</li> <li>Fix label typo in config.json (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5712">#5712</a>) (7fe650d) by Petter Juterud Barhaugen</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.20.6</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.20.6</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/a92ce6a15b4aa490b5397e3ec30592a61a7f3602"><code>a92ce6a</code></a> release: v8.20.6</li> <li><a href="https://github.com/TanStack/table/commit/cbcea6aa50bae617e8257205b6b0ad01d61678e5"><code>cbcea6a</code></a> fix: JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>)</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.20.6/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `monaco-editor` from 0.52.0 to 0.52.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/monaco-editor/releases">monaco-editor's releases</a>.</em></p> <blockquote> <h2>v0.52.2</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/microsoft/monaco-editor/issues/4777">#4777</a>: 0.52.2</li> <li><a href="https://redirect.github.com/microsoft/monaco-editor/issues/4774">#4774</a>: Updates changelog</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=309119&amp;view=logs">auto generated</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md">monaco-editor's changelog</a>.</em></p> <blockquote> <h1>Monaco Editor Changelog</h1> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/monaco-editor/commit/404545bded1df6ffa41ea0af4e8ddb219018c6c1"><code>404545b</code></a> Merge pull request <a href="https://redirect.github.com/microsoft/monaco-editor/issues/4777">#4777</a> from microsoft/hediet/b/embarrassing-rooster</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/478c9fd322945e25d22489ad216ea2643a776539"><code>478c9fd</code></a> 0.52.2</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/95530e51dba64106247d3ddbcf694ae665b979e6"><code>95530e5</code></a> Merge pull request <a href="https://redirect.github.com/microsoft/monaco-editor/issues/4774">#4774</a> from microsoft/hediet/b/subjective-galliform</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/cdcb548662c9056a597122ee4df6fca883837f5e"><code>cdcb548</code></a> Updates changelog</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/f2c9a45d3e472f1faf7d41f45d79050979b0e945"><code>f2c9a45</code></a> Security release</li> <li>See full diff in <a href="https://github.com/microsoft/monaco-editor/compare/v0.52.0...v0.52.2">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~microsoft1es">microsoft1es</a>, a new releaser for monaco-editor since your current version.</p> </details> <br /> Updates `react-markdown` from 9.0.1 to 9.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remarkjs/react-markdown/releases">react-markdown's releases</a>.</em></p> <blockquote> <h2>9.0.3</h2> <p>(same as 9.0.2 but now with d.ts files)</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3">https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3</a></p> <h2>9.0.2</h2> <h4>Types</h4> <ul> <li>b151a90 Fix types for React 19 by <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/879">remarkjs/react-markdown#879</a></li> <li>6962af7 Add declaration maps</li> <li>aa5933b Refactor to use <code>@import</code> to import types by <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/836">remarkjs/react-markdown#836</a></li> </ul> <h4>Miscellaneous</h4> <ul> <li>9eb589e Fix typo in changelog by <a href="https://github.com/NicholasWilsonDEV"><code>@​NicholasWilsonDEV</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/874">remarkjs/react-markdown#874</a></li> <li>515bf19 Fix typo by <a href="https://github.com/deep-lyra"><code>@​deep-lyra</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/868">remarkjs/react-markdown#868</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.2">https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remarkjs/react-markdown/commit/aed001070aae99bc6d1f3bdd8e71974f5c0d5f10"><code>aed0010</code></a> 9.0.3</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/40c097eb6f4b89209bd90cc3338fcaaa957bebaf"><code>40c097e</code></a> 9.0.2</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/2c6ffe8f93871ea8e17d12ec0b6f6e5b0aa49ae2"><code>2c6ffe8</code></a> Refactor <code>.gitignore</code></li> <li><a href="https://github.com/remarkjs/react-markdown/commit/b664ac4459ed5fe2834665976b8864da03d263e9"><code>b664ac4</code></a> Update Actions</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/e68655127bb09402e1d12507e1b2db8fa3c64ff8"><code>e686551</code></a> Update dev-dependencies</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/b151a9028f2ca14d8982de47e70a1db7b7c79a2c"><code>b151a90</code></a> Fix types for React 19</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/27d3949b31beb7aa7a6c0d3d4d34e6fd0965a7d3"><code>27d3949</code></a> Separate all typedefs into their own JSDoc blocks (<a href="https://redirect.github.com/remarkjs/react-markdown/issues/878">#878</a>)</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/9eb589e828445916dfb521117040d8d5420a5e9d"><code>9eb589e</code></a> Fix typo in changelog</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/515bf190a06e2510aa4d09d4c186cfa558b75452"><code>515bf19</code></a> Fix typo</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/a7ca8edfd698d61ebf0ad83bf95cba1a4106f672"><code>a7ca8ed</code></a> Refactor <code>.editorconfig</code></li> <li>Additional commits viewable in <a href="https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.3">compare view</a></li> </ul> </details> <br /> Updates `prism-react-renderer` from 2.4.0 to 2.4.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/FormidableLabs/prism-react-renderer/releases">prism-react-renderer's releases</a>.</em></p> <blockquote> <h2>prism-react-renderer@2.4.1</h2> <p>This release enables support for React Server Components 🚀</p> <h2>What's Changed</h2> <ul> <li>Remove theme dictionary hook by <a href="https://github.com/nlkluth"><code>@​nlkluth</code></a> in <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/nlkluth"><code>@​nlkluth</code></a> made their first contribution in <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1">https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/67c7fbc1cd759fc12142470fc928a6fb3765f5df"><code>67c7fbc</code></a> Merge pull request <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/253">#253</a> from FormidableLabs/changeset-release/master</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/e9dfae6a299030cbd7bb5ffb8a07e4df92f35768"><code>e9dfae6</code></a> Version Packages</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/53c411c5b9952d48efe244d3afb45f4a83a13015"><code>53c411c</code></a> Merge pull request <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/252">#252</a> from FormidableLabs/remove-theme-dictionary-hook</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/3cfe2397c95fa4bdc1ea7904bdd59e28293a1002"><code>3cfe239</code></a> changelog</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/db43793737ad3f0954c07b59c5afd8375b6b0f4e"><code>db43793</code></a> rm useref</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/9a6e47b039f7e87acee335d989cb797bfbe41d91"><code>9a6e47b</code></a> refactor: rm useThemeDictionary</li> <li>See full diff in <a href="https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-27 19:18:01 +00:00
"monaco-editor": "^0.52.2",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"monaco-yaml": "^5.4.0",
Bump the prod-dependencies-minor group with 2 updates (#2307) Bumps the prod-dependencies-minor group with 2 updates: [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) and [sass](https://github.com/sass/dart-sass). Updates `overlayscrollbars` from 2.11.5 to 2.12.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.12.0</h2> <h3>Improvements</h3> <ul> <li>Improve accessibility when the native scrollbars can't be hidden. This can happen when the browser isn't supporting scrollbar styling &amp; the <code>ScrollbarsHidingPlugin</code> is not being used. In this case the custom scrollbars aren't rendered over the native scrollbars anymore. [SimpleBar <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/726">#726</a>](<a href="https://redirect.github.com/Grsmto/simplebar/issues/726">Grsmto/simplebar#726</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/b9ced7887c19a71dbe76b173a2e03cc0d76fb1ce"><code>b9ced78</code></a> v2.12.0</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/5dbe819f0a6c7a2460e516f4ce08e0b4fd378c8a"><code>5dbe819</code></a> fix test</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/505c71ef7fef52c5b9903fa820c966f173b9f2f6"><code>505c71e</code></a> improve accessibility by hiding custom scrollbar when native scrollbars cant ...</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/99c1d975c4345e01f1c7a5b08e9f91e15ba1040f"><code>99c1d97</code></a> Merge branch 'master' of <a href="https://github.com/KingSora/OverlayScrollbars">https://github.com/KingSora/OverlayScrollbars</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/ea0099e5d87c6e367d5ced389ef3eb193f3eb859"><code>ea0099e</code></a> small improvements</li> <li>See full diff in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.12.0/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `sass` from 1.90.0 to 1.91.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/releases">sass's releases</a>.</em></p> <blockquote> <h2>Dart Sass 1.91.0</h2> <p>To install Sass 1.91.0, download one of the packages below and <a href="https://katiek2.github.io/path-doc/">add it to your PATH</a>, or see <a href="https://sass-lang.com/install">the Sass website</a> for full installation instructions.</p> <h1>Changes</h1> <ul> <li> <p><strong>Potentially breaking change:</strong> <code>meta.inspect()</code> (as well as other systems that use it such as <code>@debug</code> and certain error messages) now emits numbers with as high precision as is available instead of rounding to the nearest 1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of <code>meta.inspect()</code>, which is to provide full information about the structure of a Sass value.</p> </li> <li> <p>Passing a rest argument (<code>$arg...</code>) before a positional or named argument when calling a function or mixin is now deprecated. This was always outside the specified syntax, but it was historically treated the same as passing the rest argument at the end of the argument list whether or not that matched the visual order of the arguments.</p> </li> </ul> <p>See the <a href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1910">full changelog</a> for changes in earlier releases.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md">sass's changelog</a>.</em></p> <blockquote> <h2>1.91.0</h2> <ul> <li> <p><strong>Potentially breaking change:</strong> <code>meta.inspect()</code> (as well as other systems that use it such as <code>@debug</code> and certain error messages) now emits numbers with as high precision as is available instead of rounding to the nearest 1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of <code>meta.inspect()</code>, which is to provide full information about the structure of a Sass value.</p> </li> <li> <p>Passing a rest argument (<code>$arg...</code>) before a positional or named argument when calling a function or mixin is now deprecated. This was always outside the specified syntax, but it was historically treated the same as passing the rest argument at the end of the argument list whether or not that matched the visual order of the arguments.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sass/dart-sass/commit/68787090890e03186423f006ba2222853902fdd2"><code>6878709</code></a> Deprecate misplaced rest arguments (<a href="https://redirect.github.com/sass/dart-sass/issues/2623">#2623</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/6607204f2d6df85d7c6ac6150184805c2ee85f6c"><code>6607204</code></a> Use official dart riscv64 docker image (<a href="https://redirect.github.com/sass/dart-sass/issues/2619">#2619</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/1df71a5a6856ade82cc71093bc2f13350f6b7fbb"><code>1df71a5</code></a> Print non-integer number at full precision in inspect mode (<a href="https://redirect.github.com/sass/dart-sass/issues/2615">#2615</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/e0b2a50437acc858c980ea8cb1aac4bff02aed30"><code>e0b2a50</code></a> Bump actions/checkout from 4 to 5 (<a href="https://redirect.github.com/sass/dart-sass/issues/2620">#2620</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/e55398a03829a8a229db84ca4052dfbfd22dcd00"><code>e55398a</code></a> Bump actions/checkout from 4 to 5 in /.github/util/initialize (<a href="https://redirect.github.com/sass/dart-sass/issues/2621">#2621</a>)</li> <li><a href="https://github.com/sass/dart-sass/commit/8f1c24a25f2c3b7198492554ec34db05dfd0ef30"><code>8f1c24a</code></a> Bump expect from 29.7.0 to 30.0.5 in /pkg/sass-parser (<a href="https://redirect.github.com/sass/dart-sass/issues/2611">#2611</a>)</li> <li>See full diff in <a href="https://github.com/sass/dart-sass/compare/1.90.0...1.91.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 18:20:31 +00:00
"overlayscrollbars": "^2.12.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"overlayscrollbars-react": "^0.5.6",
2025-08-15 16:36:54 +00:00
"papaparse": "^5.5.3",
2024-12-17 00:04:07 +00:00
"parse-srcset": "^1.0.2",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"pngjs": "^7.0.0",
2024-11-04 18:04:32 +00:00
"prop-types": "^15.8.1",
"react": "19.1.1",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.1.1",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"react-frame-component": "^5.2.7",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"react-hook-form": "^7.62.0",
Bump the prod-dependencies-patch group with 4 updates (#1829) Bumps the prod-dependencies-patch group with 4 updates: [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table), [monaco-editor](https://github.com/microsoft/monaco-editor), [react-markdown](https://github.com/remarkjs/react-markdown) and [prism-react-renderer](https://github.com/FormidableLabs/prism-react-renderer). Updates `@tanstack/react-table` from 8.20.5 to 8.20.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.20.6</h2> <p>Version 8.20.6 - 12/13/24, 2:34 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>) (cbcea6a) by Bill Collins</li> </ul> <h3>Chore</h3> <ul> <li>update <code>@​tanstack/config</code> to v0.13.0 (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5731">#5731</a>) (2db4061) by Lachlan Collins</li> </ul> <h3>Docs</h3> <ul> <li>Updated some incomplete docs (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5741">#5741</a>) (6b4d616) by M Hamid</li> <li>Fix label typo in config.json (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5712">#5712</a>) (7fe650d) by Petter Juterud Barhaugen</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.20.6</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.20.6</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/a92ce6a15b4aa490b5397e3ec30592a61a7f3602"><code>a92ce6a</code></a> release: v8.20.6</li> <li><a href="https://github.com/TanStack/table/commit/cbcea6aa50bae617e8257205b6b0ad01d61678e5"><code>cbcea6a</code></a> fix: JSX namespace from React (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5830">#5830</a>)</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.20.6/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `monaco-editor` from 0.52.0 to 0.52.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/monaco-editor/releases">monaco-editor's releases</a>.</em></p> <blockquote> <h2>v0.52.2</h2> <h2>Changes:</h2> <ul> <li><a href="https://redirect.github.com/microsoft/monaco-editor/issues/4777">#4777</a>: 0.52.2</li> <li><a href="https://redirect.github.com/microsoft/monaco-editor/issues/4774">#4774</a>: Updates changelog</li> </ul> <p>This list of changes was <a href="https://dev.azure.com/monacotools/Monaco/_build/results?buildId=309119&amp;view=logs">auto generated</a>.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md">monaco-editor's changelog</a>.</em></p> <blockquote> <h1>Monaco Editor Changelog</h1> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/monaco-editor/commit/404545bded1df6ffa41ea0af4e8ddb219018c6c1"><code>404545b</code></a> Merge pull request <a href="https://redirect.github.com/microsoft/monaco-editor/issues/4777">#4777</a> from microsoft/hediet/b/embarrassing-rooster</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/478c9fd322945e25d22489ad216ea2643a776539"><code>478c9fd</code></a> 0.52.2</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/95530e51dba64106247d3ddbcf694ae665b979e6"><code>95530e5</code></a> Merge pull request <a href="https://redirect.github.com/microsoft/monaco-editor/issues/4774">#4774</a> from microsoft/hediet/b/subjective-galliform</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/cdcb548662c9056a597122ee4df6fca883837f5e"><code>cdcb548</code></a> Updates changelog</li> <li><a href="https://github.com/microsoft/monaco-editor/commit/f2c9a45d3e472f1faf7d41f45d79050979b0e945"><code>f2c9a45</code></a> Security release</li> <li>See full diff in <a href="https://github.com/microsoft/monaco-editor/compare/v0.52.0...v0.52.2">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~microsoft1es">microsoft1es</a>, a new releaser for monaco-editor since your current version.</p> </details> <br /> Updates `react-markdown` from 9.0.1 to 9.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remarkjs/react-markdown/releases">react-markdown's releases</a>.</em></p> <blockquote> <h2>9.0.3</h2> <p>(same as 9.0.2 but now with d.ts files)</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3">https://github.com/remarkjs/react-markdown/compare/9.0.2...9.0.3</a></p> <h2>9.0.2</h2> <h4>Types</h4> <ul> <li>b151a90 Fix types for React 19 by <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/879">remarkjs/react-markdown#879</a></li> <li>6962af7 Add declaration maps</li> <li>aa5933b Refactor to use <code>@import</code> to import types by <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/836">remarkjs/react-markdown#836</a></li> </ul> <h4>Miscellaneous</h4> <ul> <li>9eb589e Fix typo in changelog by <a href="https://github.com/NicholasWilsonDEV"><code>@​NicholasWilsonDEV</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/874">remarkjs/react-markdown#874</a></li> <li>515bf19 Fix typo by <a href="https://github.com/deep-lyra"><code>@​deep-lyra</code></a> in <a href="https://redirect.github.com/remarkjs/react-markdown/pull/868">remarkjs/react-markdown#868</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.2">https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remarkjs/react-markdown/commit/aed001070aae99bc6d1f3bdd8e71974f5c0d5f10"><code>aed0010</code></a> 9.0.3</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/40c097eb6f4b89209bd90cc3338fcaaa957bebaf"><code>40c097e</code></a> 9.0.2</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/2c6ffe8f93871ea8e17d12ec0b6f6e5b0aa49ae2"><code>2c6ffe8</code></a> Refactor <code>.gitignore</code></li> <li><a href="https://github.com/remarkjs/react-markdown/commit/b664ac4459ed5fe2834665976b8864da03d263e9"><code>b664ac4</code></a> Update Actions</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/e68655127bb09402e1d12507e1b2db8fa3c64ff8"><code>e686551</code></a> Update dev-dependencies</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/b151a9028f2ca14d8982de47e70a1db7b7c79a2c"><code>b151a90</code></a> Fix types for React 19</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/27d3949b31beb7aa7a6c0d3d4d34e6fd0965a7d3"><code>27d3949</code></a> Separate all typedefs into their own JSDoc blocks (<a href="https://redirect.github.com/remarkjs/react-markdown/issues/878">#878</a>)</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/9eb589e828445916dfb521117040d8d5420a5e9d"><code>9eb589e</code></a> Fix typo in changelog</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/515bf190a06e2510aa4d09d4c186cfa558b75452"><code>515bf19</code></a> Fix typo</li> <li><a href="https://github.com/remarkjs/react-markdown/commit/a7ca8edfd698d61ebf0ad83bf95cba1a4106f672"><code>a7ca8ed</code></a> Refactor <code>.editorconfig</code></li> <li>Additional commits viewable in <a href="https://github.com/remarkjs/react-markdown/compare/9.0.1...9.0.3">compare view</a></li> </ul> </details> <br /> Updates `prism-react-renderer` from 2.4.0 to 2.4.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/FormidableLabs/prism-react-renderer/releases">prism-react-renderer's releases</a>.</em></p> <blockquote> <h2>prism-react-renderer@2.4.1</h2> <p>This release enables support for React Server Components 🚀</p> <h2>What's Changed</h2> <ul> <li>Remove theme dictionary hook by <a href="https://github.com/nlkluth"><code>@​nlkluth</code></a> in <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/nlkluth"><code>@​nlkluth</code></a> made their first contribution in <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/pull/252">FormidableLabs/prism-react-renderer#252</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1">https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/67c7fbc1cd759fc12142470fc928a6fb3765f5df"><code>67c7fbc</code></a> Merge pull request <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/253">#253</a> from FormidableLabs/changeset-release/master</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/e9dfae6a299030cbd7bb5ffb8a07e4df92f35768"><code>e9dfae6</code></a> Version Packages</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/53c411c5b9952d48efe244d3afb45f4a83a13015"><code>53c411c</code></a> Merge pull request <a href="https://redirect.github.com/FormidableLabs/prism-react-renderer/issues/252">#252</a> from FormidableLabs/remove-theme-dictionary-hook</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/3cfe2397c95fa4bdc1ea7904bdd59e28293a1002"><code>3cfe239</code></a> changelog</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/db43793737ad3f0954c07b59c5afd8375b6b0f4e"><code>db43793</code></a> rm useref</li> <li><a href="https://github.com/FormidableLabs/prism-react-renderer/commit/9a6e47b039f7e87acee335d989cb797bfbe41d91"><code>9a6e47b</code></a> refactor: rm useThemeDictionary</li> <li>See full diff in <a href="https://github.com/FormidableLabs/prism-react-renderer/compare/prism-react-renderer@2.4.0...prism-react-renderer@2.4.1">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-27 19:18:01 +00:00
"react-markdown": "^9.0.3",
Bump the prod-dependencies-minor group with 6 updates (#1888) Bumps the prod-dependencies-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.28` | `0.27.3` | | [css-tree](https://github.com/csstree/csstree) | `3.0.1` | `3.1.0` | | [debug](https://github.com/debug-js/debug) | `4.3.7` | `4.4.0` | | [papaparse](https://github.com/mholt/PapaParse) | `5.4.1` | `5.5.2` | | [react-zoom-pan-pinch](https://github.com/prc5/react-zoom-pan-pinch) | `3.6.1` | `3.7.0` | | [yaml](https://github.com/eemeli/yaml) | `2.6.1` | `2.7.0` | Updates `@floating-ui/react` from 0.26.28 to 0.27.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2>0.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2>0.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2>0.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/b0dfb58949567209fcdca994ff12848942a85ce4"><code>b0dfb58</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3187">#3187</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/1fa2c50ae5a4175e82f77d69a2955ca45e15f30d"><code>1fa2c50</code></a> chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3177">#3177</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/69b5f888400f7cf1f3157da9ca9fabfd438ff736"><code>69b5f88</code></a> feat(FloatingFocusManager): accept <code>FloatingRootContext</code> (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3182">#3182</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/b6d88be59173af9da75b0f632a6a50c9c5b28244"><code>b6d88be</code></a> fix(useListNavigation): check for virtual pointer on pointerenter (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3184">#3184</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/568eab7e1b8fc4a4533d462b0ddbc865020c8645"><code>568eab7</code></a> refactor: use jsx runtime (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3186">#3186</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/6a9f75821398f71bd3d3c644af41d40d06367544"><code>6a9f758</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3165">#3165</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c9f19ecec22dca1e453918b298d9280de84cff84"><code>c9f19ec</code></a> fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes fro...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/33bd900c70a8b306671c9187607b7aa74a708407"><code>33bd900</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3158">#3158</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/e24b4fbcdb56fc05353355afe35f404af2653cff"><code>e24b4fb</code></a> fix(FloatingFocusManager): avoid marking tree ancestor floating nodes when `m...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c728afa590c81832e374e7c6558fa5d90035205e"><code>c728afa</code></a> fix(FloatingFocusManager): check for floating focus root element (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3159">#3159</a>)</li> <li>Additional commits viewable in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.3/packages/react">compare view</a></li> </ul> </details> <br /> Updates `css-tree` from 3.0.1 to 3.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/releases">css-tree's releases</a>.</em></p> <blockquote> <h2>3.1.0</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of <a href="https://drafts.csswg.org/css-values-5/">CSS Values and Units L5</a>.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/blob/master/CHANGELOG.md">css-tree's changelog</a>.</em></p> <blockquote> <h2>3.1.0 (December 6, 2024)</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of CSS Values and Units Module Level 5.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csstree/csstree/commit/354254f7859bd9cd22c762fc8fada73a74bf2947"><code>354254f</code></a> 3.1.0</li> <li><a href="https://github.com/csstree/csstree/commit/3e0b93b0549e3760745552f351b13b579c944f56"><code>3e0b93b</code></a> Fix <code>TokenStream#balance</code> computation and</li> <li><a href="https://github.com/csstree/csstree/commit/6b24dcc26d93f827d244c64e75bb9b6c341632bf"><code>6b24dcc</code></a> Fix npm audit warning</li> <li><a href="https://github.com/csstree/csstree/commit/758ccf774f41fa9c6c501cbe18b3e2db02a0cdf5"><code>758ccf7</code></a> Fix location of &lt;layer-name&gt; (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/7cfec03270088f42ee40db1c744e00efe2bc219e"><code>7cfec03</code></a> Bump esbuild to ^0.24.0</li> <li><a href="https://github.com/csstree/csstree/commit/eab1c8e7819786d0ec53a744271c3b90fb0b5659"><code>eab1c8e</code></a> Add <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to `Of...</li> <li><a href="https://github.com/csstree/csstree/commit/ab29676545277c8315077f506e53fedd6920ad00"><code>ab29676</code></a> Expose OffsetToLocation in main entry point</li> <li><a href="https://github.com/csstree/csstree/commit/0afee3d88916a2860b48144537027cfb2f48c080"><code>0afee3d</code></a> Update mdn-data to v2.12.2 (<a href="https://redirect.github.com/csstree/csstree/issues/306">#306</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/2c95a514f4680b52012e5477a21cf6c28a6cf0e3"><code>2c95a51</code></a> Add lexer can check at-rules syntax</li> <li><a href="https://github.com/csstree/csstree/commit/511bed50f1d9d66b49aabd3e03d7ec2596dd18a7"><code>511bed5</code></a> Rename &lt;boolean[]&gt; into &lt;boolean-expr[]&gt; (fixes <a href="https://redirect.github.com/csstree/csstree/issues/307">#307</a>)</li> <li>Additional commits viewable in <a href="https://github.com/csstree/csstree/compare/v3.0.1...v3.1.0">compare view</a></li> </ul> </details> <br /> Updates `debug` from 4.3.7 to 4.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/debug-js/debug/releases">debug's releases</a>.</em></p> <blockquote> <h2>4.4.0</h2> <p>Fixes (hopefully) the inefficient regex warnings in <code>.enable()</code>.</p> <p>Minor version as this is invariably going to break certain users who misuse the <code>.enable()</code> API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">https://github.com/debug-js/debug/compare/4.3.7...4.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/debug-js/debug/commit/7e3814cc603bf64fdd69e714e0cf5611ec31f43b"><code>7e3814c</code></a> 4.4.0</li> <li><a href="https://github.com/debug-js/debug/commit/d2d6bf0bab3a0eeeb3a9ce7113cb0a31d8da678f"><code>d2d6bf0</code></a> fix inefficient .enable() regex and .enabled() test</li> <li>See full diff in <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">compare view</a></li> </ul> </details> <br /> Updates `papaparse` from 5.4.1 to 5.5.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mholt/PapaParse/commits">compare view</a></li> </ul> </details> <br /> Updates `react-zoom-pan-pinch` from 3.6.1 to 3.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prc5/react-zoom-pan-pinch/releases">react-zoom-pan-pinch's releases</a>.</em></p> <blockquote> <h2>v3.7.0</h2> <h1><a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">3.7.0</a> (2025-01-31)</h1> <h3>Bug Fixes</h3> <ul> <li>🐛 lint (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27">ab348dc</a>)</li> <li>Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c">3643a47</a>)</li> <li>Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289">5cf057b</a>)</li> <li>zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345">d770efb</a>)</li> </ul> <h3>Features</h3> <ul> <li>Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0">800beb1</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/68616a3a02d26bcf7444eab8c1abadf64bc2c730"><code>68616a3</code></a> test: 💍 resize observer polyfill</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27"><code>ab348dc</code></a> fix: 🐛 lint</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345"><code>d770efb</code></a> fix: zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289"><code>5cf057b</code></a> fix: Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c"><code>3643a47</code></a> fix: Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0"><code>800beb1</code></a> feat: Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>)</li> <li>See full diff in <a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">compare view</a></li> </ul> </details> <br /> Updates `yaml` from 2.6.1 to 2.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.7.0</h2> <p>The library is now available on JSR as <a href="https://jsr.io/@eemeli/yaml"><code>@​eemeli/yaml</code></a> and on deno.land/x as <a href="https://deno.land/x/yaml">yaml</a>. In addition to Node.js and browsers, it should work in Deno, Bun, and Cloudflare Workers.</p> <ul> <li>Use .ts extension in all relative imports (<a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a>)</li> <li>Ignore newline after block seq indicator as space before value (<a href="https://redirect.github.com/eemeli/yaml/issues/590">#590</a>)</li> <li>Require Node.js 14.18 or later (was 14.6) (<a href="https://redirect.github.com/eemeli/yaml/issues/598">#598</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/8f512b526a52e245e770be257235f7d37059ca39"><code>8f512b5</code></a> 2.7.0</li> <li><a href="https://github.com/eemeli/yaml/commit/8a7569afff1a7add4560ed2e125eebab1f9683f1"><code>8a7569a</code></a> ci: Add jsr.jsonc &amp; jsr-publish workflow</li> <li><a href="https://github.com/eemeli/yaml/commit/8ef085fa870f2b749e67ce52bb642afb796b7150"><code>8ef085f</code></a> docs: Fix API docs links</li> <li><a href="https://github.com/eemeli/yaml/commit/374c19cfdc051ca81c5a1ce12ca733c2e2a9ec93"><code>374c19c</code></a> style: Really use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/1ab037d64674baf0265dfe6a57c5b3c8c2d5120a"><code>1ab037d</code></a> style: Include explicit type declarations on all public APIs</li> <li><a href="https://github.com/eemeli/yaml/commit/4354c4233d7f75aed47a6d0ab74ab54867892b61"><code>4354c42</code></a> style: Use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/2c55723ab9f1d654d27deb2ed666d1c414a69013"><code>2c55723</code></a> Merge pull request <a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a> from eemeli/import-ts</li> <li><a href="https://github.com/eemeli/yaml/commit/ab240c17d35bb808a6df8e3039b9ddd6a2de7ac4"><code>ab240c1</code></a> fix: Drop .ts extension from import &amp; export paths in .d.ts files</li> <li><a href="https://github.com/eemeli/yaml/commit/c4c49f9e95db811a6fe7fd529647cb2659f150d0"><code>c4c49f9</code></a> fix: Use separate rather than inline type keyword for TS compatibility</li> <li><a href="https://github.com/eemeli/yaml/commit/3bec004db4206ebb0d4551f981a7f9961077470b"><code>3bec004</code></a> ci: Add deno smoke test</li> <li>Additional commits viewable in <a href="https://github.com/eemeli/yaml/compare/v2.6.1...v2.7.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-31 21:50:36 +00:00
"react-zoom-pan-pinch": "^3.7.0",
2025-08-15 16:36:54 +00:00
"recharts": "^2.15.4",
Bump the prod-dependencies-patch group with 4 updates (#1923) Bumps the prod-dependencies-patch group with 4 updates: [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react), [recharts](https://github.com/recharts/recharts), [rehype-highlight](https://github.com/rehypejs/rehype-highlight) and [ua-parser-js](https://github.com/faisalman/ua-parser-js). Updates `@floating-ui/react` from 0.27.3 to 0.27.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.4</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): use parent's orientation when opening/closing nested menus, correctly supporting grid submenus</li> <li>fix(FloatingList): avoid race condition between registering/unregistering nodes and setting indices</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.27.4</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): use parent's orientation when opening/closing nested menus, correctly supporting grid submenus</li> <li>fix(FloatingList): avoid race condition between registering/unregistering nodes and setting indices</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/c2e35904d62ba3afd89231d6711560b790e22af2"><code>c2e3590</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3220">#3220</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/f0e61e20cda03acdf022d77066b430c94925c472"><code>f0e61e2</code></a> fix(useListNavigation): use parent's orientation when opening/closing nested ...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/d8e4768ccf2f2deb9da7e6c811f370be44707ab0"><code>d8e4768</code></a> fix(FloatingList): prevent race condition between registering nodes and setti...</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.4/packages/react">compare view</a></li> </ul> </details> <br /> Updates `recharts` from 2.15.0 to 2.15.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/recharts/recharts/releases">recharts's releases</a>.</em></p> <blockquote> <h2>v2.15.1</h2> <h2>What's Changed</h2> <p>Quick patch release, nothing crazy going on here.</p> <p>In the meantime please help us test recharts 3.0 alpha <a href="https://redirect.github.com/recharts/recharts/issues/5445">recharts/recharts#5445</a> 🚀</p> <h4>Fix</h4> <ul> <li><code>Legend - Typescript</code>: add <code>dataKey</code> type to legend formatter props by <a href="https://github.com/lucasassisrosa"><code>@​lucasassisrosa</code></a> in <a href="https://redirect.github.com/recharts/recharts/pull/5511">recharts/recharts#5511</a>. Fixes <a href="https://redirect.github.com/recharts/recharts/issues/5508">recharts/recharts#5508</a></li> </ul> <h4>Chore</h4> <ul> <li>Make sure <code>react-smooth</code> version is up to date in package.json for R19 support by <a href="https://github.com/acomanescu"><code>@​acomanescu</code></a> in <a href="https://redirect.github.com/recharts/recharts/pull/5422">recharts/recharts#5422</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/acomanescu"><code>@​acomanescu</code></a> made their first contribution in <a href="https://redirect.github.com/recharts/recharts/pull/5422">recharts/recharts#5422</a></li> <li><a href="https://github.com/lucasassisrosa"><code>@​lucasassisrosa</code></a> made their first contribution in <a href="https://redirect.github.com/recharts/recharts/pull/5511">recharts/recharts#5511</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/recharts/recharts/compare/v2.15.0...v2.15.1">https://github.com/recharts/recharts/compare/v2.15.0...v2.15.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/recharts/recharts/commit/3ecaab0e88781e20284f4444d41bf14a00fddf70"><code>3ecaab0</code></a> 2.15.1</li> <li><a href="https://github.com/recharts/recharts/commit/786cda6f0231d2413ce040c975f8b7968184df6e"><code>786cda6</code></a> feat: Add the dataKey type to legend formatter props (<a href="https://redirect.github.com/recharts/recharts/issues/5511">#5511</a>)</li> <li><a href="https://github.com/recharts/recharts/commit/a3cf0247f942acc19f3ca2b44df51ab40c6c693a"><code>a3cf024</code></a> chore: update react-smooth version to support React 19 (<a href="https://redirect.github.com/recharts/recharts/issues/5422">#5422</a>)</li> <li>See full diff in <a href="https://github.com/recharts/recharts/compare/v2.15.0...v2.15.1">compare view</a></li> </ul> </details> <br /> Updates `rehype-highlight` from 7.0.1 to 7.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rehypejs/rehype-highlight/releases">rehype-highlight's releases</a>.</em></p> <blockquote> <h2>7.0.2</h2> <h4>Fix</h4> <ul> <li>5c3b277 Fix multiple <code>code</code>s in a <code>pre</code></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/rehypejs/rehype-highlight/compare/7.0.1...7.0.2">https://github.com/rehypejs/rehype-highlight/compare/7.0.1...7.0.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/86a5e9b1a5a3b43ab94416ac21f17d1d37051224"><code>86a5e9b</code></a> 7.0.2</li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/ff5d9df3ca0118dbdf160226a4d48f26e6ee7329"><code>ff5d9df</code></a> Refactor tests</li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/5c3b27763d21ed3119eb511f487ed69fe550b0b5"><code>5c3b277</code></a> Fix multiple <code>code</code>s in a <code>pre</code></li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/093fed2853b3f814223b4971c8baf0f0d541deae"><code>093fed2</code></a> Refactor example</li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/62755288fa14bc95bf5b3c4ac73591451dc5c278"><code>6275528</code></a> Refactor <code>package.json</code></li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/6a63f71624e19cc2f6030fd21d0c6367f79d216d"><code>6a63f71</code></a> Update tests for changes in <code>lowlight</code></li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/36727b6df470bc763788ae8df367d4cd105c3fc4"><code>36727b6</code></a> Update dev-dependencies</li> <li><a href="https://github.com/rehypejs/rehype-highlight/commit/241ced97b208fee98127dc1029c0535855754240"><code>241ced9</code></a> Update Actions</li> <li>See full diff in <a href="https://github.com/rehypejs/rehype-highlight/compare/7.0.1...7.0.2">compare view</a></li> </ul> </details> <br /> Updates `ua-parser-js` from 2.0.0 to 2.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/faisalman/ua-parser-js/releases">ua-parser-js's releases</a>.</em></p> <blockquote> <h2>v2.0.1</h2> <h2>Version 2.0.1</h2> <ul> <li>Add new browser: Ladybird, Daum</li> <li>Add new device: Apple HomePod</li> <li>Add new device vendor: HMD</li> <li>Add new OS: Ubuntu Touch, Windows IoT</li> <li>Improve CPU detection: ARM, x86</li> <li>Improve device detection: Lenovo, Nokia, Nvidia, Xiaomi <ul> <li>Tablet: Google, Honor, Huawei, Infinix, Nokia, OnePlus, Xiaomi</li> <li>Wearable: Asus, Google, LG, Motorola, OnePlus, Oppo, Samsung, Sony</li> <li>Smart-TV: Xiaomi, unidentified vendors</li> <li>Improve detection for unknown VR devices</li> <li>Improve device model detection for Generic devices</li> </ul> </li> <li>Improve OS detection: Linux, Symbian</li> <li>Improve TypeScript definitions for Headers</li> <li>Improve <code>withClientHints()</code>: <ul> <li><code>engine.version</code> also get updated</li> <li>Infer <code>device.vendor</code> &amp; <code>device.type</code> by guessing from <code>device.model</code></li> <li>Browser naming adjustments: <ul> <li><code>Google Chrome</code> =&gt; <code>Chrome</code></li> <li><code>Microsoft Edge</code> =&gt; <code>Edge</code></li> <li><code>Android WebView</code> =&gt; <code>Chrome WebView</code></li> <li><code>HeadlessChrome</code> =&gt; <code>Chrome Headless</code></li> </ul> </li> </ul> </li> <li><code>enums</code> submodule: <ul> <li>Add TypeScript definitions</li> </ul> </li> <li><code>extensions</code> submodule: <ul> <li>Add new list: <ul> <li><code>Vehicles</code>: BYD, Rivian, Volvo</li> </ul> </li> <li>Add new Fetcher: Bluesky</li> <li>Add new Library: Apache-HttpClient, go-http-client, got, GuzzleHttp, Java-http-client, libwww-perl, lua-resty-http, Needle, OkHttp, node-fetch, PHP-SOAP, PostmanRuntime, superagent</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/faisalman/ua-parser-js/blob/master/CHANGELOG.md">ua-parser-js's changelog</a>.</em></p> <blockquote> <h2>Version 2.0.1</h2> <ul> <li>Add new browser: Ladybird, Daum</li> <li>Add new device: Apple HomePod</li> <li>Add new device vendor: HMD</li> <li>Add new OS: Ubuntu Touch, Windows IoT</li> <li>Improve CPU detection: ARM, x86</li> <li>Improve device detection: Lenovo, Nokia, Nvidia, Xiaomi <ul> <li>Tablet: Google, Honor, Huawei, Infinix, Nokia, OnePlus, Xiaomi</li> <li>Wearable: Asus, Google, LG, Motorola, OnePlus, Oppo, Samsung, Sony</li> <li>Smart-TV: Xiaomi, unidentified vendors</li> <li>Improve detection for unknown VR devices</li> <li>Improve device model detection for Generic devices</li> </ul> </li> <li>Improve OS detection: Linux, Symbian</li> <li>Improve TypeScript definitions for Headers</li> <li>Improve <code>withClientHints()</code>: <ul> <li><code>engine.version</code> also get updated</li> <li>Infer <code>device.vendor</code> &amp; <code>device.type</code> by guessing from <code>device.model</code></li> <li>Browser naming adjustments: <ul> <li><code>Google Chrome</code> =&gt; <code>Chrome</code></li> <li><code>Microsoft Edge</code> =&gt; <code>Edge</code></li> <li><code>Android WebView</code> =&gt; <code>Chrome WebView</code></li> <li><code>HeadlessChrome</code> =&gt; <code>Chrome Headless</code></li> </ul> </li> </ul> </li> <li><code>enums</code> submodule: <ul> <li>Add TypeScript definitions</li> </ul> </li> <li><code>extensions</code> submodule: <ul> <li>Add new list: <ul> <li><code>Vehicles</code>: BYD, Rivian, Volvo</li> </ul> </li> <li>Add new Fetcher: Bluesky</li> <li>Add new Library: Apache-HttpClient, go-http-client, got, GuzzleHttp, Java-http-client, libwww-perl, lua-resty-http, Needle, OkHttp, node-fetch, PHP-SOAP, PostmanRuntime, superagent</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/faisalman/ua-parser-js/commit/51dce55e650eab110f403c2b5e6114b460e52fcd"><code>51dce55</code></a> Bump version <code>2.0.1</code></li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/3ca23193ddc036261b41de75f2263596314641bf"><code>3ca2319</code></a> Improve OS detection: fix Linux arch mistakenly detected as version</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/9e64f34e726d79c8ad2aca4bf4ed3cf989680285"><code>9e64f34</code></a> Improve CPU detection: x86</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/10ab810568db032035cd11822fd8ef58c74fbe18"><code>10ab810</code></a> Improve detection for Nokia device &amp; Symbian OS</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/e8a301265a0d2e903fce795a14fd1b61e8464a28"><code>e8a3012</code></a> [extensions] Create a new list for <code>Vehicles</code> user-agent: Volvo, Rivian, BYD</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/20e874085b184779103f026ff107c4605398f2ed"><code>20e8740</code></a> Improve device detection for unknown VR device</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/852520fafe12d5df84811f9936e70de2be5bad88"><code>852520f</code></a> Also provide minified .mjs files of main module in /dist</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/6c6ff97e0cdff8930cdd09c51667855a4272c1d9"><code>6c6ff97</code></a> Improve device detection for Generic device: capture its device model instead...</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/93552e0172459487f24bb0307e0e64ec5ce58cd6"><code>93552e0</code></a> Improve CPU detection: ARM</li> <li><a href="https://github.com/faisalman/ua-parser-js/commit/13d069f1c46ffb7edfeaa32d1e55b361350e9ed2"><code>13d069f</code></a> Improve device detection for unidentified SmartTV vendors</li> <li>Additional commits viewable in <a href="https://github.com/faisalman/ua-parser-js/compare/2.0.0...2.0.1">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-08 00:14:30 +00:00
"rehype-highlight": "^7.0.2",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
Bump the prod-dependencies-minor group across 1 directory with 9 updates (#2269) Bumps the prod-dependencies-minor group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@monaco-editor/loader](https://github.com/suren-atoyan/monaco-loader) | `1.4.0` | `1.5.0` | | [@monaco-editor/react](https://github.com/suren-atoyan/monaco-react) | `4.6.0` | `4.7.0` | | [@radix-ui/react-slot](https://github.com/radix-ui/primitives) | `1.1.2` | `1.2.3` | | [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) | `8.20.6` | `8.21.3` | | [fast-average-color](https://github.com/fast-average-color/fast-average-color) | `9.4.0` | `9.5.0` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.3` | `5.4.0` | | [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.10.1` | `2.11.5` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.62.0` | | [remark-flexible-toc](https://github.com/ipikuka/remark-flexible-toc) | `1.1.1` | `1.2.0` | Updates `@monaco-editor/loader` from 1.4.0 to 1.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/releases"><code>@​monaco-editor/loader</code>'s releases</a>.</em></p> <blockquote> <h2>v1.5.0</h2> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove <code>monaco-editor</code> from <code>peerDependencies</code></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-loader/blob/master/CHANGELOG.md"><code>@​monaco-editor/loader</code>'s changelog</a>.</em></p> <blockquote> <h2>1.5.0</h2> <h6><em>Feb 13, 2025</em></h6> <ul> <li>monaco-editor: update to the latest version (0.52.2)</li> <li>package: remove monaco-editor from peerDependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fc86117fb2f221070a509aa4539dd4644a607381"><code>fc86117</code></a> update package to 1.5.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04b5e117dba528f834b8df19158377913ec332d5"><code>04b5e11</code></a> update monaco to the latest (0.52.2) version</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/ceef10fe5b102d00e7d4862bdeead1bf57f215c6"><code>ceef10f</code></a> remove monaco-editor as peer dependency</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/61f69ed29d3e3dddb55aa41ab65ac67bf1d57640"><code>61f69ed</code></a> Merge branch 'master' of github.com:suren-atoyan/monaco-loader</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/f0a480242dc3108365b3cb4e80c142fe909844ec"><code>f0a4802</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/fbf65da02f78b5b145d393fb9b9f0eae0fb3bd8a"><code>fbf65da</code></a> Merge pull request <a href="https://redirect.github.com/suren-atoyan/monaco-loader/issues/43">#43</a> from voidranjer/master</li> <li><a href="https://github.com/suren-atoyan/monaco-loader/commit/04f844f35960509c07970a35cccbe279fd96ee8f"><code>04f844f</code></a> upgrade monaco-editor version to 0.46.0</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-loader/compare/v1.4.0...v1.5.0">compare view</a></li> </ul> </details> <br /> Updates `@monaco-editor/react` from 4.6.0 to 4.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/releases"><code>@​monaco-editor/react</code>'s releases</a>.</em></p> <blockquote> <h2>v4.7.0</h2> <ul> <li>package: update <code>@monaco-editor/loader</code> to the latest (<code>v1.5.0</code>) version (this uses <code>monaco-editor</code> <code>v0.52.2</code>)</li> <li>package: inherit all changes from <code>v4.7.0-rc.0</code></li> </ul> <h2>v4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom <code>v19</code> as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/suren-atoyan/monaco-react/blob/master/CHANGELOG.md"><code>@​monaco-editor/react</code>'s changelog</a>.</em></p> <blockquote> <h2>4.7.0</h2> <ul> <li>package: update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version (this uses monaco-editor v0.52.2)</li> <li>package: inherit all changes from v4.7.0-rc.0</li> </ul> <h2>4.7.0-rc.0</h2> <ul> <li>package: add support for react/react-dom v19 as a peer dependency</li> <li>playground: update playground's React version to 19</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/eb120e66378471315620fe5339b73ba003f199ad"><code>eb120e6</code></a> update package to 4.7.0 version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/cdd070c9f080caf4a9a7b13c2c34fa4e10edc9bf"><code>cdd070c</code></a> update snapshots</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/55a063e45d2f2672884b77059ac97850758764ae"><code>55a063e</code></a> update <code>@​monaco-editor/loader</code> to the latest (v1.5.0) version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/52e8c75616e09730b7b1a0b5822385212a082ce8"><code>52e8c75</code></a> update package to 4.7.0-rc.o version</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/e72be4edc1b4492eae9f7d85671ee61a43a6aee8"><code>e72be4e</code></a> add react 19 to peerDependencies</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/642be903a9dd21d6fe639ab5c92c234dad77c813"><code>642be90</code></a> update playground's react version to 19</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ceee344fbe26285dabb0fe90985fe18ec867211c"><code>ceee344</code></a> Add Monaco-React AI Bot in Readme (<a href="https://redirect.github.com/suren-atoyan/monaco-react/issues/655">#655</a>)</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/f7cac39fbad0f062dc66458831aaf57a7126dd40"><code>f7cac39</code></a> add electron blog post link</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/ea601cf9f6fe9f2cc0c6271d6a9cde9a332b6dc0"><code>ea601cf</code></a> add tea constitution file</li> <li><a href="https://github.com/suren-atoyan/monaco-react/commit/3327f3c368cb6d56c02f2df8a9d45177ce6f52e9"><code>3327f3c</code></a> add GitHub sponsor button</li> <li>See full diff in <a href="https://github.com/suren-atoyan/monaco-react/compare/v4.6.0...v4.7.0">compare view</a></li> </ul> </details> <br /> Updates `@radix-ui/react-slot` from 1.1.2 to 1.2.3 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/radix-ui/primitives/commits">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-table` from 8.20.6 to 8.21.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s releases</a>.</em></p> <blockquote> <h2>v8.21.3</h2> <p>Version 8.21.3 - 4/14/25, 8:19 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>table-core: use right Document instance on getResizeHandler (column-sizing feature) (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5989">#5989</a>) (54ce673) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> </ul> <h3>Docs</h3> <ul> <li>fix all 158 broken links (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5972">#5972</a>) (f7bf6f1) by <a href="https://github.com/kisaragi-hiu"><code>@​kisaragi-hiu</code></a></li> <li>add vue example for grouping (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5941">#5941</a>) (3efa59c) by Harshil Patel</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/solid-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/svelte-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/vue-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> <li><code>@​tanstack/react-table-devtools</code><a href="https://github.com/8"><code>@​8</code></a>.21.3</li> </ul> <h2>v8.21.2</h2> <p>Version 8.21.2 - 2/11/25, 8:59 PM</p> <h2>Changes</h2> <h3>Fix</h3> <ul> <li>arrIncludes autoremove filterFn (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5623">#5623</a>) (2efaf57) by lukebui</li> <li>lit-table: spread table options in lit adapter (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5904">#5904</a>) (36dede1) by <a href="https://github.com/kadoshms"><code>@​kadoshms</code></a></li> </ul> <h3>Docs</h3> <ul> <li>row accessor bug in example code block (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5893">#5893</a>) (b1506a7) by Valerii Petryniak</li> <li>virtualizer tbody from onchange (827b098) by Kevin Van Cott</li> <li>exp virtual - remeasure when table state changes (9e6987d) by Kevin Van Cott</li> <li>angular: add expanding and sub components examples (<a href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5898">#5898</a>) (099e1a4) by <a href="https://github.com/riccardoperra"><code>@​riccardoperra</code></a></li> <li>example name (57703a4) by Kevin Van Cott</li> </ul> <h2>Packages</h2> <ul> <li><code>@​tanstack/table-core</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/lit-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/angular-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> <li><code>@​tanstack/qwik-table</code><a href="https://github.com/8"><code>@​8</code></a>.21.2</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/table/commit/f4dc742b7b8bf01bb7dd10ee7d2f238400befcc0"><code>f4dc742</code></a> release: v8.21.3</li> <li><a href="https://github.com/TanStack/table/commit/db745afdb867511ddd04a79150f89d3894a03532"><code>db745af</code></a> release: v8.21.2</li> <li>See full diff in <a href="https://github.com/TanStack/table/commits/v8.21.3/packages/react-table">compare view</a></li> </ul> </details> <br /> Updates `fast-average-color` from 9.4.0 to 9.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/releases">fast-average-color's releases</a>.</em></p> <blockquote> <h2>v9.5.0</h2> <p>Add support for VideoFrame.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fast-average-color/fast-average-color/blob/master/CHANGELOG.md">fast-average-color's changelog</a>.</em></p> <blockquote> <h1>v9.5.0</h1> <ul> <li>Add support for VideoFrame.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/835d429e33716d68c3a15795e224958cb36c9164"><code>835d429</code></a> Bump version</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/f18e45a8220ce837ba5ca19cc3a7c160c3bbf749"><code>f18e45a</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/bb3ac9474fbe77f80ccb68a963ac173594f233e3"><code>bb3ac94</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4cf569b92b2c60d9e482b8e22c10dab024718fdf"><code>4cf569b</code></a> Add support for Videoframe</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/fec032e4b619e4c6a121f496a9359fa7dc1f2d35"><code>fec032e</code></a> Update dev deps in package.json</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/90b6e78874bbdba9d3250556d41306d0727e272d"><code>90b6e78</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/ef042855b66ba00d6d24382054e2c9796d019e47"><code>ef04285</code></a> Update README.md</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/c3bb950ba6e17de1758045c0c38116bb1ff61d2e"><code>c3bb950</code></a> Update dev deps</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/1ec4f05434692cc1253df1c949e9c9baaac35102"><code>1ec4f05</code></a> Update LICENSE</li> <li><a href="https://github.com/fast-average-color/fast-average-color/commit/4a00436df36aa37bcdb923d9281e7632ee99d671"><code>4a00436</code></a> Update dev deps</li> <li>Additional commits viewable in <a href="https://github.com/fast-average-color/fast-average-color/compare/v9.4.0...v9.5.0">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.3 to 5.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/remcohaszing/monaco-yaml/releases">monaco-yaml's releases</a>.</em></p> <blockquote> <h2>v5.4.0</h2> <ul> <li>7ff3604 Update to yaml-language-server 1.18.0</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.1...v5.4.0</a></p> <h2>v5.3.1</h2> <ul> <li>1d9f1d8 Preserve diagnostic data in code actions</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1">https://github.com/remcohaszing/monaco-yaml/compare/v5.3.0...v5.3.1</a></p> <h2>v5.3.0</h2> <ul> <li>9cddfb8 Update to <a href="https://github.com/redhat-developer/yaml-language-server/blob/main/CHANGELOG.md#1160"><code>yaml-language-server@1.16.0</code></a></li> <li>9cddfb8 Update to Prettier 3</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/cf37428a62f87e0336734c9cb4924fd4027a7c20"><code>cf37428</code></a> 5.4.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5acd300735a00aab4cada662178a701c023a492b"><code>5acd300</code></a> Remove the Prettier import rewrite</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/7ff360405c7beb62476acdc3c7658e55ebf3a629"><code>7ff3604</code></a> Update to yaml-language-server 1.18.0</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/44d79fbc15e09b00560accab3bac30f9d4252adf"><code>44d79fb</code></a> Update dev dependencies</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/b534eeab2b160ac828656f962560e669c4274d45"><code>b534eea</code></a> Make demo editor reponsive to color scheme changes</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4e4de9206288ed988a31d6b35ade3f0b3c38e5f3"><code>4e4de92</code></a> Specify which deps Vitest should optimize</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/642849baa5a5c9c9728f1ebc7515d31ecf9450c4"><code>642849b</code></a> Simplify normalizing of Prettier</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/91a768da08d5fdb9589b36b364ffaa23dfa6f396"><code>91a768d</code></a> Remove Playwright configuration</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/4d47362df59fb216ed408d8242ba5e4f9c2275e1"><code>4d47362</code></a> Type check tests</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/aa1a906e2032652113c629e5200e973b8d7d0c0c"><code>aa1a906</code></a> Add code coverage (<a href="https://redirect.github.com/remcohaszing/monaco-yaml/issues/263">#263</a>)</li> <li>Additional commits viewable in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.3...v5.4.0">compare view</a></li> </ul> </details> <br /> Updates `overlayscrollbars` from 2.10.1 to 2.11.5 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md">overlayscrollbars's changelog</a>.</em></p> <blockquote> <h2>2.11.5</h2> <h3>Bug Fixes</h3> <ul> <li>Sometimes when resizing the window, scrollbars applied to the body element werent updated aoccrdingly.</li> </ul> <h2>2.11.4</h2> <h3>Bug Fixes</h3> <ul> <li>Remove scrollbars <code>click</code> event when its no longer required. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/720">#720</a></li> </ul> <h2>2.11.3</h2> <h3>Improvements</h3> <ul> <li>Introduce and document the new <code>CSS Custom Properties</code>: <code>--os-viewport-overflow-x</code> and <code>--os-viewport-overflow-y</code> which can be used to better control the <code>overflow</code> style of the <code>viewport</code> element.</li> <li>Support for the <code>auto</code> value for overwrites of the <code>overflow</code> style of the <code>viewport</code>.</li> </ul> <h2>2.11.2</h2> <h3>Improvements</h3> <ul> <li>Streamline css styles for the viewport and wrapper elements to allow overwrites of the <code>overflow</code> property. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/718">#718</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li>Initialization bridging via <code>data-overlayscrollbars-initialize</code> attribute conflicted with the <code>showNativeOverlaidScrollbars: true</code> option when initialized to the body element. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/713">#713</a></li> </ul> <h2>2.11.1</h2> <h3>Improvements</h3> <ul> <li>Use the ResizeObservers <code>options.box</code> option to remove the need for additional DOM elements in supported browsers.</li> <li>Significant performance improvements in the <code>update</code> logic.</li> </ul> <h2>2.11.0</h2> <h3>Features</h3> <ul> <li>Add the possibility to define a <a href="https://developer.mozilla.org/en-US/docs/Web/API/Trusted_Types_API"><code>trusted type policy</code></a> for websites with a CSP. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/697">#697</a></li> </ul> <h3>Improvements</h3> <ul> <li>Change <code>ScrollAnimationTimeline</code> keyframes to not animate css-custom-properties to improve scroll performance. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/705">#705</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cb636713eacd0e2fb32773657004348220ff456c"><code>cb63671</code></a> changelog &amp; package json</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9fd1f8ce27a009255af74aba51e1d02cf6774516"><code>9fd1f8c</code></a> fix a bug where the scrollbar size was not update on body scrollbars</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/9cb3e2249f4be85e1e27753a85d20c00fc68cbda"><code>9cb3e22</code></a> deploy</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/2f73b167e2cfa7b42ffd291441e913c8de0e5113"><code>2f73b16</code></a> v2.11.4</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/7c59217b8066e175cadfd3dbb33335a48a92101f"><code>7c59217</code></a> fix: <a href="https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars/issues/720">#720</a></li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/98f7cee0edacc123fce3c45772388623101b995d"><code>98f7cee</code></a> v2.11.3</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/11ab82e7d323dac7f999ecf4d227f2c4d1aa44cf"><code>11ab82e</code></a> improvement</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/0382765e7caab80c9adc63d4d063a69186f6526f"><code>0382765</code></a> improvements</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/a99a39e83bc56003b1ce68c31e4a054199052a3a"><code>a99a39e</code></a> handle overflow:auto overwrite correctly</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/fe7146e8a947f344f31f94f2b4d896fc5eb9257a"><code>fe7146e</code></a> improvements</li> <li>Additional commits viewable in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.11.5/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `react-hook-form` from 7.54.2 to 7.62.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p> <blockquote> <h2>Version 7.62.0</h2> <p>👨‍🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>) 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>) 🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>) 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p> <p>thanks to <a href="https://github.com/candymask0712"><code>@​candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@​Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@​Ty3uK</code></a> &amp; <a href="https://github.com/kichikawa57"><code>@​kichikawa57</code></a></p> <h2>Version 7.61.1</h2> <p>Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</p> <h2>Version 7.61.0</h2> <p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p> <ul> <li>subscribe to the entire form but only return updated value with certain condition</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> compute: (data: FormValue) =&gt; {<br /> if (data.test?.length) {<br /> return data.test;<br /> }</p> <pre><code>return ''; </code></pre> <p>},<br /> });<br /> </code></pre></p> <ul> <li>subscribe to a specific form value state</li> </ul> <pre lang="tsx"><code>type FormValue = { test: string; } <p>const watchedValue = useWatch({<br /> control: methods.control,<br /> name: 'test',<br /> compute: (data: string) =&gt; {<br /> return data.length &gt; 3 ? data : '';<br /> },<br /> });<br /> </code></pre></p> <p>👨‍🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>) 🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨‍🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert &quot;⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)&quot;</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.54.2...v7.62.0">compare view</a></li> </ul> </details> <br /> Updates `remark-flexible-toc` from 1.1.1 to 1.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipikuka/remark-flexible-toc/releases">remark-flexible-toc's releases</a>.</em></p> <blockquote> <h2>v1.2.0</h2> <p>The changes made by <a href="https://github.com/talatkuyuk"><code>@​talatkuyuk</code></a>:</p> <ul> <li>Add <code>unified</code> into peerDependencies</li> <li>Update dependencies and devDependencies</li> <li>Update <code>vitest</code> to latest</li> <li>Migrate <code>eslint</code> v8 to v9 and apply flat config</li> <li>Update <code>.prettierrc</code></li> <li>Add <code>.editorconfig</code> file</li> <li>Update github actions</li> <li>Add <code>rehype-format</code> in test files</li> <li>Fix eslint errors</li> <li>Fix <code>package-lock.json</code></li> <li>Update the copyright date in the LICENSE</li> <li>Update keywords in <code>package.json</code></li> <li>Update <code>README.md</code> <ul> <li>Update badges/links</li> <li>Chore corrections</li> <li>Remove keywords</li> <li>Add plugins which I recently developed into list</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/22713c51c5e922c19a84a4f49718ea28f0621d96"><code>22713c5</code></a> v1.2.0</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/c7980ab4c5131d8481de88b1fd90b94b587c9dbc"><code>c7980ab</code></a> Update vitest and typescript-eslint</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/2669e715f0d3f96dfee2c2a9d6066361be6d83ac"><code>2669e71</code></a> Update keywords</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/4531f8cb14b3dcac0c45015039618b4050c17d10"><code>4531f8c</code></a> Update bages/links in README.md</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/b45242803caf106983fa5d393fbfaefaaa32ccd9"><code>b452428</code></a> Remove <code>@​types/dedent</code> since it has own type definition</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/038cfe1318fed4bc931f6161e2cd205a8d5b0db7"><code>038cfe1</code></a> Fix eslint errors</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/349d08c5f0d795934f562657982e9f96f0515249"><code>349d08c</code></a> Update eslint v9</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/16cf857ddb5732c4de222034dd7e821d50146bb8"><code>16cf857</code></a> Update github actions</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/119774f2707981157e9697faaa9ca817641808c6"><code>119774f</code></a> Fix package-lock.json</li> <li><a href="https://github.com/ipikuka/remark-flexible-toc/commit/169351c87dbb7dac91f9b3dab1dc6f70b0a58f7a"><code>169351c</code></a> Move <code>unified</code> into peerDependencies</li> <li>Additional commits viewable in <a href="https://github.com/ipikuka/remark-flexible-toc/compare/v1.1.1...v1.2.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 01:10:26 +00:00
"remark-flexible-toc": "^1.2.0",
"remark-gfm": "^4.0.1",
2025-08-15 16:36:54 +00:00
"remark-github-blockquote-alert": "^1.3.1",
"rxjs": "^7.8.2",
"shell-quote": "^1.8.3",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"sprintf-js": "^1.1.3",
2025-08-15 16:36:54 +00:00
"tailwind-merge": "^3.3.1",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"throttle-debounce": "^5.0.2",
"tinycolor2": "^1.6.0",
"unist-util-visit": "^5.0.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
"use-device-pixel-ratio": "^1.1.2",
Bump the prod-dependencies group with 2 updates (#1295) Bumps the prod-dependencies group with 2 updates: [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) and [winston](https://github.com/winstonjs/winston). Updates `@floating-ui/react` from 0.26.27 to 0.26.28 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.28</h2> <h3>Patch Changes</h3> <ul> <li>fix(Composite): change focus to be sync</li> <li>fix(useClick): improve consistency when combining with <code>useHover()</code></li> <li>feat(useClick): add <code>stickIfOpen</code> prop to determine whether to remain open upon first click when first opened by another event</li> <li>feat(Composite): add RTL support</li> <li>fix(FloatingFocusManager): ensure <code>returnFocus</code> is ignored correctly when using <code>disabled</code> prop</li> <li>fix(useListNavigation): incorrect behaviour with RTL grid</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.26.28</h2> <h3>Patch Changes</h3> <ul> <li>fix(Composite): change focus to be sync</li> <li>fix(useClick): improve consistency when combining with <code>useHover()</code></li> <li>feat(useClick): add <code>stickIfOpen</code> prop to determine whether to remain open upon first click when first opened by another event</li> <li>feat(Composite): add RTL support</li> <li>fix(FloatingFocusManager): ensure <code>returnFocus</code> is ignored correctly when using <code>disabled</code> prop</li> <li>fix(useListNavigation): incorrect behaviour with RTL grid</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/ba32495e65a1616c8ee5ab98ebbc80705482ed34"><code>ba32495</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3118">#3118</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/b45eeb336e8091564ce296652f786a4e84c38d65"><code>b45eeb3</code></a> fix(Composite): change focus to be sync (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3120">#3120</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/0fe5b2001af08c4c666e820dc82e1e6e4889d0ac"><code>0fe5b20</code></a> fix(FloatingFocusManager): reset prevent return focus flag in microtask after...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/42f5b5cd8e0e87b2ad761e59dd697bc3659cdd44"><code>42f5b5c</code></a> fix(useClick, useHover): improve consistency when combining hooks (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3113">#3113</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/cedff0eed2b4a3e254ec06c2ea7c776ab0902d2f"><code>cedff0e</code></a> feat(Composite): add RTL support (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3119">#3119</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/976ba7c62af08c2425897b34d887d8f88ce9509c"><code>976ba7c</code></a> fix(useListNavigation): incorrect behaviour with RTL grid (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3117">#3117</a>)</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.26.28/packages/react">compare view</a></li> </ul> </details> <br /> Updates `winston` from 3.16.0 to 3.17.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/winstonjs/winston/releases">winston's releases</a>.</em></p> <blockquote> <h2>v3.17.0</h2> <ul> <li>Try winston-transport 4.9.0 3e87128</li> <li>Revert &quot;Try bumping winston-transport to 4.8.0&quot; 69625fc</li> <li>Revert &quot;Try bumping winston-transport to 4.8.0&quot; 876ef7a</li> <li>Try bumping winston-transport to 4.8.0 7ef2c1d</li> <li>Try bumping winston-transport to 4.8.0 fe4b64e</li> <li>Bump logform c9fd9a4</li> <li>Revert &quot;Update logform and winston-transport&quot; 14fef0f</li> <li>Merge branch &amp;<a href="https://redirect.github.com/winstonjs/winston/issues/39">#39</a>;master&amp;<a href="https://redirect.github.com/winstonjs/winston/issues/39">#39</a>; of github.com:winstonjs/winston 545b683</li> <li>Update logform and winston-transport cceb265</li> <li>Bump mocha from 10.7.3 to 10.8.2 (<a href="https://redirect.github.com/winstonjs/winston/issues/2523">#2523</a>) bb529b6</li> <li>Bump async from 3.2.5 to 3.2.6 (<a href="https://redirect.github.com/winstonjs/winston/issues/2516">#2516</a>) ae847ab</li> </ul> <p><a href="https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0">https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/winstonjs/winston/commit/1b9cef8c7d76e4c15d47997d2c4199c31e9d277a"><code>1b9cef8</code></a> 3.17.0</li> <li><a href="https://github.com/winstonjs/winston/commit/3e87128a68468e815fa800df349f179ee699408b"><code>3e87128</code></a> Try winston-transport 4.9.0</li> <li><a href="https://github.com/winstonjs/winston/commit/69625fc35184ee1a624e4b4286ffb77b85a9dc61"><code>69625fc</code></a> Revert &quot;Try bumping winston-transport to 4.8.0&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/876ef7a70209e0c1b38ae6bc88d3b07546072c9b"><code>876ef7a</code></a> Revert &quot;Try bumping winston-transport to 4.8.0&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/7ef2c1db2816973629980e866c36c136b19be5cd"><code>7ef2c1d</code></a> Try bumping winston-transport to 4.8.0</li> <li><a href="https://github.com/winstonjs/winston/commit/fe4b64e9d05eced8638612768e5e8b945f3a36ef"><code>fe4b64e</code></a> Try bumping winston-transport to 4.8.0</li> <li><a href="https://github.com/winstonjs/winston/commit/c9fd9a4bec5e6b1dc8c6ba641a5d5fb5a57e80c2"><code>c9fd9a4</code></a> Bump logform</li> <li><a href="https://github.com/winstonjs/winston/commit/14fef0fe74426a70d3e6366c967519cef7612fb9"><code>14fef0f</code></a> Revert &quot;Update logform and winston-transport&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/545b68381d77e1a3a24f79e9a66320f226cf8a69"><code>545b683</code></a> Merge branch 'master' of github.com:winstonjs/winston</li> <li><a href="https://github.com/winstonjs/winston/commit/cceb265215a2f4b5545f47dca42167ce1cee68ba"><code>cceb265</code></a> Update logform and winston-transport</li> <li>Additional commits viewable in <a href="https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-15 18:40:28 +00:00
"winston": "^3.17.0",
2025-08-15 16:36:54 +00:00
"ws": "^8.18.3",
"yaml": "^2.7.1"
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 20:10:35 +00:00
},
"packageManager": "npm@10.9.2",
"workspaces": [
"docs",
"tsunami/frontend"
]
}