waveterm/package.json

154 lines
4.9 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",
2026-03-03 23:22:35 +00:00
"version": "0.14.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
"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",
"coverage": "vitest run --coverage",
"test": "vitest",
"postinstall": "node ./postinstall.cjs"
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
},
"devDependencies": {
"@eslint/js": "^9.39",
Bump the dev-dependencies-patch group with 3 updates (#2450) Bumps the dev-dependencies-patch group with 3 updates: [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve), [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) and [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy). Updates `@rollup/plugin-node-resolve` from 16.0.2 to 16.0.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md"><code>@​rollup/plugin-node-resolve</code>'s changelog</a>.</em></p> <blockquote> <h2>v16.0.3</h2> <p><em>2025-10-13</em></p> <h3>Bugfixes</h3> <ul> <li>fix: resolve bare targets of package &quot;imports&quot; using export maps; avoid fileURLToPath(null) (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1908">#1908</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rollup/plugins/commit/764910a09d57e3b55cb4d027765b717a50341253"><code>764910a</code></a> chore(release): node-resolve v16.0.3</li> <li><a href="https://github.com/rollup/plugins/commit/35697207a44aa9f1b474dc6e1cc6054f575765ad"><code>3569720</code></a> fix(node-resolve): resolve bare targets of package &quot;imports&quot; using export map...</li> <li>See full diff in <a href="https://github.com/rollup/plugins/commits/node-resolve-v16.0.3/packages/node-resolve">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.46.0 to 8.46.1 <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.46.1</h2> <h2>8.46.1 (2025-10-13)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>ast-spec:</strong> cleanup <code>TSLiteralType</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11624">#11624</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-optional-chain] include mixed &quot;nullish comparison style&quot; chains in checks (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11533">#11533</a>)</li> <li><strong>eslint-plugin:</strong> [no-misused-promises] special-case <code>.finally</code> not to report when a promise returning function is provided as an argument (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11667">#11667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Abraham Guo</li> <li>mdm317</li> <li>Ronen Amiel</li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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.46.1 (2025-10-13)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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/3f5fbf698e75ddd87874885ffbf937913761cdb0"><code>3f5fbf6</code></a> chore(release): publish 8.46.1</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-static-copy` from 3.1.3 to 3.1.4 <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.4</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/204">#204</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/d0b537035262b419da2b8f0843a8ddccef71a236"><code>d0b5370</code></a> Thanks <a href="https://github.com/stianjensen"><code>@​stianjensen</code></a>! - Removed <code>fs-extra</code> dependency in favor of <code>node:fs</code>. This should not affect the behavior.</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.4</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/204">#204</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/d0b537035262b419da2b8f0843a8ddccef71a236"><code>d0b5370</code></a> Thanks <a href="https://github.com/stianjensen"><code>@​stianjensen</code></a>! - Removed <code>fs-extra</code> dependency in favor of <code>node:fs</code>. This should not affect the behavior.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/a7e86397839b052276c8a52a8c7883c126494997"><code>a7e8639</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/206">#206</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/d0b537035262b419da2b8f0843a8ddccef71a236"><code>d0b5370</code></a> refactor: replace <code>fs-extra</code> with <code>node:fs</code> (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/204">#204</a>)</li> <li>See full diff in <a href="https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@3.1.3...vite-plugin-static-copy@3.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>
2025-10-18 00:47:08 +00:00
"@rollup/plugin-node-resolve": "^16.0.3",
Bump the dev-dependencies-minor group with 4 updates (#2953) Bumps the dev-dependencies-minor group with 4 updates: [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite), [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss), [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) and [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli). Updates `@tailwindcss/vite` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/vite</code>'s releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/vite</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/bc6e4b85bf1dce84e2947f81cbb9881a77427de7"><code>bc6e4b8</code></a> Fallback to <code>config.createResolver</code> for <code>client</code> and <code>ssr</code> environments in `@...</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/f212b0fc22c3e6f93a5068654e67bd2818109b95"><code>f212b0f</code></a> fix: restore full page reload for watched external files on Vite 7.1+ (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19670">#19670</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19644">#19644</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e3e85b364fc62a19b97a4250854580132e7967c7"><code>e3e85b3</code></a> [tailwindcss-vite] Add Register dependency messages logline (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19611">#19611</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/@tailwindcss-vite">compare view</a></li> </ul> </details> <br /> Updates `tailwindcss` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md">tailwindcss's changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d15d92ca60b2c06a11c2db6a24dfcca18147de59"><code>d15d92c</code></a> Allow trailing dash in functional utility names (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19696">#19696</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/6118f4f6a796ece218d145b626770e3fb9163d91"><code>6118f4f</code></a> Fix/misc docs and tests (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19652">#19652</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/5a4a7eba3a3db4f4a834f37a3e37624fe9c4daa7"><code>5a4a7eb</code></a> fix(canonicalize): prevent collapse cache pollution across calls (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19675">#19675</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d0a56128721b7be01703b7879056f38443239fc5"><code>d0a5612</code></a> Add mauve, olive, mist, and taupe color palettes (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19627">#19627</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/ed52d3e6c9c20ca2a1c23d57d346ac399ebe9400"><code>ed52d3e</code></a> feat: handle backslash in <code>@utility</code> name (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19626">#19626</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/6eb3b324340f451a14389b7ed97f43a264ad4487"><code>6eb3b32</code></a> Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19688">#19688</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19644">#19644</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/tailwindcss">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for tailwindcss since your current version.</p> </details> <br /> Updates `eslint-plugin-mdx` from 3.6.2 to 3.7.0 <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.7.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/602">#602</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/e189e74c4a9f77cea0c398800652dd897d5fa071"><code>e189e74</code></a> Thanks <a href="https://github.com/astrochemx"><code>@​astrochemx</code></a>! - feat: <code>eslint</code> 10 support</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/606">#606</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - chore: use OIDC for publishing</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a>, <a href="https://github.com/mdx-js/eslint-mdx/commit/00a836938fed26c4bd95358d25a0f045fcee6245"><code>00a8369</code></a>]:</p> <ul> <li>eslint-mdx@3.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/f717ff284a5fb8c6cf3c99318d0a1316686b9c8f"><code>f717ff2</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/603">#603</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a> chore: use OIDC for publishing (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/606">#606</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/00a836938fed26c4bd95358d25a0f045fcee6245"><code>00a8369</code></a> fix: remove unneeded dependency upon uvu (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/600">#600</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/e189e74c4a9f77cea0c398800652dd897d5fa071"><code>e189e74</code></a> feat: <code>eslint</code> 10 support (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/602">#602</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.6.2...eslint-plugin-mdx@3.7.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for eslint-plugin-mdx since your current version.</p> </details> <br /> Updates `@tailwindcss/cli` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/cli</code>'s releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/cli</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9c4cd8c7ca8f406644770a4e7731e8102ca2723"><code>d9c4cd8</code></a> Update enhanced-resolve 5.18.4 → 5.19.0 (minor) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19658">#19658</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19644">#19644</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d6ad8dddcfa774b6b7963fb40ef08bdfffa9f1d9"><code>d6ad8dd</code></a> Update enhanced-resolve 5.18.3 → 5.18.4 (patch) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19462">#19462</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/219e019b2458a5441bf7e3cf54884ed8b888f3cc"><code>219e019</code></a> CLI: Emit comment when source maps are saved to files (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19447">#19447</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/@tailwindcss-cli">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 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>
2026-02-27 23:09:58 +00:00
"@tailwindcss/vite": "^4.2.1",
"@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",
2024-09-18 06:10:09 +00:00
"@types/ws": "^8",
Bump @vitejs/plugin-react-swc from 4.2.2 to 4.2.3 in the dev-dependencies-patch group (#2874) Bumps the dev-dependencies-patch group with 1 update: [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc). Updates `@vitejs/plugin-react-swc` from 4.2.2 to 4.2.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md"><code>@​vitejs/plugin-react-swc</code>'s changelog</a>.</em></p> <blockquote> <h2>4.2.3 (2026-02-02)</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/12914fa8c1d32323db6a134d46cd0ca83db91cd1"><code>12914fa</code></a> release: plugin-react-swc@4.2.3</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/99e480cf01323268b6f7d5e582ba1662728845d9"><code>99e480c</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1090">#1090</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/4a858ea0539ec5a85cbf733287713730560ce268"><code>4a858ea</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.10 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1088">#1088</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/45da3a89b96a5fa16c7d8094272da0d9331b18ff"><code>45da3a8</code></a> fix(deps): update swc monorepo (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1089">#1089</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/77f5e429d49b53c4115581abccaa9f5405bdf079"><code>77f5e42</code></a> fix(deps): update react 19.2.4 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1084">#1084</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/e327da491fcc0eb9e10b98d7dd674b8375cb0f4f"><code>e327da4</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1083">#1083</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/8528e98bb94da1ba32f24d24966ccb89d6cfd006"><code>8528e98</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.9 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1082">#1082</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/58dfb9d70f3d12db529c2e3da8e80ad36168cceb"><code>58dfb9d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1066">#1066</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/fefad3dfd9a8505cb8e99d48848d56aa56a7bb48"><code>fefad3d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1048">#1048</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/a5124db7210019b8c2a3f170d8a218262eba8da4"><code>a5124db</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.8 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1047">#1047</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite-plugin-react/commits/plugin-react-swc@4.2.3/packages/plugin-react-swc">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@vitejs/plugin-react-swc&package-manager=npm_and_yarn&previous-version=4.2.2&new-version=4.2.3)](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 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>
2026-02-24 02:45:07 +00:00
"@vitejs/plugin-react-swc": "4.2.3",
2025-08-15 16:36:54 +00:00
"@vitest/coverage-istanbul": "^3.0.9",
2026-02-17 06:59:18 +00:00
"electron": "^40.4.1",
"electron-builder": "^26.8",
"electron-vite": "^5.0",
"eslint": "^9.39",
2025-08-15 16:36:54 +00:00
"eslint-config-prettier": "^10.1.8",
Bump globals from 17.3.0 to 17.4.0 in the dev-dependencies-minor group (#2996) Bumps the dev-dependencies-minor group with 1 update: [globals](https://github.com/sindresorhus/globals). Updates `globals` from 17.3.0 to 17.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sindresorhus/globals/releases">globals's releases</a>.</em></p> <blockquote> <h2>v17.4.0</h2> <ul> <li>Update globals (2026-03-01) (<a href="https://redirect.github.com/sindresorhus/globals/issues/338">#338</a>) d43a051</li> </ul> <hr /> <p><a href="https://github.com/sindresorhus/globals/compare/v17.3.0...v17.4.0">https://github.com/sindresorhus/globals/compare/v17.3.0...v17.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sindresorhus/globals/commit/a9cfd7493fb701474d4dc946283c7b9d63d64134"><code>a9cfd74</code></a> 17.4.0</li> <li><a href="https://github.com/sindresorhus/globals/commit/d43a051c48fbb8c549bb98a7cf294ba84680a7a1"><code>d43a051</code></a> Update globals (2026-03-01) (<a href="https://redirect.github.com/sindresorhus/globals/issues/338">#338</a>)</li> <li>See full diff in <a href="https://github.com/sindresorhus/globals/compare/v17.3.0...v17.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=globals&package-manager=npm_and_yarn&previous-version=17.3.0&new-version=17.4.0)](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 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>
2026-03-06 17:18:33 +00:00
"globals": "^17.4.0",
Bump node-abi from 4.25.0 to 4.26.0 in the dev-dependencies-minor group (#2799) Bumps the dev-dependencies-minor group with 1 update: [node-abi](https://github.com/electron/node-abi). Updates `node-abi` from 4.25.0 to 4.26.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.26.0</h2> <h1><a href="https://github.com/electron/node-abi/compare/v4.25.0...v4.26.0">4.26.0</a> (2026-01-20)</h1> <h3>Features</h3> <ul> <li>update ABI registry (<a href="https://redirect.github.com/electron/node-abi/issues/266">#266</a>) (<a href="https://github.com/electron/node-abi/commit/8be60087814dac4d3c41aa989ee41158a395f2fe">8be6008</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/node-abi/commit/8be60087814dac4d3c41aa989ee41158a395f2fe"><code>8be6008</code></a> feat: update ABI registry (<a href="https://redirect.github.com/electron/node-abi/issues/266">#266</a>)</li> <li>See full diff in <a href="https://github.com/electron/node-abi/compare/v4.25.0...v4.26.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=node-abi&package-manager=npm_and_yarn&previous-version=4.25.0&new-version=4.26.0)](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>
2026-01-28 23:50:51 +00:00
"node-abi": "^4.26.0",
2025-08-15 16:36:54 +00:00
"postcss": "^8.5.6",
Bump the dev-dependencies-patch group with 2 updates (#2798) Bumps the dev-dependencies-patch group with 2 updates: [prettier](https://github.com/prettier/prettier) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `prettier` from 3.8.0 to 3.8.1 <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.8.1</h2> <ul> <li>Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/pull/18706">#18706</a> by <a href="https://github.com/porada"><code>@​porada</code></a>)</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#381">Changelog</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.8.1</h1> <p><a href="https://github.com/prettier/prettier/compare/3.8.0...3.8.1">diff</a></p> <h4>Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/pull/18706">#18706</a> by <a href="https://github.com/porada"><code>@​porada</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="ts"><code>// Input import * as prettierPluginEstree from &quot;prettier/plugins/estree&quot;; <p>// Prettier 3.8.0 // Property 'printers' does not exist on type 'typeof import(&quot;prettier/plugins/estree&quot;)'. ts(2339) prettierPluginEstree.printers.estree; //=&gt; any</p> <p>// Prettier 3.8.1 prettierPluginEstree.printers.estree; //=&gt; Printer prettierPluginEstree.printers[&quot;estree-json&quot;]; //=&gt; Printer </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/90983f40dce5e20beea4e5618b5e0426a6a7f4f0"><code>90983f4</code></a> Release 3.8.1</li> <li><a href="https://github.com/prettier/prettier/commit/57f702f7656e6fc03873f8121480c321b2f44c8c"><code>57f702f</code></a> Include available <code>printers</code> in plugin type declarations (<a href="https://redirect.github.com/prettier/prettier/issues/18706">#18706</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/bece82785141274c12956b0af3bae77a44ae3a9e"><code>bece827</code></a> Revert change in release script</li> <li><a href="https://github.com/prettier/prettier/commit/82a4ab26f1e7fccd0041272de12a3c6b942e622b"><code>82a4ab2</code></a> Bump Prettier dependency to 3.8.0</li> <li><a href="https://github.com/prettier/prettier/commit/5213ee463c653f47e1821de414a4f30573f83337"><code>5213ee4</code></a> Clean changelog_unreleased</li> <li><a href="https://github.com/prettier/prettier/commit/f95ad0f8e1dd9fb5507e7088f42f91fa6b5f3cb0"><code>f95ad0f</code></a> Comment out finished steps</li> <li><a href="https://github.com/prettier/prettier/commit/b2034e819aef944fe1fe3bbf532118885a854f64"><code>b2034e8</code></a> Fix release script</li> <li><a href="https://github.com/prettier/prettier/commit/5824b15189303d52892ffbc0812751533666c674"><code>5824b15</code></a> Release 3.8.0</li> <li><a href="https://github.com/prettier/prettier/commit/04336012b351529f624eaeb3ac9af52a5b7b7c01"><code>0433601</code></a> Add blog post for v3.8.0 (<a href="https://redirect.github.com/prettier/prettier/issues/18639">#18639</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c45fef106ec4d1efdcd61a64c3dd3298272b3d99"><code>c45fef1</code></a> Fix LWC attribute with <code>--embedded-language-formatting off</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18383">#18383</a>)</li> <li>See full diff in <a href="https://github.com/prettier/prettier/compare/3.8.0...3.8.1">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.53.0 to 8.53.1 <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.53.1</h2> <h2>8.53.1 (2026-01-19)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [consistent-indexed-object-style] skip fixer if interface is a default export (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11951">#11951</a>)</li> <li><strong>utils:</strong> make RuleCreator root defaultOptions optional (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11956">#11956</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Cameron</li> <li>Yukihiro Hasegawa <a href="https://github.com/y-hsgw"><code>@​y-hsgw</code></a></li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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.53.1 (2026-01-19)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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/9940e53a156ec75b2e2910a63310650b4d19a6c6"><code>9940e53</code></a> chore(release): publish 8.53.1</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.53.1/packages/typescript-eslint">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>
2026-01-28 23:51:15 +00:00
"prettier": "^3.8.1",
Bump the dev-dependencies-minor group with 2 updates (#2673) Bumps the dev-dependencies-minor group with 2 updates: [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `prettier-plugin-jsdoc` from 1.7.0 to 1.8.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/blob/master/CHANGELOG.md">prettier-plugin-jsdoc's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.7.1...v1.8.0">1.8.0</a> (2025-12-07)</h2> <h3>Features</h3> <ul> <li>add jsdocBracketSpacing (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/01c13e1e1b49d8de54136744fdcd912b2fb267e5">01c13e1</a>)</li> </ul> <h3><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.7.0...v1.7.1">1.7.1</a> (2025-12-07)</h3> <h3>Bug Fixes</h3> <ul> <li>prevent preprocess again (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/c0d77bf3e085b5b86dc11121a69ff63672a595b1">c0d77bf</a>)</li> </ul> <h2><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.5.0...v1.6.0">1.6.0</a> (2025-11-28)</h2> <h3>Features</h3> <ul> <li>add balance to jsdocLineWrappingStyle (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/7fd51824abcc3d37cff47a2084459d1b9220c7a0">7fd5182</a>)</li> <li>add jsdocEmptyCommentStrategy option to handle empty JSDoc comments (&quot;keep&quot;| &quot;remove&quot;) &quot;remove&quot; is default (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/86e7ebb11f320fc8195ffe4544b26203efb126f8">86e7ebb</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>async plugin like tailwind (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/48d56aaa647e627e7b6981621457aba6aba41bf5">48d56aa</a>)</li> <li>printWidth (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/d84dcc596d6409f53a7d7e82b5c8b8db7fbc3d5e">d84dcc5</a>)</li> <li>support <a href="https://github.com/this"><code>@​this</code></a> tag (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/666338444c400a3f88cdbf84bf0b85128017cebe">6663384</a>)</li> </ul> <h2><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.3...v1.4.0">1.4.0</a> (2025-10-29)</h2> <h3>Features</h3> <ul> <li>add support for import tags (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/252">#252</a>) (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/ab5c488b2d92d9706c01aaca08f410b16cd6a7da">ab5c488</a>)</li> </ul> <h3><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.2...v1.3.3">1.3.3</a> (2025-07-01)</h3> <h3>Bug Fixes</h3> <ul> <li>add compatibility with prettier v3.6.0 (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/246">#246</a>) (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/a50b62e931c736d9408723f2959b1b5d137dbbed">a50b62e</a>)</li> </ul> <h3><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.0...v1.3.1">1.3.1</a> (2025-01-03)</h3> <h3>Bug Fixes</h3> <ul> <li>add package manager (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/ffafd40cde8c8becee16ae1bc7a5cbe2cd2e42c8">ffafd40</a>)</li> <li>provide correct types path in conditional exports (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/222">#222</a>) (<a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/7a884b6d51c0aea75d0c8b4c7faf642d925367ac">7a884b6</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/hosseinmd/prettier-plugin-jsdoc/commits">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.48.1 to 8.49.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.49.0</h2> <h2>8.49.0 (2025-12-08)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> use <code>Intl.Segmenter</code> instead of <code>graphemer</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11804">#11804</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>deps:</strong> update dependency prettier to v3.7.2 (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11820">#11820</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Justin McBride</li> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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.49.0 (2025-12-08)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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/864595a44b56beb9870bf0f41d59cf7f8f48276a"><code>864595a</code></a> chore(release): publish 8.49.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/32b7e891bd60ae993e85018ceefa2a0c07590688"><code>32b7e89</code></a> chore(deps): update dependency <code>@​vitest/eslint-plugin</code> to v1.5.1 (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/11816">#11816</a>)</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.49.0/packages/typescript-eslint">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-12-12 21:58:23 +00:00
"prettier-plugin-jsdoc": "^1.8.0",
Bump the dev-dependencies-minor group with 3 updates (#2424) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the dev-dependencies-minor group with 3 updates: [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc), [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `@vitejs/plugin-react-swc` from 4.0.1 to 4.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/releases"><code>@​vitejs/plugin-react-swc</code>'s releases</a>.</em></p> <blockquote> <h2>plugin-react@4.1.0</h2> <ul> <li>Add <code>@types/babel__cores</code> to dependencies (fix <a href="https://redirect.github.com/vitejs/vite-plugin-react/issues/211">#211</a>)</li> <li>Improve build perf when not using Babel plugins by lazy loading <code>@babel/core</code> <a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/212">#212</a></li> <li>Better invalidation message when an export is added &amp; fix HMR for export of nullish values <a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/215">#215</a></li> <li>Include non-dev jsx runtime in optimizeDeps &amp; support HMR for JS files using the non dev runtime <a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/224">#224</a></li> <li>The build output now contains a <code>index.d.cts</code> file so you don't get types errors when setting <code>moduleResolution</code> to <code>node16</code> or <code>nodenext</code> in your tsconfig (we recommend using <code>bundler</code> which is more close to how Vite works)</li> </ul> <h2>plugin-react-swc@4.1.0</h2> <h3>Set SWC cacheRoot options</h3> <p>This is set to <code>{viteCacheDir}/swc</code> and override the default of <code>.swc</code>.</p> <h3>Perf: simplify refresh wrapper generation (<a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/835">#835</a>)</h3> <h2>plugin-react@4.0.4</h2> <ul> <li>Fix <a href="https://github.com/vitejs/vite-plugin-react/discussions/198">#198</a>: Enable Babel if presets list is not empty</li> </ul> <h2>plugin-react@4.0.3</h2> <ul> <li>Revert <a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/108">#108</a>: Remove throw when refresh runtime is loaded twice to enable usage in micro frontend apps. This was added to help fix setup usage, and this is not worth an annoying warning for others or a config parameter.</li> </ul> <h2>plugin-react@4.0.2</h2> <ul> <li>Fix fast-refresh for files that are transformed into jsx (<a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/188">#188</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md"><code>@​vitejs/plugin-react-swc</code>'s changelog</a>.</em></p> <blockquote> <h2>4.1.0 (2025-09-17)</h2> <h3>Set SWC cacheRoot options</h3> <p>This is set to <code>{viteCacheDir}/swc</code> and override the default of <code>.swc</code>.</p> <h3>Perf: simplify refresh wrapper generation (<a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/835">#835</a>)</h3> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/vitejs/vite-plugin-react/commits/v4.1.0/packages/plugin-react-swc">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.2.0 to 4.3.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.3.0</h2> <h2>What's Changed</h2> <ul> <li>feat: allow configuration of <code>organizeImportsTypeOrder</code>(<a href="https://redirect.github.com/simonhaenisch/prettier-plugin-organize-imports/pull/152">simonhaenisch/prettier-plugin-organize-imports#152</a>) - thanks <a href="https://github.com/goege64"><code>@​goege64</code></a> for your first contribution 🎉</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.2.0...v4.3.0">https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.2.0...v4.3.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/f354c0ef8689f4592807e85fa5bc0157588390c7"><code>f354c0e</code></a> 4.3.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/98d053aa1669d0c5d25b898ac7a321e327efd00d"><code>98d053a</code></a> chore: update dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/bc4d8facb09bb386322a0fde63f1f9115cc44df5"><code>bc4d8fa</code></a> feat: allow configuration of <code>organizeImportsTypeOrder</code> (<a href="https://redirect.github.com/simonhaenisch/prettier-plugin-organize-imports/issues/152">#152</a>)</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/ed9c19a5b193d75c88301a9c0a5cac96c9cfa6d6"><code>ed9c19a</code></a> docs: update changelog</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.2.0...v4.3.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.43.0 to 8.46.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.46.0</h2> <h2>8.46.0 (2025-10-06)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> [no-unsafe-member-access] add allowOptionalChaining option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11659">#11659</a>)</li> <li><strong>eslint-plugin-internal:</strong> [no-dynamic-tests] new internal Lint rule to ban dynamic syntax in generating tests (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11323">#11323</a>)</li> <li><strong>rule-schema-to-typescript-types:</strong> clean up and make public (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11633">#11633</a>)</li> <li><strong>typescript-eslint:</strong> export util types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10848">#10848</a>, <a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10849">#10849</a>)</li> <li><strong>typescript-estree:</strong> mention file specifics in project service allowDefaultProject error (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11635">#11635</a>)</li> <li><strong>typescript-estree:</strong> private identifiers can only appear on LHS of in expressions (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9232">#9232</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [no-floating-promises] remove excess parentheses in suggestions (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11487">#11487</a>)</li> <li><strong>eslint-plugin:</strong> [unbound-method] improve wording around <code>this: void</code> and binding (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11634">#11634</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] ignore deprecated <code>export import</code>s (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11603">#11603</a>)</li> <li><strong>eslint-plugin:</strong> removed error type previously deprecated (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11674">#11674</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly-parameter-types] ignore tagged primitives (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11660">#11660</a>)</li> <li><strong>rule-tester:</strong> deprecate TestCaseError#type and LintMessage#nodeType (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11628">#11628</a>)</li> <li><strong>typescript-estree:</strong> forbid <code>abstract</code> modifier in object methods (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11656">#11656</a>)</li> <li><strong>typescript-estree:</strong> forbid abstract method and accessor to have implementation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11657">#11657</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>fisker Cheung <a href="https://github.com/fisker"><code>@​fisker</code></a></li> <li>Josh Goldberg ✨</li> <li>Joshua Chen</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>Mister-Hope <a href="https://github.com/Mister-Hope"><code>@​Mister-Hope</code></a></li> <li>Richard Torres <a href="https://github.com/richardtorres314"><code>@​richardtorres314</code></a></li> <li>Victor Genaev <a href="https://github.com/mainframev"><code>@​mainframev</code></a></li> <li>Younsang Na <a href="https://github.com/nayounsang"><code>@​nayounsang</code></a></li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>v8.45.0</h2> <h2>8.45.0 (2025-09-29)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> expose rule name via RuleModule interface (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11616">#11616</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li>disable generating declaration maps (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11627">#11627</a>)</li> <li><strong>ast-spec:</strong> narrow ArrowFunctionExpression.generator to false (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11636">#11636</a>)</li> <li><strong>eslint-plugin:</strong> [no-base-to-string] check if superclass is ignored (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11617">#11617</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] ignoreBooleanCoercion should not apply to top-level ternary expressions (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11614">#11614</a>)</li> </ul> <!-- 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.46.0 (2025-10-06)</h2> <h3>🚀 Features</h3> <ul> <li><strong>typescript-eslint:</strong> export util types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10848">#10848</a>, <a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10849">#10849</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Mister-Hope <a href="https://github.com/Mister-Hope"><code>@​Mister-Hope</code></a></li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.45.0 (2025-09-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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.44.1 (2025-09-22)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.44.0 (2025-09-15)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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/aec785e33d63b248231c3e68c9aeb792caf21acc"><code>aec785e</code></a> chore(release): publish 8.46.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/5c1a1592ccb21868ddff8543988125af0219f831"><code>5c1a159</code></a> feat(typescript-eslint): export util types (close <a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/10848">#10848</a>) (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/10849">#10849</a>)</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/255e9e274b24f86f3179146c20c156506312c92c"><code>255e9e2</code></a> chore(release): publish 8.45.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/c1980522cd11f2de1a49ff6a30b4be7765a843ff"><code>c198052</code></a> chore(release): publish 8.44.1</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/77056f77e6fdca54b66ec692e5cefbd9f7a626dd"><code>77056f7</code></a> chore(release): publish 8.44.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/typescript-eslint">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-10-10 17:11:54 +00:00
"prettier-plugin-organize-imports": "^4.3.0",
"sass": "1.91.0",
Bump the dev-dependencies-minor group with 4 updates (#2953) Bumps the dev-dependencies-minor group with 4 updates: [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite), [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss), [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) and [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli). Updates `@tailwindcss/vite` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/vite</code>'s releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/vite</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/bc6e4b85bf1dce84e2947f81cbb9881a77427de7"><code>bc6e4b8</code></a> Fallback to <code>config.createResolver</code> for <code>client</code> and <code>ssr</code> environments in `@...</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/f212b0fc22c3e6f93a5068654e67bd2818109b95"><code>f212b0f</code></a> fix: restore full page reload for watched external files on Vite 7.1+ (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19670">#19670</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19644">#19644</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e3e85b364fc62a19b97a4250854580132e7967c7"><code>e3e85b3</code></a> [tailwindcss-vite] Add Register dependency messages logline (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19611">#19611</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/@tailwindcss-vite">compare view</a></li> </ul> </details> <br /> Updates `tailwindcss` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md">tailwindcss's changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d15d92ca60b2c06a11c2db6a24dfcca18147de59"><code>d15d92c</code></a> Allow trailing dash in functional utility names (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19696">#19696</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/6118f4f6a796ece218d145b626770e3fb9163d91"><code>6118f4f</code></a> Fix/misc docs and tests (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19652">#19652</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/5a4a7eba3a3db4f4a834f37a3e37624fe9c4daa7"><code>5a4a7eb</code></a> fix(canonicalize): prevent collapse cache pollution across calls (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19675">#19675</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d0a56128721b7be01703b7879056f38443239fc5"><code>d0a5612</code></a> Add mauve, olive, mist, and taupe color palettes (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19627">#19627</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/ed52d3e6c9c20ca2a1c23d57d346ac399ebe9400"><code>ed52d3e</code></a> feat: handle backslash in <code>@utility</code> name (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19626">#19626</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/6eb3b324340f451a14389b7ed97f43a264ad4487"><code>6eb3b32</code></a> Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19688">#19688</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19644">#19644</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/tailwindcss">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for tailwindcss since your current version.</p> </details> <br /> Updates `eslint-plugin-mdx` from 3.6.2 to 3.7.0 <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.7.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/602">#602</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/e189e74c4a9f77cea0c398800652dd897d5fa071"><code>e189e74</code></a> Thanks <a href="https://github.com/astrochemx"><code>@​astrochemx</code></a>! - feat: <code>eslint</code> 10 support</li> </ul> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/eslint-mdx/pull/606">#606</a> <a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a> Thanks <a href="https://github.com/remcohaszing"><code>@​remcohaszing</code></a>! - chore: use OIDC for publishing</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a>, <a href="https://github.com/mdx-js/eslint-mdx/commit/00a836938fed26c4bd95358d25a0f045fcee6245"><code>00a8369</code></a>]:</p> <ul> <li>eslint-mdx@3.7.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/f717ff284a5fb8c6cf3c99318d0a1316686b9c8f"><code>f717ff2</code></a> chore: release package(s) (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/603">#603</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/a38199079b79ba787fd4c7e50a34b15615ac727b"><code>a381990</code></a> chore: use OIDC for publishing (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/606">#606</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/00a836938fed26c4bd95358d25a0f045fcee6245"><code>00a8369</code></a> fix: remove unneeded dependency upon uvu (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/600">#600</a>)</li> <li><a href="https://github.com/mdx-js/eslint-mdx/commit/e189e74c4a9f77cea0c398800652dd897d5fa071"><code>e189e74</code></a> feat: <code>eslint</code> 10 support (<a href="https://redirect.github.com/mdx-js/eslint-mdx/issues/602">#602</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.6.2...eslint-plugin-mdx@3.7.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for eslint-plugin-mdx since your current version.</p> </details> <br /> Updates `@tailwindcss/cli` from 4.1.18 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/cli</code>'s releases</a>.</em></p> <blockquote> <h2>v4.2.1</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>v4.2.0</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/cli</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.2.1] - 2026-02-23</h2> <h3>Fixed</h3> <ul> <li>Allow trailing dash in functional utility names for backwards compatibility (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19696">#19696</a>)</li> <li>Properly detect classes containing <code>.</code> characters within curly braces in MDX files (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19711">#19711</a>)</li> </ul> <h2>[4.2.0] - 2026-02-18</h2> <h3>Added</h3> <ul> <li>Add mauve, olive, mist, and taupe color palettes to the default theme (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19627">#19627</a>)</li> <li>Add <code>@tailwindcss/webpack</code> package to run Tailwind CSS as a webpack plugin (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19610">#19610</a>)</li> <li>Add <code>pbs-*</code> and <code>pbe-*</code> utilities for <code>padding-block-start</code> and <code>padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>mbs-*</code> and <code>mbe-*</code> utilities for <code>margin-block-start</code> and <code>margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-pbs-*</code> and <code>scroll-pbe-*</code> utilities for <code>scroll-padding-block-start</code> and <code>scroll-padding-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>scroll-mbs-*</code> and <code>scroll-mbe-*</code> utilities for <code>scroll-margin-block-start</code> and <code>scroll-margin-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>border-bs-*</code> and <code>border-be-*</code> utilities for <code>border-block-start</code> and <code>border-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19601">#19601</a>)</li> <li>Add <code>inline-*</code>, <code>min-inline-*</code>, <code>max-inline-*</code> utilities for <code>inline-size</code>, <code>min-inline-size</code>, and <code>max-inline-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>block-*</code>, <code>min-block-*</code>, <code>max-block-*</code> utilities for <code>block-size</code>, <code>min-block-size</code>, and <code>max-block-size</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19612">#19612</a>)</li> <li>Add <code>inset-s-*</code>, <code>inset-e-*</code>, <code>inset-bs-*</code>, <code>inset-be-*</code> utilities for <code>inset-inline-start</code>, <code>inset-inline-end</code>, <code>inset-block-start</code>, and <code>inset-block-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> <li>Add <code>font-features-*</code> utility for <code>font-feature-settings</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19623">#19623</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Prevent double <code>@supports</code> wrapper for <code>color-mix</code> values (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19450">#19450</a>)</li> <li>Allow whitespace around <code>@source inline()</code> argument (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19461">#19461</a>)</li> <li>Emit comment when source maps are saved to files when using <code>@tailwindcss/cli</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19447">#19447</a>)</li> <li>Detect utilities containing capital letters followed by numbers (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19465">#19465</a>)</li> <li>Fix class extraction for Rails' strict locals (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19525">#19525</a>)</li> <li>Align <code>@utility</code> name validation with Oxide scanner rules (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19524">#19524</a>)</li> <li>Fix infinite loop when using <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19633">#19633</a>)</li> <li>Allow multiples of <code>.25</code> in <code>aspect-*</code> fractions (e.g. <code>aspect-8.5/11</code>) (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19688">#19688</a>)</li> <li>Ensure changes to external files listed via <code>@source</code> trigger a full page reload when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19670">#19670</a>)</li> <li>Improve performance of Oxide scanner in bigger projects by reducing file system walks (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19632">#19632</a>)</li> <li>Ensure import aliases in Astro v5 work without crashing when using <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/19677">#19677</a>)</li> <li>Allow escape characters in <code>@utility</code> names to improve support with formatters such as Biome (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19626">#19626</a>)</li> <li>Fix incorrect canonicalization results when canonicalizing multiple times (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19675">#19675</a>)</li> <li>Add <code>.jj</code> to default ignored content directories (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19687">#19687</a>)</li> </ul> <h3>Deprecated</h3> <ul> <li>Deprecate <code>start-*</code> and <code>end-*</code> utilities in favor of <code>inset-s-*</code> and <code>inset-e-*</code> utilities (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19613">#19613</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1dce64ee7ec2e414c845b4e268ac3b9b89aaf0c8"><code>1dce64e</code></a> 4.2.1 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19714">#19714</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/1b16411919457ee47d38910fd07e134e9765eb4c"><code>1b16411</code></a> 4.2.0 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19695">#19695</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9c4cd8c7ca8f406644770a4e7731e8102ca2723"><code>d9c4cd8</code></a> Update enhanced-resolve 5.18.4 → 5.19.0 (minor) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19658">#19658</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d9fff9f5956433e362dc231ca16dcd77497def76"><code>d9fff9f</code></a> docs: update package README CI badge to main (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19692">#19692</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/8ed67bf5510d8435d2be766b25245abe15b3bcef"><code>8ed67bf</code></a> Fix Tailwind CSS package README GitHub links (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19644">#19644</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d6ad8dddcfa774b6b7963fb40ef08bdfffa9f1d9"><code>d6ad8dd</code></a> Update enhanced-resolve 5.18.3 → 5.18.4 (patch) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19462">#19462</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/219e019b2458a5441bf7e3cf54884ed8b888f3cc"><code>219e019</code></a> CLI: Emit comment when source maps are saved to files (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19447">#19447</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.2.1/packages/@tailwindcss-cli">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 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>
2026-02-27 23:09:58 +00:00
"tailwindcss": "^4.2.1",
"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",
Bump tsx from 4.20.6 to 4.21.0 in the dev-dependencies-minor group (#2638) Bumps the dev-dependencies-minor group with 1 update: [tsx](https://github.com/privatenumber/tsx). Updates `tsx` from 4.20.6 to 4.21.0 <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.21.0</h2> <h1><a href="https://github.com/privatenumber/tsx/compare/v4.20.6...v4.21.0">4.21.0</a> (2025-11-30)</h1> <h3>Features</h3> <ul> <li>upgrade esbuild (<a href="https://redirect.github.com/privatenumber/tsx/issues/748">#748</a>) (<a href="https://github.com/privatenumber/tsx/commit/048fb623870f22c5026ad84187b545d418d2dfe8">048fb62</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.21.0"><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/f6284cd50575ce6e8d110f63266d66cb9cde3b88"><code>f6284cd</code></a> ci: lock in semantic-release v24</li> <li><a href="https://github.com/privatenumber/tsx/commit/048fb623870f22c5026ad84187b545d418d2dfe8"><code>048fb62</code></a> feat: upgrade esbuild (<a href="https://redirect.github.com/privatenumber/tsx/issues/748">#748</a>)</li> <li>See full diff in <a href="https://github.com/privatenumber/tsx/compare/v4.20.6...v4.21.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tsx&package-manager=npm_and_yarn&previous-version=4.20.6&new-version=4.21.0)](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-12-05 17:43:05 +00:00
"tsx": "^4.21.0",
Bump the dev-dependencies-patch group across 1 directory with 8 updates (#2394) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the dev-dependencies-patch group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.13` | `4.1.14` | | [@types/css-tree](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/css-tree) | `2.3.10` | `2.3.11` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.13` | `4.1.14` | | [tsx](https://github.com/privatenumber/tsx) | `4.20.5` | `4.20.6` | | [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` | | [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `3.1.2` | `3.1.3` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.1.2` | `0.1.3` | | [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli) | `4.1.13` | `4.1.14` | Updates `@tailwindcss/vite` from 4.1.13 to 4.1.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/vite</code>'s releases</a>.</em></p> <blockquote> <h2>v4.1.14</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/vite</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.1.14] - 2025-10-01</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/b67cbcf6ccaa58097cb6d8d7e0eb1fca1091ccca"><code>b67cbcf</code></a> Prepare v4.1.14 release (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19037">#19037</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/5a94f81e7e1ba651c407e0eb2fafd00162fe3d0f"><code>5a94f81</code></a> Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/18948">#18948</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.14/packages/@tailwindcss-vite">compare view</a></li> </ul> </details> <br /> Updates `@types/css-tree` from 2.3.10 to 2.3.11 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/css-tree">compare view</a></li> </ul> </details> <br /> Updates `tailwindcss` from 4.1.13 to 4.1.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's releases</a>.</em></p> <blockquote> <h2>v4.1.14</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md">tailwindcss's changelog</a>.</em></p> <blockquote> <h2>[4.1.14] - 2025-10-01</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/b67cbcf6ccaa58097cb6d8d7e0eb1fca1091ccca"><code>b67cbcf</code></a> Prepare v4.1.14 release (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19037">#19037</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/cc8fefc154d0f460811709879d1f04818684be13"><code>cc8fefc</code></a> Update magic-string to version 0.30.19</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/210575a6a5494fe4feceacb80166627b84ab3e0f"><code>210575a</code></a> Update dedent 1.6.0 → 1.7.0 (minor) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19010">#19010</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/c6e0a55d3681c854328b5b7e08324353ba5e0430"><code>c6e0a55</code></a> Ensure files with only <code>@theme</code> produce no output when built (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18979">#18979</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/9a5bae2038912c5a640b2c645f518e647eda750d"><code>9a5bae2</code></a> Revert &quot;Update all pnpm dependencies (2025-09-20) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18971">#18971</a>)&quot;</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/42eadfd1ee3c128b2f75b227d418c57a14b45116"><code>42eadfd</code></a> Update all pnpm dependencies (2025-09-20) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18971">#18971</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/c2aab49c774f8921dedea95ca6065f3a34eb16a4"><code>c2aab49</code></a> Bump Prettier (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18960">#18960</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/d1fd645bebb6086772584c326c8cfe793b4a7480"><code>d1fd645</code></a> Proposal: Allow overwriting static utilities that have a namespace (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18056">#18056</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/340b59dcde2401f03f1edecf1c1332190adc9d44"><code>340b59d</code></a> Do not generate <code>grid-column</code> when configuring <code>grid-column-start</code> or `grid-c...</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/b7c7e48c5d897d1b3d20c936e2baccc89b75f43e"><code>b7c7e48</code></a> Add <code>@container-size</code> utility (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/18901">#18901</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.14/packages/tailwindcss">compare view</a></li> </ul> </details> <br /> Updates `tsx` from 4.20.5 to 4.20.6 <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.20.6</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.20.5...v4.20.6">4.20.6</a> (2025-09-26)</h2> <h3>Bug Fixes</h3> <ul> <li>properly hide relaySignal from process.listeners() (<a href="https://redirect.github.com/privatenumber/tsx/issues/741">#741</a>) (<a href="https://github.com/privatenumber/tsx/commit/710a42473ebfdff362818bed4fd1f5c7a27837e2">710a424</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.20.6"><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/710a42473ebfdff362818bed4fd1f5c7a27837e2"><code>710a424</code></a> fix: properly hide relaySignal from process.listeners() (<a href="https://redirect.github.com/privatenumber/tsx/issues/741">#741</a>)</li> <li><a href="https://github.com/privatenumber/tsx/commit/20b91c44bbb00006f182fee3b0bcfc55aaec6e44"><code>20b91c4</code></a> docs: make sponsors dynamic</li> <li><a href="https://github.com/privatenumber/tsx/commit/08dcd59a3a05774897a641a943702ca4b47192e0"><code>08dcd59</code></a> chore: move vercel settings to root</li> <li>See full diff in <a href="https://github.com/privatenumber/tsx/compare/v4.20.5...v4.20.6">compare view</a></li> </ul> </details> <br /> Updates `typescript` from 5.9.2 to 5.9.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.9.3</h2> <p>Note: this tag was recreated to point at the correct commit. The npm package contained the correct content.</p> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/">release announcement</a></p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.0%22+is%3Aclosed+">fixed issues query for Typescript 5.9.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.1%22+is%3Aclosed+">fixed issues query for Typescript 5.9.1 (RC)</a>.</li> <li><em>No specific changes for TypeScript 5.9.2 (Stable)</em></li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.9.3%22+is%3Aclosed+">fixed issues query for Typescript 5.9.3 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/c63de15a992d37f0d6cec03ac7631872838602cb"><code>c63de15</code></a> Bump version to 5.9.3 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/8428ca4cc8a7ecc9ac18dd0258016228814f5eaf"><code>8428ca4</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/62438">#62438</a> (Fix incorrectly ignored dts file fr...) into release-5.9 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/a131cac6831aa6532ea963d0cb3131b957cad980"><code>a131cac</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/62351">#62351</a> (Add missing Float16Array constructo...) into release-5.9 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/04243333584a5bfaeb3434c0982c6280fe87b8d5"><code>0424333</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/62423">#62423</a> (Revert PR 61928) into release-5.9 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/62425">#62425</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/bdb641a4347af822916fb8cdb9894c9c2d2421dd"><code>bdb641a</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/62311">#62311</a> (Fix parenthesizer rules for manuall...) into release-5.9 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/0d9b9b92e2aca2f75c979a801abbc21bff473748"><code>0d9b9b9</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/61978">#61978</a> (Restructure CI to prepare for requi...) into release-5.9 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/2dce0c58af51cf9a9068365dc2f756c61b82b597"><code>2dce0c5</code></a> Intentionally regress one buggy declaration output to an older version (<a href="https://redirect.github.com/microsoft/TypeScript/issues/62163">#62163</a>)</li> <li>See full diff in <a href="https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-static-copy` from 3.1.2 to 3.1.3 <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.3</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/202">#202</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/938818611347b7996ae8649d607390e587c549d9"><code>9388186</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Switched to use trusted publisher to publish the package.</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.3</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/202">#202</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/938818611347b7996ae8649d607390e587c549d9"><code>9388186</code></a> Thanks <a href="https://github.com/sapphi-red"><code>@​sapphi-red</code></a>! - Switched to use trusted publisher to publish the package.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/f4da2cf351642aa9d76ba92c9ec4f55b3d304783"><code>f4da2cf</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/203">#203</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/938818611347b7996ae8649d607390e587c549d9"><code>9388186</code></a> ci: use trusted publisher (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/202">#202</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/f5bc0f670612ab3dbb7f0cabc1322d4f7a3cdf0b"><code>f5bc0f6</code></a> fix(deps): update all non-major dependencies (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/200">#200</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/ffc8441f12a5ad207b223d3ae7d0982735c1e599"><code>ffc8441</code></a> chore(deps): update actions/setup-node action to v5 (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/201">#201</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/efbc0a14c7b3b6c2283cb531ed21aa694d4b5d55"><code>efbc0a1</code></a> chore(deps): update actions/checkout action to v5 (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/198">#198</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/c5581b5554af5000097690e6e67fc5ec42a217af"><code>c5581b5</code></a> chore(deps): update actions/download-artifact action to v5 (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/199">#199</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/4548f79be917f2f367b7ce747c14a7e9ddcfc86c"><code>4548f79</code></a> ci: run tests against <code>v*</code> branches</li> <li>See full diff in <a href="https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@3.1.2...vite-plugin-static-copy@3.1.3">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for vite-plugin-static-copy since your current version.</p> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.1.2 to 0.1.3 <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.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/515">#515</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/3f266d4fda5750c1d8a3cdd0e37d263bb6a03566"><code>3f266d4</code></a> Thanks <a href="https://github.com/guyutongxue"><code>@​guyutongxue</code></a>! - Make Markdown syntax nodes typed with <code>JSX.IntrinsicElements</code>.</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/3f266d4fda5750c1d8a3cdd0e37d263bb6a03566"><code>3f266d4</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.3</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.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/mdx-js/mdx-analyzer/pull/515">#515</a> <a href="https://github.com/mdx-js/mdx-analyzer/commit/3f266d4fda5750c1d8a3cdd0e37d263bb6a03566"><code>3f266d4</code></a> Thanks <a href="https://github.com/guyutongxue"><code>@​guyutongxue</code></a>! - Make Markdown syntax nodes typed with <code>JSX.IntrinsicElements</code>.</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/3f266d4fda5750c1d8a3cdd0e37d263bb6a03566"><code>3f266d4</code></a>]:</p> <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.7.3</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/4851c2df02cd9c25a3cebc34cf9c4c1841c1feab"><code>4851c2d</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/518">#518</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.1.3/packages/typescript-plugin">compare view</a></li> </ul> </details> <br /> Updates `@tailwindcss/cli` from 4.1.13 to 4.1.14 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/cli</code>'s releases</a>.</em></p> <blockquote> <h2>v4.1.14</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/cli</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.1.14] - 2025-10-01</h2> <h3>Fixed</h3> <ul> <li>Handle <code>'</code> syntax in ClojureScript when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18888">#18888</a>)</li> <li>Handle <code>@variant</code> inside <code>@custom-variant</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18885">#18885</a>)</li> <li>Merge suggestions when using <code>@utility</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18900">#18900</a>)</li> <li>Ensure that file system watchers created when using the CLI are always cleaned up (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18905">#18905</a>)</li> <li>Do not generate <code>grid-column</code> utilities when configuring <code>grid-column-start</code> or <code>grid-column-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Do not generate <code>grid-row</code> utilities when configuring <code>grid-row-start</code> or <code>grid-row-end</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18907">#18907</a>)</li> <li>Prevent duplicate CSS when overwriting a static utility with a theme key (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18056">#18056</a>)</li> <li>Show Lightning CSS warnings (if any) when optimizing/minifying (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18918">#18918</a>)</li> <li>Use <code>default</code> export condition for <code>@tailwindcss/vite</code> (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18948">#18948</a>)</li> <li>Re-throw errors from PostCSS nodes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18373">#18373</a>)</li> <li>Detect classes in markdown inline directives (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18967">#18967</a>)</li> <li>Ensure files with only <code>@theme</code> produce no output when built (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18979">#18979</a>)</li> <li>Support Maud templates when extracting classes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18988">#18988</a>)</li> <li>Upgrade: Do not migrate <code>variant = 'outline'</code> during upgrades (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/18922">#18922</a>)</li> <li>Upgrade: Show version mismatch (if any) when running upgrade tool (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19028">#19028</a>)</li> <li>Upgrade: Ensure first class inside <code>className</code> is migrated (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> <li>Upgrade: Migrate classes inside <code>*ClassName</code> and <code>*Class</code> attributes (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19031">#19031</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/b67cbcf6ccaa58097cb6d8d7e0eb1fca1091ccca"><code>b67cbcf</code></a> Prepare v4.1.14 release (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19037">#19037</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/ee1c7a69dc4cbbf8745c9f5495b616fd193a9f19"><code>ee1c7a6</code></a> Fix CLI watcher cleanup race (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/18905">#18905</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.14/packages/@tailwindcss-cli">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-10-07 20:38:22 +00:00
"typescript": "^5.9.3",
"typescript-eslint": "^8.56",
Bump vite from 6.3.6 to 6.4.1 (#2464) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.6 to 6.4.1. <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>create-vite@6.4.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.4.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.4.1</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.4.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>create-vite@6.4.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/create-vite@6.4.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.4.0</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.4.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> <h2>v6.3.7</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v6.3.7/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/50034340401b4043bb0b158f18ffb7ae1b7f5c86"><code>5003434</code></a> fix(preview): use host url to open browser (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19836">#19836</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/bf9728e79e8df905de457e15001e65e33cf13f0e"><code>bf9728e</code></a> release: v6.3.0-beta.2</li> <li><a href="https://github.com/vitejs/vite/commit/380c10e665e78ef732a8d7b6c8f60a1226fc4c3b"><code>380c10e</code></a> fix(hmr): run HMR handler sequentially (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19793">#19793</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/8bed1de5710f2a097af0e22a196545446d98f988"><code>8bed1de</code></a> fix: addWatchFile doesn't work if base is specified (fixes <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19792">#19792</a>) (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19794">#19794</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/0a0c50a7ed38017469ed6dcec941c2d8d0efd0d0"><code>0a0c50a</code></a> refactor: simplify pluginFilter implementation (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19828">#19828</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/59d0b35b30f3a38be33c0a9bdc177945b6f7eb1b"><code>59d0b35</code></a> perf(css): avoid constructing <code>renderedModules</code> (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19775">#19775</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/175a83909f02d3b554452a7bd02b9f340cdfef70"><code>175a839</code></a> fix: reject requests with <code>#</code> in request-target (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19830">#19830</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/e2e11b15a6083777ee521e26a3f79c3859abd411"><code>e2e11b1</code></a> fix(module-runner): allow already resolved id as entry (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/19768">#19768</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/7200deec91a501fb84734e23906f80808734540c"><code>7200dee</code></a> fix: correct the behavior when multiple transform filter options are specifie...</li> <li><a href="https://github.com/vitejs/vite/commit/b1251720d47f15615ea354991cdaa90d9a94aae5"><code>b125172</code></a> fix(css): remove empty chunk imports correctly when chunk file name contained...</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/create-vite@6.4.1/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.6&new-version=6.4.1)](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-10-21 16:43:38 +00:00
"vite": "^6.4.1",
Bump the dev-dependencies-patch group with 6 updates (#2532) Bumps the dev-dependencies-patch group with 6 updates: | Package | From | To | | --- | --- | --- | | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.16` | `4.1.17` | | [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `4.2.0` | `4.2.1` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.1.16` | `4.1.17` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.2` | `8.46.3` | | [vite-plugin-image-optimizer](https://github.com/FatehAK/vite-plugin-image-optimizer) | `2.0.2` | `2.0.3` | | [@tailwindcss/cli](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli) | `4.1.16` | `4.1.17` | Updates `@tailwindcss/vite` from 4.1.16 to 4.1.17 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/vite</code>'s releases</a>.</em></p> <blockquote> <h2>v4.1.17</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/vite</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.1.17] - 2025-11-06</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e9c9c4f79db00a7a1dc7a3e2a13ced3b19f55555"><code>e9c9c4f</code></a> Release v4.1.17 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite/issues/19272">#19272</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/@tailwindcss-vite">compare view</a></li> </ul> </details> <br /> Updates `@vitejs/plugin-react-swc` from 4.2.0 to 4.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/releases"><code>@​vitejs/plugin-react-swc</code>'s releases</a>.</em></p> <blockquote> <h2>plugin-react@4.2.1</h2> <p>Remove generic parameter on <code>Plugin</code> to avoid type error with Rollup 4/Vite 5 and <code>skipLibCheck: false</code>.</p> <p>I expect very few people to currently use this feature, but if you are extending the React plugin via <code>api</code> object, you can get back the typing of the hook by importing <code>ViteReactPluginApi</code>:</p> <pre lang="ts"><code>import type { Plugin } from 'vite' import type { ViteReactPluginApi } from '@vitejs/plugin-react' <p>export const somePlugin: Plugin = {<br /> name: 'some-plugin',<br /> api: {<br /> reactBabel: (babelConfig) =&gt; {<br /> babelConfig.plugins.push('some-babel-plugin')<br /> },<br /> } satisfies ViteReactPluginApi,<br /> }<br /> </code></pre></p> <h2>plugin-react-swc@4.2.1</h2> <h3>Fix <code>@vitejs/plugin-react-swc/preamble</code> on build (<a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/962">#962</a>)</h3> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md"><code>@​vitejs/plugin-react-swc</code>'s changelog</a>.</em></p> <blockquote> <h2>4.2.1 (2025-11-05)</h2> <h3>Fix <code>@vitejs/plugin-react-swc/preamble</code> on build (<a href="https://redirect.github.com/vitejs/vite-plugin-react/pull/962">#962</a>)</h3> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/vitejs/vite-plugin-react/commits/v4.2.1/packages/plugin-react-swc">compare view</a></li> </ul> </details> <br /> Updates `tailwindcss` from 4.1.16 to 4.1.17 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's releases</a>.</em></p> <blockquote> <h2>v4.1.17</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md">tailwindcss's changelog</a>.</em></p> <blockquote> <h2>[4.1.17] - 2025-11-06</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e9c9c4f79db00a7a1dc7a3e2a13ced3b19f55555"><code>e9c9c4f</code></a> Release v4.1.17 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19272">#19272</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/dc6a3ce349a082e6c437288e52d0eea9a9ea4ff2"><code>dc6a3ce</code></a> Substitute <code>@variant</code> inside utilities (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19263">#19263</a>)</li> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e71e70eda9c0372872b9c8bf7d70d35c22004bd4"><code>e71e70e</code></a> Update magic-string 0.30.19 → 0.30.21 (minor) (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss/issues/19238">#19238</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/tailwindcss">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.46.2 to 8.46.3 <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.46.3</h2> <h2>8.46.3 (2025-11-03)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [no-misused-promises] expand union type to retrieve target property (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11706">#11706</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-enum-values] support signed numbers (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11722">#11722</a>, <a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11723">#11723</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Evgeny Stepanovych <a href="https://github.com/undsoft"><code>@​undsoft</code></a></li> <li>tao</li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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.46.3 (2025-11-03)</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://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/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/d9f3497dfb72e90fd7dc977c77d41b0eb9df4909"><code>d9f3497</code></a> chore(release): publish 8.46.3</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.3/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-image-optimizer` from 2.0.2 to 2.0.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/FatehAK/vite-plugin-image-optimizer/releases">vite-plugin-image-optimizer's releases</a>.</em></p> <blockquote> <h2>✨ v2.0.3</h2> <ul> <li>fix: allow regex to match a folder for exclude and include options (<a href="https://redirect.github.com/FatehAK/vite-plugin-image-optimizer/issues/55">#55</a>) (e68c9b4)</li> <li>Renovate: lockfile and non-major updates <ul> <li>Multiple Lock file maintenance and non-major dependency updates across versions for stability and security.</li> <li><code>@​typescript-eslint/parser</code> - Upgraded sequentially from ^8.35.1 → ^8.46.2</li> <li>eslint - Incremental updates from ^9.30.1 → ^9.38.0</li> <li>vite - Updated to v6.4.1 (security patch)</li> <li><code>@​types/node</code> - Upgraded to ^24.3.0</li> <li>pnpm - Updated to v10.15.0</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/a738e4c4bd17e3cb5e0d3102ddd4f4fee775d2db"><code>a738e4c</code></a> chore: Release v2.0.3</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/e68c9b40bebb55321cab338a0e4ac7b41472df46"><code>e68c9b4</code></a> fix: allow regex to match a folder for exclude and include options (<a href="https://redirect.github.com/FatehAK/vite-plugin-image-optimizer/issues/55">#55</a>)</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/07aa35e5808da6489464423607bd7ac481852815"><code>07aa35e</code></a> chore(deps): Lock file maintenance</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/13e2b45b9292a3d599f6e402b608d9f7cac6c1f4"><code>13e2b45</code></a> chore(deps): Update non-major dependencies</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/4302c3a8f9e3ba9cadc266c9d13cb0b427a4b96e"><code>4302c3a</code></a> chore(deps): Update dependency <code>@​typescript-eslint/parser</code> to ^8.46.2</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/a72dcfe32e5ac7a28fc1f13f9dabbfc370f34f3a"><code>a72dcfe</code></a> chore(deps): Update dependency vite to v6.4.1 [SECURITY]</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/0eebdadd601af1d27a533b65320527415969ac29"><code>0eebdad</code></a> chore(deps): Lock file maintenance</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/b0c50dd93f73208fcf4b9e01a62f6f2193894d46"><code>b0c50dd</code></a> chore(deps): Update non-major dependencies</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/00d6afa6e761e59529b2939266c7ea3304b015f6"><code>00d6afa</code></a> chore(deps): Update eslint monorepo to ^9.38.0</li> <li><a href="https://github.com/FatehAK/vite-plugin-image-optimizer/commit/08a481ab8b61246fd6b146deec53ed6f4ed8ddde"><code>08a481a</code></a> chore(deps): Update dependency <code>@​typescript-eslint/parser</code> to ^8.46.1</li> <li>Additional commits viewable in <a href="https://github.com/FatehAK/vite-plugin-image-optimizer/compare/v2.0.2...v2.0.3">compare view</a></li> </ul> </details> <br /> Updates `@tailwindcss/cli` from 4.1.16 to 4.1.17 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/releases"><code>@​tailwindcss/cli</code>'s releases</a>.</em></p> <blockquote> <h2>v4.1.17</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md"><code>@​tailwindcss/cli</code>'s changelog</a>.</em></p> <blockquote> <h2>[4.1.17] - 2025-11-06</h2> <h3>Fixed</h3> <ul> <li>Substitute <code>@variant</code> inside legacy JS APIs (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19263">#19263</a>)</li> <li>Prevent occasional crash on Windows when loaded into a worker thread (<a href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/19242">#19242</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tailwindlabs/tailwindcss/commit/e9c9c4f79db00a7a1dc7a3e2a13ced3b19f55555"><code>e9c9c4f</code></a> Release v4.1.17 (<a href="https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-cli/issues/19272">#19272</a>)</li> <li>See full diff in <a href="https://github.com/tailwindlabs/tailwindcss/commits/v4.1.17/packages/@tailwindcss-cli">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-11-08 02:20:59 +00:00
"vite-plugin-image-optimizer": "^2.0.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
"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 the prod-dependencies-patch group with 2 updates (#2615) Bumps the prod-dependencies-patch group with 2 updates: [@ai-sdk/react](https://github.com/vercel/ai) and [ai](https://github.com/vercel/ai). Updates `@ai-sdk/react` from 2.0.101 to 2.0.104 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vercel/ai/commit/38c67febc7649e8a6fc13a3877c1aa9bcbdf0943"><code>38c67fe</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10658">#10658</a>)</li> <li><a href="https://github.com/vercel/ai/commit/d1dbe5d2c157b0a0c5965d4c6ee3696a33b8c234"><code>d1dbe5d</code></a> Backport: fix(anthropic): throw error in doStream when the first stream chunk...</li> <li><a href="https://github.com/vercel/ai/commit/e54994d46d6d85e4e43025aa08e1f65d0176cfe4"><code>e54994d</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10650">#10650</a>)</li> <li><a href="https://github.com/vercel/ai/commit/e609736a781533750dceb0b7a3860d7e502ae2a2"><code>e609736</code></a> Backport: feat (provider/gateway): add intellect-3 model id (<a href="https://redirect.github.com/vercel/ai/issues/10648">#10648</a>)</li> <li><a href="https://github.com/vercel/ai/commit/9d661720d8ab9d1dc4c11dd8b1383e0a336eeed2"><code>9d66172</code></a> Backport: docs: add migration guide for v6 (<a href="https://redirect.github.com/vercel/ai/issues/10639">#10639</a>)</li> <li><a href="https://github.com/vercel/ai/commit/7bf3bce0b005a8c2cbf34c764c5e70bc1969d0d9"><code>7bf3bce</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10634">#10634</a>)</li> <li><a href="https://github.com/vercel/ai/commit/2e2fd83db3adc8aa13dbecb960b0584267036ddb"><code>2e2fd83</code></a> Backport: refactoring(provider/openai): simplify code (<a href="https://redirect.github.com/vercel/ai/issues/10632">#10632</a>)</li> <li><a href="https://github.com/vercel/ai/commit/a2c893b4f437fc817294a1f46869da0262f57e49"><code>a2c893b</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10627">#10627</a>)</li> <li><a href="https://github.com/vercel/ai/commit/4c4713d7d6d5e355112e1ec1b4b30a4dce8c6880"><code>4c4713d</code></a> Backport: feat(google-vertex): add claude-opus-4-5@20251101 model support (<a href="https://redirect.github.com/vercel/ai/issues/1">#1</a>...</li> <li><a href="https://github.com/vercel/ai/commit/09db8a876f13538e876648a2975e5bc9c8f04d78"><code>09db8a8</code></a> Backport: chore(mcp): improve developer experience and test portability (<a href="https://redirect.github.com/vercel/ai/issues/10622">#10622</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vercel/ai/compare/@ai-sdk/react@2.0.101...@ai-sdk/react@2.0.104">compare view</a></li> </ul> </details> <br /> Updates `ai` from 5.0.101 to 5.0.104 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vercel/ai/releases">ai's releases</a>.</em></p> <blockquote> <h2>ai@5.0.104</h2> <h3>Patch Changes</h3> <ul> <li>d1dbe5d: move DelayedPromise into provider utils</li> <li>Updated dependencies [d1dbe5d] <ul> <li><code>@​ai-sdk/provider-utils</code><a href="https://github.com/3"><code>@​3</code></a>.0.18</li> <li><code>@​ai-sdk/gateway</code><a href="https://github.com/2"><code>@​2</code></a>.0.17</li> </ul> </li> </ul> <h2>ai@5.0.103</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [e609736] <ul> <li><code>@​ai-sdk/gateway</code><a href="https://github.com/2"><code>@​2</code></a>.0.16</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vercel/ai/commit/38c67febc7649e8a6fc13a3877c1aa9bcbdf0943"><code>38c67fe</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10658">#10658</a>)</li> <li><a href="https://github.com/vercel/ai/commit/d1dbe5d2c157b0a0c5965d4c6ee3696a33b8c234"><code>d1dbe5d</code></a> Backport: fix(anthropic): throw error in doStream when the first stream chunk...</li> <li><a href="https://github.com/vercel/ai/commit/e54994d46d6d85e4e43025aa08e1f65d0176cfe4"><code>e54994d</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10650">#10650</a>)</li> <li><a href="https://github.com/vercel/ai/commit/e609736a781533750dceb0b7a3860d7e502ae2a2"><code>e609736</code></a> Backport: feat (provider/gateway): add intellect-3 model id (<a href="https://redirect.github.com/vercel/ai/issues/10648">#10648</a>)</li> <li><a href="https://github.com/vercel/ai/commit/9d661720d8ab9d1dc4c11dd8b1383e0a336eeed2"><code>9d66172</code></a> Backport: docs: add migration guide for v6 (<a href="https://redirect.github.com/vercel/ai/issues/10639">#10639</a>)</li> <li><a href="https://github.com/vercel/ai/commit/7bf3bce0b005a8c2cbf34c764c5e70bc1969d0d9"><code>7bf3bce</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10634">#10634</a>)</li> <li><a href="https://github.com/vercel/ai/commit/2e2fd83db3adc8aa13dbecb960b0584267036ddb"><code>2e2fd83</code></a> Backport: refactoring(provider/openai): simplify code (<a href="https://redirect.github.com/vercel/ai/issues/10632">#10632</a>)</li> <li><a href="https://github.com/vercel/ai/commit/a2c893b4f437fc817294a1f46869da0262f57e49"><code>a2c893b</code></a> Version Packages (<a href="https://redirect.github.com/vercel/ai/issues/10627">#10627</a>)</li> <li><a href="https://github.com/vercel/ai/commit/4c4713d7d6d5e355112e1ec1b4b30a4dce8c6880"><code>4c4713d</code></a> Backport: feat(google-vertex): add claude-opus-4-5@20251101 model support (<a href="https://redirect.github.com/vercel/ai/issues/1">#1</a>...</li> <li><a href="https://github.com/vercel/ai/commit/09db8a876f13538e876648a2975e5bc9c8f04d78"><code>09db8a8</code></a> Backport: chore(mcp): improve developer experience and test portability (<a href="https://redirect.github.com/vercel/ai/issues/10622">#10622</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vercel/ai/compare/ai@5.0.101...ai@5.0.104">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-11-28 20:20:14 +00:00
"@ai-sdk/react": "^2.0.104",
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",
"@observablehq/plot": "^0.6.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
"@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 virtualized flat-list TreeView component and preview sandbox (#2972) This PR introduces a new frontend TreeView widget intended for VSCode-style explorer use cases, without backend wiring yet. It provides a reusable, backend-agnostic API with virtualization, flat visible-row projection, and preview coverage under `frontend/preview`. - **What this adds** - New `TreeView` component in `frontend/app/treeview/treeview.tsx` designed around: - flat `visibleRows` projection with `depth` (not recursive render) - TanStack Virtual row virtualization - responsive width constraints + horizontal/vertical scrolling - single-selection, expand/collapse, and basic keyboard navigation - New preview: `frontend/preview/previews/treeview.preview.tsx` with async mocked directory loading and width controls. - Focused tests: `frontend/app/treeview/treeview.test.ts` for projection/sorting/synthetic-row behavior. - **Tree model + projection behavior** - Defines a canonical `TreeNodeData` wrapper (separate from direct `FileInfo` coupling) with: - `id`, `parentId`, `isDirectory`, `mimeType`, flags, `childrenStatus`, `childrenIds`, `capInfo` - Builds `visibleRows` from `nodesById + expandedIds` and injects synthetic rows for: - `loading` - `error` - `capped` (“Showing first N entries”) - **Interaction model implemented** - Click: select row - Double-click directory (or chevron click): expand/collapse - Double-click file: emits `onOpenFile` - Keyboard: - Up/Down: move visible selection - Left: collapse selected dir or move to parent - Right: expand selected dir or move to first child - **Sorting + icon strategy** - Child sorting is deterministic and stable: - directories first - case-insensitive label order - id/path tie-breaker - Icon resolution supports directory/file/error states and simple mimetype/extension fallbacks. - **Example usage** ```tsx <TreeView rootIds={["workspace:/"]} initialNodes={{ "workspace:/": { id: "workspace:/", isDirectory: true, childrenStatus: "unloaded" } }} fetchDir={async (id, limit) => ({ nodes: data[id].slice(0, limit), capped: data[id].length > limit })} maxDirEntries={120} minWidth={100} maxWidth={400} height={420} onSelectionChange={(id) => setSelection(id)} /> ``` - **<screenshot>** - https://github.com/user-attachments/assets/6f8b8a2a-f9a1-454d-bf4f-1d4a97b6e123 <!-- START COPILOT CODING AGENT TIPS --> --- 💬 We'd love your input! Share your thoughts on Copilot coding agent in our [2 minute survey](https://gh.io/copilot-coding-agent-survey). --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: sawka <2722291+sawka@users.noreply.github.com>
2026-03-04 02:25:42 +00:00
"@tanstack/react-virtual": "^3.13.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
"@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",
"ai": "^5.0.92",
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
"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",
"dayjs": "^1.11.19",
Bump debug from 4.4.1 to 4.4.3 in the prod-dependencies-patch group (#2365) Bumps the prod-dependencies-patch group with 1 update: [debug](https://github.com/debug-js/debug). Updates `debug` from 4.4.1 to 4.4.3 <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.3</h2> <p>Functionally identical release to <code>4.4.1</code>.</p> <p>Version <code>4.4.2</code> is <strong>compromised</strong>. Please see <a href="https://redirect.github.com/debug-js/debug/issues/1005">debug-js/debug#1005</a>.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/debug-js/debug/commit/6b2c5fbdb7d414483d9e306ef234acb4cd7ea67c"><code>6b2c5fb</code></a> 4.4.3</li> <li>See full diff in <a href="https://github.com/debug-js/debug/compare/4.4.1...4.4.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=debug&package-manager=npm_and_yarn&previous-version=4.4.1&new-version=4.4.3)](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:41 +00:00
"debug": "^4.4.3",
"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",
2026-02-24 02:54:10 +00:00
"mermaid": "^11.12.3",
"monaco-editor": "^0.55.1",
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",
2026-02-24 02:54:10 +00:00
"overlayscrollbars": "^2.14.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",
2026-02-24 02:54:10 +00:00
"qs": "^6.15.0",
2025-10-07 23:57:23 +00:00
"react": "^19.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
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
2025-10-07 23:57:23 +00:00
"react-dom": "^19.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
"react-frame-component": "^5.2.7",
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",
"react-resizable-panels": "^3.0.6",
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",
"remark-flexible-toc": "^1.2.4",
"remark-gfm": "^4.0.1",
2025-08-15 16:36:54 +00:00
"remark-github-blockquote-alert": "^1.3.1",
"rxjs": "^7.8.2",
"semver": "^7.7.3",
2025-08-15 16:36:54 +00:00
"shell-quote": "^1.8.3",
2026-02-24 02:54:10 +00:00
"shiki": "^3.22.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
"sprintf-js": "^1.1.3",
"streamdown": "^1.6.10",
2026-02-24 02:54:10 +00:00
"tailwind-merge": "^3.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
"throttle-debounce": "^5.0.2",
"tinycolor2": "^1.6.0",
2026-02-24 02:54:10 +00:00
"unist-util-visit": "^5.1.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",
2026-01-22 02:35:40 +00:00
"winston": "^3.19.0",
"ws": "^8.19.0",
2025-08-15 16:36:54 +00:00
"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"
]
}