waveterm/package.json

159 lines
5.3 KiB
JSON
Raw Normal View History

{
2024-09-19 23:04:47 +02: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 22:10:35 +02:00
"author": {
"name": "Command Line Inc",
"email": "info@commandline.dev"
},
2024-09-19 23:04:47 +02: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 22:10:35 +02:00
"license": "Apache-2.0",
2025-01-25 01:06:16 +01:00
"version": "0.11.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 22:10:35 +02:00
"homepage": "https://waveterm.dev",
"build": {
2024-09-19 23:04:47 +02: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 22:10:35 +02:00
},
"private": true,
"main": "./dist/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"start": "electron-vite preview",
"build:dev": "electron-vite build --mode development",
"build:prod": "electron-vite build --mode production",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"coverage": "vitest run --coverage",
"test": "vitest",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
Bump @chromatic-com/storybook from 3.2.2 to 3.2.4 in the storybook-patch group (#1764) Bumps the storybook-patch group with 1 update: [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests). Updates `@chromatic-com/storybook` from 3.2.2 to 3.2.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chromaui/addon-visual-tests/releases"><code>@​chromatic-com/storybook</code>'s releases</a>.</em></p> <blockquote> <h2>v3.2.3</h2> <h4>🐛 Bug Fix</h4> <ul> <li>Fix reading <code>status</code> of <code>undefined</code> in urql's <code>didAuthError</code> handler <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/349">#349</a> (<a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li> <li>Add steps to link for local testing <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/347">#347</a> (<a href="https://github.com/codykaup"><code>@​codykaup</code></a>)</li> </ul> <h4>Authors: 2</h4> <ul> <li>Cody Kaup (<a href="https://github.com/codykaup"><code>@​codykaup</code></a>)</li> <li>Gert Hengeveld (<a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/chromaui/addon-visual-tests/blob/v3.2.4/CHANGELOG.md"><code>@​chromatic-com/storybook</code>'s changelog</a>.</em></p> <blockquote> <h1>v3.2.4 (Fri Jan 17 2025)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Remove the connection timeout notification <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/351">#351</a> (<a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>)</li> <li>Set up Codecov <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/350">#350</a> (<a href="https://github.com/paulelliott"><code>@​paulelliott</code></a>)</li> </ul> <h4>Authors: 2</h4> <ul> <li>Paul Elliott (<a href="https://github.com/paulelliott"><code>@​paulelliott</code></a>)</li> <li>Valentin Palkovic (<a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>)</li> </ul> <hr /> <h1>v3.2.3 (Thu Dec 19 2024)</h1> <h4>🐛 Bug Fix</h4> <ul> <li>Fix reading <code>status</code> of <code>undefined</code> in urql's <code>didAuthError</code> handler <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/349">#349</a> (<a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li> <li>Add steps to link for local testing <a href="https://redirect.github.com/chromaui/addon-visual-tests/pull/347">#347</a> (<a href="https://github.com/codykaup"><code>@​codykaup</code></a>)</li> </ul> <h4>Authors: 2</h4> <ul> <li>Cody Kaup (<a href="https://github.com/codykaup"><code>@​codykaup</code></a>)</li> <li>Gert Hengeveld (<a href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/a490548df4b25b4830e5cd7b1619e87758041a34"><code>a490548</code></a> Bump version to: 3.2.4 [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/d86ecff42cc3f62573665acaef2e5cf8b6858ffb"><code>d86ecff</code></a> Update CHANGELOG.md [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/dcee16503ced5b0f803e43861829ce09cdfb3793"><code>dcee165</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/addon-visual-tests/issues/351">#351</a> from chromaui/valentin/remove-connection-timeout-noti...</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/127a468c9e7a952857cc0028e7793b726c422fc3"><code>127a468</code></a> Remove the connection timeout notification</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/a7a43dae6d1370722228b60dabdf71632c9f04cc"><code>a7a43da</code></a> Merge pull request <a href="https://redirect.github.com/chromaui/addon-visual-tests/issues/350">#350</a> from chromaui/set-up-codecov</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/8499c6a425b267903fe8707ca01c87b3691c9176"><code>8499c6a</code></a> Upload coverage reports to Codecov</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/476a673686fde4fa584fec3e2098b42c6fc04407"><code>476a673</code></a> Set up vitest coverage reporting</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/74d3d8d5755acadf400351a1be1eb7978ed0139f"><code>74d3d8d</code></a> Update vitest to 2.1.8</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/871413fd8a26d698c554bf37ab6a077de644c77d"><code>871413f</code></a> Bump version to: 3.2.3 [skip ci]</li> <li><a href="https://github.com/chromaui/addon-visual-tests/commit/a29f90153644fa2d7593ac32ee2d3fe8bda40822"><code>a29f901</code></a> Update CHANGELOG.md [skip ci]</li> <li>Additional commits viewable in <a href="https://github.com/chromaui/addon-visual-tests/compare/v3.2.2...v3.2.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@chromatic-com/storybook&package-manager=npm_and_yarn&previous-version=3.2.2&new-version=3.2.4)](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-01-17 20:26:26 +01:00
"@chromatic-com/storybook": "^3.2.4",
Bump the dev-dependencies-minor group with 5 updates (#1887) [//]: # (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 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.10` | `22.12.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | Updates `@eslint/js` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.19.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.10 to 22.12.0 <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 `eslint` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/208e0b199f5d5f9dd173e58e3f5db19c1f0c38ed"><code>208e0b1</code></a> 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/196dfdace64d095f2facb3d8ebed1be9cb2ccab3"><code>196dfda</code></a> Build: changelog update for 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0">compare view</a></li> </ul> </details> <br /> Updates `semver` from 7.6.3 to 7.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>v7.7.0</h2> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/2cfcbb5021059d0b6642a77400efb4b51133bd75"><code>2cfcbb5</code></a> chore: release 7.7.0 (<a href="https://redirect.github.com/npm/node-semver/issues/750">#750</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> fix(diff): fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> fix: add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> feat: add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> docs(readme): added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> docs: clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> chore: bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> chore: postinstall for dependabot template-oss PR</li> <li><a href="https://github.com/npm/node-semver/commit/6502a15af34181b14a443d38bb75fc2d84bff0f9"><code>6502a15</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.1 to 4.23.3</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0</h2> <h2>8.22.0 (2025-01-27)</h2> <h3>🚀 Features</h3> <ul> <li><strong>parser:</strong> add standalone isolatedDeclarations option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10499">#10499</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10517">#10517</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents] handle nested types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10638">#10638</a>)</li> <li><strong>eslint-plugin:</strong> [no-shadow] don't report unnecessarily on valid ways of using module augmentation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10616">#10616</a>)</li> <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle accessor keyword (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10678">#10678</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10552">#10552</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression] handle template literal type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10612">#10612</a>)</li> <li><strong>type-utils:</strong> support matching intersection types in <code>TypeOrValueSpecifier</code> with a <code>PackageSpecifier</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10667">#10667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg ✨</li> <li>mdm317</li> <li>Olivier Zalmanski <a href="https://github.com/OlivierZal"><code>@​OlivierZal</code></a></li> <li>Ronen Amiel</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</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.22.0 (2025-01-27)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/94e809808a445dde05ab6f284dec010269482eb5"><code>94e8098</code></a> chore(release): publish 8.22.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.22.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-01-31 19:50:16 +01:00
"@eslint/js": "^9.19.0",
"@rollup/plugin-node-resolve": "^16.0.0",
Bump the storybook-patch group with 10 updates (#1889) Bumps the storybook-patch group with 10 updates: | Package | From | To | | --- | --- | --- | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.1` | `8.5.2` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.1` | `8.5.2` | | [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.5.1` | `8.5.2` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.1` | `8.5.2` | | [@storybook/builder-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/builders/builder-vite) | `8.5.1` | `8.5.2` | | [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.5.1` | `8.5.2` | | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.5.1` | `8.5.2` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.1` | `8.5.2` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.5.1` | `8.5.2` | | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.1` | `8.5.2` | Updates `@storybook/addon-essentials` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-links` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-links</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-links</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/links">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/builder-vite` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/builder-vite</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/builder-vite</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/builders/builder-vite">compare view</a></li> </ul> </details> <br /> Updates `@storybook/react` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/react</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/react</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/renderers/react">compare view</a></li> </ul> </details> <br /> Updates `@storybook/react-vite` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/react-vite</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/react-vite</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/frameworks/react-vite">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@storybook/theming` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/theming</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/theming">compare view</a></li> </ul> </details> <br /> Updates `storybook` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases">storybook's releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md">storybook's changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/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-01-31 19:43:15 +01:00
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-links": "^8.5.2",
"@storybook/blocks": "^8.5.2",
"@storybook/builder-vite": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/react-vite": "^8.5.2",
"@storybook/test": "^8.5.2",
"@storybook/theming": "^8.5.2",
"@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 22:10:35 +02:00
"@types/css-tree": "^2",
"@types/debug": "^4",
Bump @types/electron from 1.6.10 to 1.6.12 in the electron group (#1185) Bumps the electron group with 1 update: [@types/electron](https://github.com/DefinitelyTyped/DefinitelyTyped). Updates `@types/electron` from 1.6.10 to 1.6.12 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/electron&package-manager=npm_and_yarn&previous-version=1.6.10&new-version=1.6.12)](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>
2024-11-02 18:59:18 +01:00
"@types/electron": "^1.6.12",
Bump the dev-dependencies-minor group with 5 updates (#1887) [//]: # (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 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.10` | `22.12.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | Updates `@eslint/js` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.19.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.10 to 22.12.0 <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 `eslint` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/208e0b199f5d5f9dd173e58e3f5db19c1f0c38ed"><code>208e0b1</code></a> 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/196dfdace64d095f2facb3d8ebed1be9cb2ccab3"><code>196dfda</code></a> Build: changelog update for 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0">compare view</a></li> </ul> </details> <br /> Updates `semver` from 7.6.3 to 7.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>v7.7.0</h2> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/2cfcbb5021059d0b6642a77400efb4b51133bd75"><code>2cfcbb5</code></a> chore: release 7.7.0 (<a href="https://redirect.github.com/npm/node-semver/issues/750">#750</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> fix(diff): fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> fix: add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> feat: add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> docs(readme): added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> docs: clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> chore: bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> chore: postinstall for dependabot template-oss PR</li> <li><a href="https://github.com/npm/node-semver/commit/6502a15af34181b14a443d38bb75fc2d84bff0f9"><code>6502a15</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.1 to 4.23.3</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0</h2> <h2>8.22.0 (2025-01-27)</h2> <h3>🚀 Features</h3> <ul> <li><strong>parser:</strong> add standalone isolatedDeclarations option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10499">#10499</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10517">#10517</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents] handle nested types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10638">#10638</a>)</li> <li><strong>eslint-plugin:</strong> [no-shadow] don't report unnecessarily on valid ways of using module augmentation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10616">#10616</a>)</li> <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle accessor keyword (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10678">#10678</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10552">#10552</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression] handle template literal type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10612">#10612</a>)</li> <li><strong>type-utils:</strong> support matching intersection types in <code>TypeOrValueSpecifier</code> with a <code>PackageSpecifier</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10667">#10667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg ✨</li> <li>mdm317</li> <li>Olivier Zalmanski <a href="https://github.com/OlivierZal"><code>@​OlivierZal</code></a></li> <li>Ronen Amiel</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</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.22.0 (2025-01-27)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/94e809808a445dde05ab6f284dec010269482eb5"><code>94e8098</code></a> chore(release): publish 8.22.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.22.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-01-31 19:50:16 +01:00
"@types/node": "^22.12.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
"@types/papaparse": "^5",
"@types/pngjs": "^6.0.5",
2024-11-04 19:04:32 +01:00
"@types/prop-types": "^15",
Bump @types/react from 18.3.12 to 18.3.13 in the dev-dependencies group across 1 directory (#1388) Bumps the dev-dependencies group with 1 update in the / directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). Updates `@types/react` from 18.3.12 to 18.3.13 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/react&package-manager=npm_and_yarn&previous-version=18.3.12&new-version=18.3.13)](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>
2024-12-05 01:27:10 +01:00
"@types/react": "^18.3.13",
Bump the dev-dependencies group with 7 updates (#1016) Bumps the dev-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.11.1` | `9.12.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.7.4` | `22.7.5` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` | | [eslint](https://github.com/eslint/eslint) | `9.11.1` | `9.12.0` | | [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.8.0` | `8.8.1` | | [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `1.0.6` | `2.0.0` | Updates `@eslint/js` from 9.11.1 to 9.12.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.12.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/5a6a05321ca34480c780be8c2cb7946e4c299001"><code>5a6a053</code></a> feat: update to <code>jiti</code> v2 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18954">#18954</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/17a07fb548ecce24b88e8b2b07491c24ed1111a9"><code>17a07fb</code></a> feat: Hooks for test cases (RuleTester) (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18771">#18771</a>) (Anna Bocharova)</li> <li><a href="https://github.com/eslint/eslint/commit/2ff0e51cedaab967b7ce383437f64b4a6df8608d"><code>2ff0e51</code></a> feat: Implement alternate config lookup (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18742">#18742</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2d174532ae96bcaecf6fd7de78755164378b3a2d"><code>2d17453</code></a> feat: Implement modified cyclomatic complexity (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18896">#18896</a>) (Dmitry Pashkevich)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ea380cac6f598c86b25a2726c2783636c4169957"><code>ea380ca</code></a> fix: Upgrade retry to avoid EMFILE errors (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18986">#18986</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/fdd631964aee250bc5520770bc1fc3f2f2872813"><code>fdd6319</code></a> fix: Issues with type definitions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18940">#18940</a>) (Arya Emami)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ecbd52291d7c118b77016c6bf1c60b7d263c44f0"><code>ecbd522</code></a> docs: Mention code explorer (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18978">#18978</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7ea4ecc6e3320a74c960cb78acc94c0140d15f55"><code>7ea4ecc</code></a> docs: Clarifying the Use of Meta Objects (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18697">#18697</a>) (Amaresh S M)</li> <li><a href="https://github.com/eslint/eslint/commit/d3e4b2ea4a8f76d4d49345c242f013f49635274f"><code>d3e4b2e</code></a> docs: Clarify how to exclude <code>.js</code> files (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18976">#18976</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/57232ff3d50412586df094f052b47adb38f8d9ae"><code>57232ff</code></a> docs: Mention plugin-kit in language docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18973">#18973</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b80ed007cefee086db1ff17cde9f7dd6690459f0"><code>b80ed00</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/cb69ab374c149eb725b2fc5a8f0ff33fd7268a46"><code>cb69ab3</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/7fb0d957c102be499d5358a74928e0ea93913371"><code>7fb0d95</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/493348a9a5dcca29d7fbbe13c67ce13a7a38413b"><code>493348a</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/87a582c8b537d133c140781aa9e3ff0201a3c10f"><code>87a582c</code></a> docs: fix typo in <code>id-match</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18944">#18944</a>) (Jay)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/555aafd06f6dddc743acff06111dc72dd8ea4c4e"><code>555aafd</code></a> chore: upgrade to <code>@eslint/js@9.12.0</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18987">#18987</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/d0a5414c30421e5dbe313790502dbf13b9330fef"><code>d0a5414</code></a> refactor: replace strip-ansi with native module (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18982">#18982</a>) (Cristopher)</li> <li><a href="https://github.com/eslint/eslint/commit/b8270299abe777bb80a065d537aa1d4be74be705"><code>b827029</code></a> chore: Enable JSON5 linting (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18979">#18979</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/8f55ca22d94c1b0ff3be323b97949edef8d880b0"><code>8f55ca2</code></a> chore: Upgrade espree, eslint-visitor-keys, eslint-scope (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18962">#18962</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/c1a2725e9c776d6845d94c866c7f7b1fe0315090"><code>c1a2725</code></a> chore: update dependency mocha to ^10.7.3 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18945">#18945</a>) (Milos Djermanovic)</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.12.0 - October 4, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/555aafd06f6dddc743acff06111dc72dd8ea4c4e"><code>555aafd</code></a> chore: upgrade to <code>@eslint/js@9.12.0</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18987">#18987</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/ea380cac6f598c86b25a2726c2783636c4169957"><code>ea380ca</code></a> fix: Upgrade retry to avoid EMFILE errors (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18986">#18986</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/d0a5414c30421e5dbe313790502dbf13b9330fef"><code>d0a5414</code></a> refactor: replace strip-ansi with native module (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18982">#18982</a>) (Cristopher)</li> <li><a href="https://github.com/eslint/eslint/commit/b8270299abe777bb80a065d537aa1d4be74be705"><code>b827029</code></a> chore: Enable JSON5 linting (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18979">#18979</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/ecbd52291d7c118b77016c6bf1c60b7d263c44f0"><code>ecbd522</code></a> docs: Mention code explorer (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18978">#18978</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7ea4ecc6e3320a74c960cb78acc94c0140d15f55"><code>7ea4ecc</code></a> docs: Clarifying the Use of Meta Objects (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18697">#18697</a>) (Amaresh S M)</li> <li><a href="https://github.com/eslint/eslint/commit/d3e4b2ea4a8f76d4d49345c242f013f49635274f"><code>d3e4b2e</code></a> docs: Clarify how to exclude <code>.js</code> files (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18976">#18976</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/5a6a05321ca34480c780be8c2cb7946e4c299001"><code>5a6a053</code></a> feat: update to <code>jiti</code> v2 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18954">#18954</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/57232ff3d50412586df094f052b47adb38f8d9ae"><code>57232ff</code></a> docs: Mention plugin-kit in language docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18973">#18973</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b80ed007cefee086db1ff17cde9f7dd6690459f0"><code>b80ed00</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/cb69ab374c149eb725b2fc5a8f0ff33fd7268a46"><code>cb69ab3</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/7fb0d957c102be499d5358a74928e0ea93913371"><code>7fb0d95</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/fdd631964aee250bc5520770bc1fc3f2f2872813"><code>fdd6319</code></a> fix: Issues with type definitions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18940">#18940</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/8f55ca22d94c1b0ff3be323b97949edef8d880b0"><code>8f55ca2</code></a> chore: Upgrade espree, eslint-visitor-keys, eslint-scope (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18962">#18962</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/17a07fb548ecce24b88e8b2b07491c24ed1111a9"><code>17a07fb</code></a> feat: Hooks for test cases (RuleTester) (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18771">#18771</a>) (Anna Bocharova)</li> <li><a href="https://github.com/eslint/eslint/commit/493348a9a5dcca29d7fbbe13c67ce13a7a38413b"><code>493348a</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/87a582c8b537d133c140781aa9e3ff0201a3c10f"><code>87a582c</code></a> docs: fix typo in <code>id-match</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18944">#18944</a>) (Jay)</li> <li><a href="https://github.com/eslint/eslint/commit/2ff0e51cedaab967b7ce383437f64b4a6df8608d"><code>2ff0e51</code></a> feat: Implement alternate config lookup (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18742">#18742</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2d174532ae96bcaecf6fd7de78755164378b3a2d"><code>2d17453</code></a> feat: Implement modified cyclomatic complexity (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18896">#18896</a>) (Dmitry Pashkevich)</li> <li><a href="https://github.com/eslint/eslint/commit/c1a2725e9c776d6845d94c866c7f7b1fe0315090"><code>c1a2725</code></a> chore: update dependency mocha to ^10.7.3 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18945">#18945</a>) (Milos Djermanovic)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.12.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.7.4 to 22.7.5 <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/react-dom` from 18.3.0 to 18.3.1 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare view</a></li> </ul> </details> <br /> Updates `eslint` from 9.11.1 to 9.12.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.12.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/5a6a05321ca34480c780be8c2cb7946e4c299001"><code>5a6a053</code></a> feat: update to <code>jiti</code> v2 (<a href="https://redirect.github.com/eslint/eslint/issues/18954">#18954</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/17a07fb548ecce24b88e8b2b07491c24ed1111a9"><code>17a07fb</code></a> feat: Hooks for test cases (RuleTester) (<a href="https://redirect.github.com/eslint/eslint/issues/18771">#18771</a>) (Anna Bocharova)</li> <li><a href="https://github.com/eslint/eslint/commit/2ff0e51cedaab967b7ce383437f64b4a6df8608d"><code>2ff0e51</code></a> feat: Implement alternate config lookup (<a href="https://redirect.github.com/eslint/eslint/issues/18742">#18742</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2d174532ae96bcaecf6fd7de78755164378b3a2d"><code>2d17453</code></a> feat: Implement modified cyclomatic complexity (<a href="https://redirect.github.com/eslint/eslint/issues/18896">#18896</a>) (Dmitry Pashkevich)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ea380cac6f598c86b25a2726c2783636c4169957"><code>ea380ca</code></a> fix: Upgrade retry to avoid EMFILE errors (<a href="https://redirect.github.com/eslint/eslint/issues/18986">#18986</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/fdd631964aee250bc5520770bc1fc3f2f2872813"><code>fdd6319</code></a> fix: Issues with type definitions (<a href="https://redirect.github.com/eslint/eslint/issues/18940">#18940</a>) (Arya Emami)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ecbd52291d7c118b77016c6bf1c60b7d263c44f0"><code>ecbd522</code></a> docs: Mention code explorer (<a href="https://redirect.github.com/eslint/eslint/issues/18978">#18978</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7ea4ecc6e3320a74c960cb78acc94c0140d15f55"><code>7ea4ecc</code></a> docs: Clarifying the Use of Meta Objects (<a href="https://redirect.github.com/eslint/eslint/issues/18697">#18697</a>) (Amaresh S M)</li> <li><a href="https://github.com/eslint/eslint/commit/d3e4b2ea4a8f76d4d49345c242f013f49635274f"><code>d3e4b2e</code></a> docs: Clarify how to exclude <code>.js</code> files (<a href="https://redirect.github.com/eslint/eslint/issues/18976">#18976</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/57232ff3d50412586df094f052b47adb38f8d9ae"><code>57232ff</code></a> docs: Mention plugin-kit in language docs (<a href="https://redirect.github.com/eslint/eslint/issues/18973">#18973</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b80ed007cefee086db1ff17cde9f7dd6690459f0"><code>b80ed00</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/cb69ab374c149eb725b2fc5a8f0ff33fd7268a46"><code>cb69ab3</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/7fb0d957c102be499d5358a74928e0ea93913371"><code>7fb0d95</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/493348a9a5dcca29d7fbbe13c67ce13a7a38413b"><code>493348a</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/87a582c8b537d133c140781aa9e3ff0201a3c10f"><code>87a582c</code></a> docs: fix typo in <code>id-match</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18944">#18944</a>) (Jay)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/555aafd06f6dddc743acff06111dc72dd8ea4c4e"><code>555aafd</code></a> chore: upgrade to <code>@eslint/js@9.12.0</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18987">#18987</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/d0a5414c30421e5dbe313790502dbf13b9330fef"><code>d0a5414</code></a> refactor: replace strip-ansi with native module (<a href="https://redirect.github.com/eslint/eslint/issues/18982">#18982</a>) (Cristopher)</li> <li><a href="https://github.com/eslint/eslint/commit/b8270299abe777bb80a065d537aa1d4be74be705"><code>b827029</code></a> chore: Enable JSON5 linting (<a href="https://redirect.github.com/eslint/eslint/issues/18979">#18979</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/8f55ca22d94c1b0ff3be323b97949edef8d880b0"><code>8f55ca2</code></a> chore: Upgrade espree, eslint-visitor-keys, eslint-scope (<a href="https://redirect.github.com/eslint/eslint/issues/18962">#18962</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/c1a2725e9c776d6845d94c866c7f7b1fe0315090"><code>c1a2725</code></a> chore: update dependency mocha to ^10.7.3 (<a href="https://redirect.github.com/eslint/eslint/issues/18945">#18945</a>) (Milos Djermanovic)</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.12.0 - October 4, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/555aafd06f6dddc743acff06111dc72dd8ea4c4e"><code>555aafd</code></a> chore: upgrade to <code>@eslint/js@9.12.0</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18987">#18987</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/ea380cac6f598c86b25a2726c2783636c4169957"><code>ea380ca</code></a> fix: Upgrade retry to avoid EMFILE errors (<a href="https://redirect.github.com/eslint/eslint/issues/18986">#18986</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/d0a5414c30421e5dbe313790502dbf13b9330fef"><code>d0a5414</code></a> refactor: replace strip-ansi with native module (<a href="https://redirect.github.com/eslint/eslint/issues/18982">#18982</a>) (Cristopher)</li> <li><a href="https://github.com/eslint/eslint/commit/b8270299abe777bb80a065d537aa1d4be74be705"><code>b827029</code></a> chore: Enable JSON5 linting (<a href="https://redirect.github.com/eslint/eslint/issues/18979">#18979</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/ecbd52291d7c118b77016c6bf1c60b7d263c44f0"><code>ecbd522</code></a> docs: Mention code explorer (<a href="https://redirect.github.com/eslint/eslint/issues/18978">#18978</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7ea4ecc6e3320a74c960cb78acc94c0140d15f55"><code>7ea4ecc</code></a> docs: Clarifying the Use of Meta Objects (<a href="https://redirect.github.com/eslint/eslint/issues/18697">#18697</a>) (Amaresh S M)</li> <li><a href="https://github.com/eslint/eslint/commit/d3e4b2ea4a8f76d4d49345c242f013f49635274f"><code>d3e4b2e</code></a> docs: Clarify how to exclude <code>.js</code> files (<a href="https://redirect.github.com/eslint/eslint/issues/18976">#18976</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/5a6a05321ca34480c780be8c2cb7946e4c299001"><code>5a6a053</code></a> feat: update to <code>jiti</code> v2 (<a href="https://redirect.github.com/eslint/eslint/issues/18954">#18954</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/57232ff3d50412586df094f052b47adb38f8d9ae"><code>57232ff</code></a> docs: Mention plugin-kit in language docs (<a href="https://redirect.github.com/eslint/eslint/issues/18973">#18973</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/b80ed007cefee086db1ff17cde9f7dd6690459f0"><code>b80ed00</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/cb69ab374c149eb725b2fc5a8f0ff33fd7268a46"><code>cb69ab3</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/7fb0d957c102be499d5358a74928e0ea93913371"><code>7fb0d95</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/fdd631964aee250bc5520770bc1fc3f2f2872813"><code>fdd6319</code></a> fix: Issues with type definitions (<a href="https://redirect.github.com/eslint/eslint/issues/18940">#18940</a>) (Arya Emami)</li> <li><a href="https://github.com/eslint/eslint/commit/8f55ca22d94c1b0ff3be323b97949edef8d880b0"><code>8f55ca2</code></a> chore: Upgrade espree, eslint-visitor-keys, eslint-scope (<a href="https://redirect.github.com/eslint/eslint/issues/18962">#18962</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/17a07fb548ecce24b88e8b2b07491c24ed1111a9"><code>17a07fb</code></a> feat: Hooks for test cases (RuleTester) (<a href="https://redirect.github.com/eslint/eslint/issues/18771">#18771</a>) (Anna Bocharova)</li> <li><a href="https://github.com/eslint/eslint/commit/493348a9a5dcca29d7fbbe13c67ce13a7a38413b"><code>493348a</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/87a582c8b537d133c140781aa9e3ff0201a3c10f"><code>87a582c</code></a> docs: fix typo in <code>id-match</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18944">#18944</a>) (Jay)</li> <li><a href="https://github.com/eslint/eslint/commit/2ff0e51cedaab967b7ce383437f64b4a6df8608d"><code>2ff0e51</code></a> feat: Implement alternate config lookup (<a href="https://redirect.github.com/eslint/eslint/issues/18742">#18742</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2d174532ae96bcaecf6fd7de78755164378b3a2d"><code>2d17453</code></a> feat: Implement modified cyclomatic complexity (<a href="https://redirect.github.com/eslint/eslint/issues/18896">#18896</a>) (Dmitry Pashkevich)</li> <li><a href="https://github.com/eslint/eslint/commit/c1a2725e9c776d6845d94c866c7f7b1fe0315090"><code>c1a2725</code></a> chore: update dependency mocha to ^10.7.3 (<a href="https://redirect.github.com/eslint/eslint/issues/18945">#18945</a>) (Milos Djermanovic)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/17cfb684194df48d0a5dc566af9c28fe80ea6d42"><code>17cfb68</code></a> 9.12.0</li> <li><a href="https://github.com/eslint/eslint/commit/826e69dbc1f486af3d47cda2cbb8b69ea8d0dc3a"><code>826e69d</code></a> Build: changelog update for 9.12.0</li> <li><a href="https://github.com/eslint/eslint/commit/555aafd06f6dddc743acff06111dc72dd8ea4c4e"><code>555aafd</code></a> chore: upgrade to <code>@eslint/js@9.12.0</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18987">#18987</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/873ae608c15a0a386f022076b5aab6112b56b59b"><code>873ae60</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/ea380cac6f598c86b25a2726c2783636c4169957"><code>ea380ca</code></a> fix: Upgrade retry to avoid EMFILE errors (<a href="https://redirect.github.com/eslint/eslint/issues/18986">#18986</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/d0a5414c30421e5dbe313790502dbf13b9330fef"><code>d0a5414</code></a> refactor: replace strip-ansi with native module (<a href="https://redirect.github.com/eslint/eslint/issues/18982">#18982</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/b8270299abe777bb80a065d537aa1d4be74be705"><code>b827029</code></a> chore: Enable JSON5 linting (<a href="https://redirect.github.com/eslint/eslint/issues/18979">#18979</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/ecbd52291d7c118b77016c6bf1c60b7d263c44f0"><code>ecbd522</code></a> docs: Mention code explorer (<a href="https://redirect.github.com/eslint/eslint/issues/18978">#18978</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/7ea4ecc6e3320a74c960cb78acc94c0140d15f55"><code>7ea4ecc</code></a> docs: Clarifying the Use of Meta Objects (<a href="https://redirect.github.com/eslint/eslint/issues/18697">#18697</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/d3e4b2ea4a8f76d4d49345c242f013f49635274f"><code>d3e4b2e</code></a> docs: Clarify how to exclude <code>.js</code> files (<a href="https://redirect.github.com/eslint/eslint/issues/18976">#18976</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.11.1...v9.12.0">compare view</a></li> </ul> </details> <br /> Updates `typescript` from 5.6.2 to 5.6.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.6.3</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.3%22+is%3Aclosed+">fixed issues query for Typescript 5.6.3 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/d48a5cf89a62a62d6c6ed53ffa18f070d9458b85"><code>d48a5cf</code></a> Bump version to 5.6.3 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/fefa70aa18df825b6b06e79ae3d5b54f17571128"><code>fefa70a</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60083">#60083</a> (Don't issue implicit any when obtai...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/ff716921496ab538e74450d32443c899afbf4657"><code>ff71692</code></a> [release-5.6] Remove tsbuildInfo specification error now that we need it for ...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1f44dcf4e1d7db05fab64dea6949fe3c0e642d25"><code>1f44dcf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60157">#60157</a> (fix automatic type acquisition) into release-5.6 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/60169">#60169</a>)</li> <li>See full diff in <a href="https://github.com/microsoft/TypeScript/compare/v5.6.2...v5.6.3">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.8.0 to 8.8.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.8.1</h2> <h2>8.8.1 (2024-10-07)</h2> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> stop warning on <a href="https://github.com/ts-nocheck"><code>@​ts-nocheck</code></a> comments which aren't at the beginning of the file (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10046">#10046</a>)</li> <li><strong>typescript-estree:</strong> fix crash when running from a <code>node --eval</code> script (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10098">#10098</a>)</li> <li><strong>typescript-estree:</strong> ensure mjs/mts files are always be parsed as ESM (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10011">#10011</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Brad Zacher <a href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li> <li>Ronen Amiel</li> <li>WhitePiano <a href="https://github.com/goldentrash"><code>@​goldentrash</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.8.1 (2024-10-07)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/f898248934fe8bba8a1a961373b86d508a9fca9c"><code>f898248</code></a> chore(release): publish 8.8.1</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.8.1/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite-plugin-static-copy` from 1.0.6 to 2.0.0 <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@2.0.0</h2> <h3>Major Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/127">#127</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/21304df03f6ad668d316653ee9d48c4fbc633bde"><code>21304df</code></a> Thanks <a href="https://github.com/tassioFront"><code>@​tassioFront</code></a>! - feat: throw an error when does not find file</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>2.0.0</h2> <h3>Major Changes</h3> <ul> <li><a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/pull/127">#127</a> <a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/21304df03f6ad668d316653ee9d48c4fbc633bde"><code>21304df</code></a> Thanks <a href="https://github.com/tassioFront"><code>@​tassioFront</code></a>! - feat: throw an error when does not find file</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/c3a14747adf4edb45d2270f0fe3a8dfe551e0a12"><code>c3a1474</code></a> chore: update versions (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/128">#128</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/f76084341349da067ac077bd238118f7f000541c"><code>f760843</code></a> chore: update packages (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/129">#129</a>)</li> <li><a href="https://github.com/sapphi-red/vite-plugin-static-copy/commit/21304df03f6ad668d316653ee9d48c4fbc633bde"><code>21304df</code></a> feat: throw an error when no file was found (<a href="https://redirect.github.com/sapphi-red/vite-plugin-static-copy/issues/127">#127</a>)</li> <li>See full diff in <a href="https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@1.0.6...vite-plugin-static-copy@2.0.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-11 20:31:08 +02:00
"@types/react-dom": "^18.3.1",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
"@types/semver": "^7",
"@types/shell-quote": "^1",
"@types/sprintf-js": "^1",
"@types/throttle-debounce": "^5",
"@types/tinycolor2": "^1",
"@types/uuid": "^10.0.0",
2024-09-18 08:10:09 +02:00
"@types/ws": "^8",
"@vitejs/plugin-react-swc": "^3.7.2",
Bump the dev-dependencies-patch group with 6 updates (#1828) Bumps the dev-dependencies-patch group with 6 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.13` | `8.5.14` | | [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `3.0.3` | `3.0.4` | | [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) | `1.3.0` | `1.3.2` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.3` | `3.0.4` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.6` | `0.0.8` | Updates `@types/node` from 22.10.7 to 22.10.10 <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.13 to 8.5.14 <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 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7297">#7297</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/coverage-istanbul">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-jsdoc` from 1.3.0 to 1.3.2 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/571d0c9c2af1259cc1f622cdbe4547aa93c8b6af"><code>571d0c9</code></a> v1.3.2</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/1f648da14a98a0a7852aa064d6b45badb3cb6391"><code>1f648da</code></a> chore(release): 1.3.1</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/ffafd40cde8c8becee16ae1bc7a5cbe2cd2e42c8"><code>ffafd40</code></a> fix: add package manager</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/4e8bc801dc104de4f7a5170e9f5d1edc61a22217"><code>4e8bc80</code></a> Ensure parity between blockquote formats (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/231">#231</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/45296caabf4e9414f43ca359594624684626a0d1"><code>45296ca</code></a> Fixed duplication of &quot;Default is ...&quot; in documentation comments. (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/236">#236</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/7a884b6d51c0aea75d0c8b4c7faf642d925367ac"><code>7a884b6</code></a> fix: provide correct types path in conditional exports (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/222">#222</a>)</li> <li>See full diff in <a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.0...v1.3.2">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><code>ef1464f</code></a> fix: apply <code>development|production</code> condition on Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7297">#7297</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/dff4406d9c64a7778f548504f0dc0aa427b8fced"><code>dff4406</code></a> fix: filter projects eagerly during config resolution (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7313">#7313</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ce6af70c00481c067a5bedc1815f5f95d6a2048b"><code>ce6af70</code></a> fix(types): fix public types (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7328">#7328</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/bff70be978d42390d8af2a3b8b5ddd0556309fd0"><code>bff70be</code></a> fix(typechecking): support typechecking parsing with Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7335">#7335</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a8d123cb33d7d3c900f7753bdad57d46b7ec5b6b"><code>a8d123c</code></a> chore(deps): update eslint packages (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7086">#7086</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/vitest">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.6 to 0.0.8 <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>.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</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.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2>0.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/89920f33d0be84498e4f7d794159235eecc3b293"><code>89920f3</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/489">#489</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/b2a56a58db136292a51a40e97c5b7d57a0c371e5"><code>b2a56a5</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/487">#487</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.0.8/packages/typescript-plugin">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 20:17:40 +01:00
"@vitest/coverage-istanbul": "^3.0.4",
Bump electron from 34.0.1 to 34.0.2 in the electron-patch group (#1890) Bumps the electron-patch group with 1 update: [electron](https://github.com/electron/electron). Updates `electron` from 34.0.1 to 34.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/electron/releases">electron's releases</a>.</em></p> <blockquote> <h2>electron v34.0.2</h2> <h1>Release Notes for v34.0.2</h1> <h2>Fixes</h2> <ul> <li>Fixed a crash when calling <code>shell.readShortcutLink</code> caused by <code>PKEY_AppUserModel_ToastActivatorCLSID</code> sometimes being represented by a string uuid. <a href="https://redirect.github.com/electron/electron/pull/45350">#45350</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/45349">33</a>)<!-- raw HTML omitted --></li> <li>Fixed a potential crash in <code>chrome.tabs.update()</code>. <a href="https://redirect.github.com/electron/electron/pull/45304">#45304</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/45303">33</a>, <a href="https://redirect.github.com/electron/electron/pull/45302">35</a>)<!-- raw HTML omitted --></li> <li>Fixed an issue where print scaling could be too small during silent print. <a href="https://redirect.github.com/electron/electron/pull/45283">#45283</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/45262">35</a>)<!-- raw HTML omitted --></li> <li>Fixed crash in gin::wrappable::secondweakcallback. <a href="https://redirect.github.com/electron/electron/pull/45376">#45376</a></li> </ul> <h2>Other Changes</h2> <ul> <li>Updated Chromium to 132.0.6834.159. <a href="https://redirect.github.com/electron/electron/pull/45313">#45313</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/electron/commit/61cddcaf76a5887fc595de8cb610106e6fce6191"><code>61cddca</code></a> fix: crash in gin::wrappable::secondweakcallback (<a href="https://redirect.github.com/electron/electron/issues/45376">#45376</a>)</li> <li><a href="https://github.com/electron/electron/commit/0fed0b74e044c31b88384716f8f8cb630221284e"><code>0fed0b7</code></a> chore: bump chromium to 132.0.6834.159 (34-x-y) (<a href="https://redirect.github.com/electron/electron/issues/45313">#45313</a>)</li> <li><a href="https://github.com/electron/electron/commit/af9ea0b422566ae326c41c969ec312339998555a"><code>af9ea0b</code></a> fix: crash parsing CLSID in <code>shell.readShortcutLink()</code> (<a href="https://redirect.github.com/electron/electron/issues/45350">#45350</a>)</li> <li><a href="https://github.com/electron/electron/commit/a41a0b1c1d1030bc8bf6d6600b4bf4ad1f7dae3c"><code>a41a0b1</code></a> build: use Python311 exe (<a href="https://redirect.github.com/electron/electron/issues/45362">#45362</a>)</li> <li><a href="https://github.com/electron/electron/commit/600551766d0de3afe880c566dfce21ae03db6cd6"><code>6005517</code></a> docs: fix broken code in drag and drop example (<a href="https://redirect.github.com/electron/electron/issues/45337">#45337</a>)</li> <li><a href="https://github.com/electron/electron/commit/c538aa8e6cf2f34e74f6860138536bab84b74a02"><code>c538aa8</code></a> docs: Add note about directly exposing Electron APIs in preload (<a href="https://redirect.github.com/electron/electron/issues/45323">#45323</a>)</li> <li><a href="https://github.com/electron/electron/commit/2d6dd64a5e9f1c99a8f6d0ab3b748d15a780161e"><code>2d6dd64</code></a> fix: potential crash in <code>chrome.tabs.update()</code> (<a href="https://redirect.github.com/electron/electron/issues/45304">#45304</a>)</li> <li><a href="https://github.com/electron/electron/commit/bb616ba5cacd7b4e6eb744df025a18090515f730"><code>bb616ba</code></a> fix: page scaling in silent mode printing (<a href="https://redirect.github.com/electron/electron/issues/45283">#45283</a>)</li> <li>See full diff in <a href="https://github.com/electron/electron/compare/v34.0.1...v34.0.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=electron&package-manager=npm_and_yarn&previous-version=34.0.1&new-version=34.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-31 19:42:59 +01:00
"electron": "^34.0.2",
Bump the electron group with 2 updates (#1063) Bumps the electron group with 2 updates: [electron](https://github.com/electron/electron) and [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder). Updates `electron` from 32.2.0 to 33.0.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron/electron/releases">electron's releases</a>.</em></p> <blockquote> <h2>electron v33.0.1</h2> <h1>Release Notes for v33.0.1</h1> <h2>Other Changes</h2> <ul> <li>Updated Chromium to 130.0.6723.59. <a href="https://redirect.github.com/electron/electron/pull/44271">#44271</a></li> </ul> <h2>electron v33.0.0</h2> <h1>Release Notes for 33.0.0</h1> <h2>Stack Upgrades</h2> <ul> <li>Chromium <code>130.0.6723.44</code> <ul> <li><a href="https://developer.chrome.com/blog/new-in-chrome-130/">New in 130</a></li> <li><a href="https://developer.chrome.com/blog/new-in-chrome-129/">New in 129</a></li> </ul> </li> <li>Node <code>20.18.0</code> <ul> <li><a href="https://nodejs.org/en/blog/release/v20.18.0/">Node 20.18.0 blog post</a></li> <li><a href="https://nodejs.org/en/blog/release/v20.17.0/">Node 20.17.0 blog post</a></li> </ul> </li> <li>V8 <code>13.0</code></li> </ul> <h2>Breaking Changes</h2> <ul> <li>Deprecated usage of <code>textured</code> BrowserWindow <code>type</code> option on macOS. <a href="https://redirect.github.com/electron/electron/pull/43133">#43133</a></li> <li>Custom protocol URLs that use Windows file paths will no longer work correctly with the deprecated <code>protocol.registerFileProtocol</code> and the <code>baseURLForDataURL</code> property on <code>BrowserWindow.loadURL</code>, <code>WebContents.loadURL</code>, and <code>&lt;webview&gt;.loadURL</code>. <a href="https://redirect.github.com/electron/electron/pull/43977">#43977</a></li> </ul> <h2>Features</h2> <h3>Additions</h3> <ul> <li>Added a handler, <code>app.setClientCertRequestPasswordHandler(handler)</code>, to help unlock cryptographic devices when a PIN is needed. <a href="https://redirect.github.com/electron/electron/pull/41205">#41205</a></li> <li>Added error event in utility process to support diagnostic reports on V8 fatal errors. <a href="https://redirect.github.com/electron/electron/pull/43997">#43997</a></li> <li>Added <code>View.setBorderRadius(radius)</code> for customizing the border radius of views—with compatibility for <code>WebContentsView</code>. <a href="https://redirect.github.com/electron/electron/pull/42320">#42320</a></li> <li>Added Linux support for the Windows Control Overlay API. <a href="https://redirect.github.com/electron/electron/pull/41769">#41769</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42683">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42682">31</a>, <a href="https://redirect.github.com/electron/electron/pull/42681">32</a>)<!-- raw HTML omitted --></li> <li>Added support for the macOS system picker in <code>desktopCapturer</code> and <code>setDisplayMediaRequestHandler</code>. <a href="https://redirect.github.com/electron/electron/pull/43680">#43680</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43679">32</a>)<!-- raw HTML omitted --></li> <li>Added <code>DownloadItem.getCurrentBytesPerSecond()</code>, <code>DownloadItem.getPercentComplete()</code>, <code>DownloadItem.getEndTime()</code>. <a href="https://redirect.github.com/electron/electron/pull/42805">#42805</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42914">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42915">31</a>, <a href="https://redirect.github.com/electron/electron/pull/42913">32</a>)<!-- raw HTML omitted --></li> <li>Added a new property <code>prefersReducedTransparency</code> to <code>nativeTheme</code>, which indicates whether the user has chosen to reduce OS-level transparency via system accessibility settings. <a href="https://redirect.github.com/electron/electron/pull/42862">#42862</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43138">30</a>, <a href="https://redirect.github.com/electron/electron/pull/43137">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43024">32</a>)<!-- raw HTML omitted --></li> <li>Added support for responding to auth requests initiated from utility process via <code>app#login</code> event. <a href="https://redirect.github.com/electron/electron/pull/42631">#42631</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43317">32</a>)<!-- raw HTML omitted --></li> </ul> <h3>Improvements</h3> <ul> <li>Extended <code>navigationHistory</code> API with 2 new functions for better history management. <a href="https://redirect.github.com/electron/electron/pull/42014">#42014</a></li> <li>Ensured that the <code>sender-id</code> hint is set when creating desktop notifications on DBus. <a href="https://redirect.github.com/electron/electron/pull/43949">#43949</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43951">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43950">32</a>)<!-- raw HTML omitted --></li> <li>Aligned failure pathway in File System Access API with upstream when attempting to open a file or directory in a blocked path. <a href="https://redirect.github.com/electron/electron/pull/42561">#42561</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43162">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42994">31</a>, <a href="https://redirect.github.com/electron/electron/pull/42993">32</a>)<!-- raw HTML omitted --></li> <li>Enabled zstd compression in net http requests. <a href="https://redirect.github.com/electron/electron/pull/43150">#43150</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/43301">31</a>, <a href="https://redirect.github.com/electron/electron/pull/43300">32</a>)<!-- raw HTML omitted --></li> <li>Expose <code>systemPreferences</code> to <code>utilityProcess</code>. <a href="https://redirect.github.com/electron/electron/pull/42203">#42203</a> <!-- raw HTML omitted -->(Also in <a href="https://redirect.github.com/electron/electron/pull/42600">30</a>, <a href="https://redirect.github.com/electron/electron/pull/42598">31</a>, <a href="https://redirect.github.com/electron/electron/pull/42599">32</a>)<!-- raw HTML omitted --></li> </ul> <h2>Fixes</h2> <ul> <li>Fixed a build failure when the <code>enable_plugins</code> build flag is false. <a href="https://redirect.github.com/electron/electron/pull/44025">#44025</a></li> <li>Fixed mouse cursor turning into loading spinner when starting utility process on Windows. <a href="https://redirect.github.com/electron/electron/pull/43731">#43731</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron/electron/commit/11c2b610116524e92dc8c0aa2d4c2873b2735814"><code>11c2b61</code></a> chore: bump chromium to 130.0.6723.59 (33-x-y) (<a href="https://redirect.github.com/electron/electron/issues/44271">#44271</a>)</li> <li><a href="https://github.com/electron/electron/commit/6b458c78b0962941411d26b2db46daec5d6cdba9"><code>6b458c7</code></a> fix: -Wunsafe-buffer-usage warnings in TaskbarHost::SetThumbarButtons() (<a href="https://redirect.github.com/electron/electron/issues/44260">#44260</a>)</li> <li><a href="https://github.com/electron/electron/commit/77324ff514416f672cba2f1956a496ad202486b0"><code>77324ff</code></a> build: update devcontainer sha (<a href="https://redirect.github.com/electron/electron/issues/44245">#44245</a>)</li> <li><a href="https://github.com/electron/electron/commit/63d1d9cb6554548238bcbfb754115db2f27557dd"><code>63d1d9c</code></a> fix: SCContentSharingPicker crash in iframes (<a href="https://redirect.github.com/electron/electron/issues/44228">#44228</a>)</li> <li><a href="https://github.com/electron/electron/commit/dd5bce17cb3d95e631e1c70cecdca7ce32807070"><code>dd5bce1</code></a> docs: update timelines for E34 (<a href="https://redirect.github.com/electron/electron/issues/44225">#44225</a>)</li> <li><a href="https://github.com/electron/electron/commit/258a4a76cf3978414f5c6049626fc35ab7ec900f"><code>258a4a7</code></a> fix: -Wunsafe-buffer-usage warning in ChunkedDataPipeReadableStream (<a href="https://redirect.github.com/electron/electron/issues/44223">#44223</a>)</li> <li><a href="https://github.com/electron/electron/commit/f269ca1d9331c8cccc55f54ffebcb29c36aa8cdd"><code>f269ca1</code></a> test: fix visibility-state-spec.ts flaky test (<a href="https://redirect.github.com/electron/electron/issues/44199">#44199</a>)</li> <li><a href="https://github.com/electron/electron/commit/7887395e92a99bc585a39cbab0c939af3686f309"><code>7887395</code></a> fix: -Wunsafe-buffer-usage warnings when read()ing and write()ing integers (#...</li> <li><a href="https://github.com/electron/electron/commit/9011532b2e58c6bde4ef75ad790dc9be7f588f94"><code>9011532</code></a> fix: clang variable configuration in generated node headers (<a href="https://redirect.github.com/electron/electron/issues/44200">#44200</a>)</li> <li><a href="https://github.com/electron/electron/commit/afce3ce7c78aa962f75301e6e45603063599d477"><code>afce3ce</code></a> docs: clarify interplay between utility process events (<a href="https://redirect.github.com/electron/electron/issues/44203">#44203</a>)</li> <li>Additional commits viewable in <a href="https://github.com/electron/electron/compare/v32.2.0...v33.0.1">compare view</a></li> </ul> </details> <br /> Updates `electron-builder` from 25.1.7 to 25.1.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/releases">electron-builder's releases</a>.</em></p> <blockquote> <h2>v25.1.8</h2> <h2>What's Changed</h2> <ul> <li>chore: update test snapshot for latest 1.0.4 electron-builder-test release by <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8555">electron-userland/electron-builder#8555</a></li> <li>fix: Path does not end with the package name by <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8560">electron-userland/electron-builder#8560</a></li> <li>chore(deploy): Release by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8561">electron-userland/electron-builder#8561</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/electron-userland/electron-builder/compare/electron-builder@25.1.7...electron-builder@25.1.8">https://github.com/electron-userland/electron-builder/compare/electron-builder@25.1.7...electron-builder@25.1.8</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md">electron-builder's changelog</a>.</em></p> <blockquote> <h2>25.1.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/4ff778eefd9089b3b38b67156eb39e8cf57fdd83"><code>4ff778eefd9089b3b38b67156eb39e8cf57fdd83</code></a>]: <ul> <li>app-builder-lib@25.1.8</li> <li>dmg-builder@25.1.8</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron-userland/electron-builder/commit/1d61d6f59061be23d5cd8602a65e8ce10861ccc0"><code>1d61d6f</code></a> chore(deploy): Release v25.1.8 (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8561">#8561</a>)</li> <li>See full diff in <a href="https://github.com/electron-userland/electron-builder/commits/electron-builder@25.1.8/packages/electron-builder">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-10-21 21:01:19 +02:00
"electron-builder": "^25.1.8",
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 22:10:35 +02:00
"electron-vite": "^2.3.0",
Bump the dev-dependencies-minor group with 5 updates (#1887) [//]: # (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 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.10` | `22.12.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | Updates `@eslint/js` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.19.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.10 to 22.12.0 <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 `eslint` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/208e0b199f5d5f9dd173e58e3f5db19c1f0c38ed"><code>208e0b1</code></a> 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/196dfdace64d095f2facb3d8ebed1be9cb2ccab3"><code>196dfda</code></a> Build: changelog update for 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0">compare view</a></li> </ul> </details> <br /> Updates `semver` from 7.6.3 to 7.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>v7.7.0</h2> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/2cfcbb5021059d0b6642a77400efb4b51133bd75"><code>2cfcbb5</code></a> chore: release 7.7.0 (<a href="https://redirect.github.com/npm/node-semver/issues/750">#750</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> fix(diff): fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> fix: add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> feat: add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> docs(readme): added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> docs: clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> chore: bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> chore: postinstall for dependabot template-oss PR</li> <li><a href="https://github.com/npm/node-semver/commit/6502a15af34181b14a443d38bb75fc2d84bff0f9"><code>6502a15</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.1 to 4.23.3</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0</h2> <h2>8.22.0 (2025-01-27)</h2> <h3>🚀 Features</h3> <ul> <li><strong>parser:</strong> add standalone isolatedDeclarations option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10499">#10499</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10517">#10517</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents] handle nested types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10638">#10638</a>)</li> <li><strong>eslint-plugin:</strong> [no-shadow] don't report unnecessarily on valid ways of using module augmentation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10616">#10616</a>)</li> <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle accessor keyword (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10678">#10678</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10552">#10552</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression] handle template literal type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10612">#10612</a>)</li> <li><strong>type-utils:</strong> support matching intersection types in <code>TypeOrValueSpecifier</code> with a <code>PackageSpecifier</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10667">#10667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg ✨</li> <li>mdm317</li> <li>Olivier Zalmanski <a href="https://github.com/OlivierZal"><code>@​OlivierZal</code></a></li> <li>Ronen Amiel</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</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.22.0 (2025-01-27)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/94e809808a445dde05ab6f284dec010269482eb5"><code>94e8098</code></a> chore(release): publish 8.22.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.22.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-01-31 19:50:16 +01:00
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"prettier": "^3.4.2",
Bump the dev-dependencies-patch group with 6 updates (#1828) Bumps the dev-dependencies-patch group with 6 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.13` | `8.5.14` | | [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `3.0.3` | `3.0.4` | | [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) | `1.3.0` | `1.3.2` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.3` | `3.0.4` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.6` | `0.0.8` | Updates `@types/node` from 22.10.7 to 22.10.10 <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.13 to 8.5.14 <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 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7297">#7297</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/coverage-istanbul">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-jsdoc` from 1.3.0 to 1.3.2 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/571d0c9c2af1259cc1f622cdbe4547aa93c8b6af"><code>571d0c9</code></a> v1.3.2</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/1f648da14a98a0a7852aa064d6b45badb3cb6391"><code>1f648da</code></a> chore(release): 1.3.1</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/ffafd40cde8c8becee16ae1bc7a5cbe2cd2e42c8"><code>ffafd40</code></a> fix: add package manager</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/4e8bc801dc104de4f7a5170e9f5d1edc61a22217"><code>4e8bc80</code></a> Ensure parity between blockquote formats (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/231">#231</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/45296caabf4e9414f43ca359594624684626a0d1"><code>45296ca</code></a> Fixed duplication of &quot;Default is ...&quot; in documentation comments. (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/236">#236</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/7a884b6d51c0aea75d0c8b4c7faf642d925367ac"><code>7a884b6</code></a> fix: provide correct types path in conditional exports (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/222">#222</a>)</li> <li>See full diff in <a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.0...v1.3.2">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><code>ef1464f</code></a> fix: apply <code>development|production</code> condition on Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7297">#7297</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/dff4406d9c64a7778f548504f0dc0aa427b8fced"><code>dff4406</code></a> fix: filter projects eagerly during config resolution (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7313">#7313</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ce6af70c00481c067a5bedc1815f5f95d6a2048b"><code>ce6af70</code></a> fix(types): fix public types (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7328">#7328</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/bff70be978d42390d8af2a3b8b5ddd0556309fd0"><code>bff70be</code></a> fix(typechecking): support typechecking parsing with Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7335">#7335</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a8d123cb33d7d3c900f7753bdad57d46b7ec5b6b"><code>a8d123c</code></a> chore(deps): update eslint packages (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7086">#7086</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/vitest">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.6 to 0.0.8 <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>.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</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.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2>0.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/89920f33d0be84498e4f7d794159235eecc3b293"><code>89920f3</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/489">#489</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/b2a56a58db136292a51a40e97c5b7d57a0c371e5"><code>b2a56a5</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/487">#487</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.0.8/packages/typescript-plugin">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 20:17:40 +01:00
"prettier-plugin-jsdoc": "^1.3.2",
Bump the dev-dependencies group with 8 updates (#811) Bumps the dev-dependencies group with 8 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.10.0` | `9.11.1` | | [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) | `15.2.3` | `15.3.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.6.1` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.5` | `18.3.9` | | [eslint](https://github.com/eslint/eslint) | `9.10.0` | `9.11.1` | | [prettier-plugin-organize-imports](https://github.com/simonhaenisch/prettier-plugin-organize-imports) | `4.0.0` | `4.1.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.5.0` | `8.7.0` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.6` | `5.4.7` | Updates `@eslint/js` from 9.10.0 to 9.11.1 <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.11.1</h2> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/20fd91689f2a89643a6f67e900a53552d47ddfe5"><code>20fd916</code></a> fix: add <code>@eslint/core</code>, <code>@types/estree</code>, &amp; <code>@types/json-schema</code> deps (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18938">#18938</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/27383226b8c5ead6b7cafc017a8ca12a1512a301"><code>2738322</code></a> fix: add missing types for <code>require-atomic-updates</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18937">#18937</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71ff3068c3134171346c91f4095dd5908d9c897"><code>d71ff30</code></a> fix: add missing types for <code>object-shorthand</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18935">#18935</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/561cadc54376fd0a5cc1446c3cd76bfbb6b3ce9d"><code>561cadc</code></a> fix: add missing types for <code>no-unsafe-negation</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18932">#18932</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8843656f9b161d97d9dc78db01413029621e266d"><code>8843656</code></a> fix: add missing types for <code>no-underscore-dangle</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18931">#18931</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/92cde5c6da43b6017657e4c596421e3347f3dbc4"><code>92cde5c</code></a> fix: add missing types for <code>no-shadow</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18930">#18930</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/b3cbe11a9216d1edabd5b85d6f274ca84574bce6"><code>b3cbe11</code></a> fix: add missing types for <code>no-sequences</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18929">#18929</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/976f77f7f6da591b715b1ce2592f09c2f1160153"><code>976f77f</code></a> fix: add missing types for <code>no-unused-expressions</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18933">#18933</a>) (Kristóf Poduszló)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/3eff70963772e9faad4a865aaa4cf3d7dbe700a0"><code>3eff709</code></a> docs: replace deprecated <code>Linter.FlatConfig</code> type with <code>Linter.Config</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18941">#18941</a>) (Carlos Meira)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/df4a859b4cd578a3535a488a665a6e858289f455"><code>df4a859</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.1 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18943">#18943</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> </ul> <h2>v9.11.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ec30c7349e0bc2c37465a036e8c7ea3318ac2328"><code>ec30c73</code></a> feat: add &quot;eslint/universal&quot; to export <code>Linter</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18883">#18883</a>) (唯然)</li> <li><a href="https://github.com/eslint/eslint/commit/c591da68d4a96aa28df68f4eff7641f42af82b15"><code>c591da6</code></a> feat: Add language to types (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18917">#18917</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/492eb8f34ebbc5c9d1dbfcf4dd06b8dde8d1df74"><code>492eb8f</code></a> feat: limit the name given to <code>ImportSpecifier</code> in <code>id-length</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18861">#18861</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/19c685608d134d9120a129cc80c0ba7f8f016aa3"><code>19c6856</code></a> feat: Add <code>no-useless-constructor</code> suggestion (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18799">#18799</a>) (Jordan Thomson)</li> <li><a href="https://github.com/eslint/eslint/commit/a48f8c29b58c27d87dbf202d55a5770d678d37d6"><code>a48f8c2</code></a> feat: add type <code>FormatterFunction</code>, update <code>LoadedFormatter</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18872">#18872</a>) (Francesco Trotta)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/5e5f39b82535f59780ce4be56d01fd1466029c25"><code>5e5f39b</code></a> fix: add missing types for <code>no-restricted-exports</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18914">#18914</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8f630eb5794ef9fe38e0b8f034287650def634bd"><code>8f630eb</code></a> fix: add missing types for <code>no-param-reassign</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18906">#18906</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71578124f14d6da3fa5ab5cc391bb6c9ac3ffcf"><code>d715781</code></a> fix: add missing types for <code>no-extra-boolean-cast</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18902">#18902</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/2de5742682ec45e24dca9ca7faaa45330497fca9"><code>2de5742</code></a> fix: add missing types for <code>no-misleading-character-class</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18905">#18905</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/c153084250673b31bed46e3fe6af7a65b4ce8d6f"><code>c153084</code></a> fix: add missing types for <code>no-implicit-coercion</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18903">#18903</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/fa11b2ede6e5dc1f55dfe4b9b65d9760828900e8"><code>fa11b2e</code></a> fix: add missing types for <code>no-empty-function</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18901">#18901</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/a0deed122a9676fab07b903c8d16fbf60b92eadf"><code>a0deed1</code></a> fix: add missing types for <code>camelcase</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18897">#18897</a>) (Kristóf Poduszló)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/e4e570952249d1c4fde59c79a0f49a38490b72c9"><code>e4e5709</code></a> docs: correct <code>prefer-object-has-own</code> type definition comment (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18924">#18924</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/91cbd18c70dee2ef73de8d8e43f2c744fd173934"><code>91cbd18</code></a> docs: add unicode abbreviations in no-irregular-whitespace rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18894">#18894</a>) (Alix Royere)</li> <li><a href="https://github.com/eslint/eslint/commit/59cfc0f1b3bbb62260602579f79bd1c36ab5a00f"><code>59cfc0f</code></a> docs: clarify <code>resultsMeta</code> in <code>LoadedFormatter</code> type (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18881">#18881</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/adcc50dbf1fb98c0884f841e2a627796a4490373"><code>adcc50d</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/4edac1a325a832804f76602736a86217b40f69ac"><code>4edac1a</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <h2>Build Related</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/959d360be597d3112b10590018cd52f1d98712d6"><code>959d360</code></a> build: Support updates to previous major versions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18871">#18871</a>) (Milos Djermanovic)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ca21a64ed0f59adb9dadcef2fc8f7248879edbd3"><code>ca21a64</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18927">#18927</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a10f90af35aea9ac555b1f33106fbba1027d774e"><code>a10f90a</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e02cc6938f38ad5028bb8ad82f52460a18dea5"><code>e4e02cc</code></a> refactor: Extract processor logic into ProcessorService (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18818">#18818</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/6d4484d9c19e4132f3dee948174a543dbbb5d30f"><code>6d4484d</code></a> chore: updates for v8.57.1 release (Jenkins)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.11.1 - September 23, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/df4a859b4cd578a3535a488a665a6e858289f455"><code>df4a859</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.1 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18943">#18943</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20fd91689f2a89643a6f67e900a53552d47ddfe5"><code>20fd916</code></a> fix: add <code>@eslint/core</code>, <code>@types/estree</code>, &amp; <code>@types/json-schema</code> deps (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18938">#18938</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/3eff70963772e9faad4a865aaa4cf3d7dbe700a0"><code>3eff709</code></a> docs: replace deprecated <code>Linter.FlatConfig</code> type with <code>Linter.Config</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18941">#18941</a>) (Carlos Meira)</li> <li><a href="https://github.com/eslint/eslint/commit/27383226b8c5ead6b7cafc017a8ca12a1512a301"><code>2738322</code></a> fix: add missing types for <code>require-atomic-updates</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18937">#18937</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71ff3068c3134171346c91f4095dd5908d9c897"><code>d71ff30</code></a> fix: add missing types for <code>object-shorthand</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18935">#18935</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/561cadc54376fd0a5cc1446c3cd76bfbb6b3ce9d"><code>561cadc</code></a> fix: add missing types for <code>no-unsafe-negation</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18932">#18932</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8843656f9b161d97d9dc78db01413029621e266d"><code>8843656</code></a> fix: add missing types for <code>no-underscore-dangle</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18931">#18931</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/92cde5c6da43b6017657e4c596421e3347f3dbc4"><code>92cde5c</code></a> fix: add missing types for <code>no-shadow</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18930">#18930</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/b3cbe11a9216d1edabd5b85d6f274ca84574bce6"><code>b3cbe11</code></a> fix: add missing types for <code>no-sequences</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18929">#18929</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/976f77f7f6da591b715b1ce2592f09c2f1160153"><code>976f77f</code></a> fix: add missing types for <code>no-unused-expressions</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18933">#18933</a>) (Kristóf Poduszló)</li> </ul> <p>v9.11.0 - September 20, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/ca21a64ed0f59adb9dadcef2fc8f7248879edbd3"><code>ca21a64</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18927">#18927</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a10f90af35aea9ac555b1f33106fbba1027d774e"><code>a10f90a</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/5e5f39b82535f59780ce4be56d01fd1466029c25"><code>5e5f39b</code></a> fix: add missing types for <code>no-restricted-exports</code> rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18914">#18914</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e570952249d1c4fde59c79a0f49a38490b72c9"><code>e4e5709</code></a> docs: correct <code>prefer-object-has-own</code> type definition comment (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18924">#18924</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/8f630eb5794ef9fe38e0b8f034287650def634bd"><code>8f630eb</code></a> fix: add missing types for <code>no-param-reassign</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18906">#18906</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71578124f14d6da3fa5ab5cc391bb6c9ac3ffcf"><code>d715781</code></a> fix: add missing types for <code>no-extra-boolean-cast</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18902">#18902</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e02cc6938f38ad5028bb8ad82f52460a18dea5"><code>e4e02cc</code></a> refactor: Extract processor logic into ProcessorService (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18818">#18818</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/ec30c7349e0bc2c37465a036e8c7ea3318ac2328"><code>ec30c73</code></a> feat: add &quot;eslint/universal&quot; to export <code>Linter</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18883">#18883</a>) (唯然)</li> <li><a href="https://github.com/eslint/eslint/commit/c591da68d4a96aa28df68f4eff7641f42af82b15"><code>c591da6</code></a> feat: Add language to types (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18917">#18917</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/91cbd18c70dee2ef73de8d8e43f2c744fd173934"><code>91cbd18</code></a> docs: add unicode abbreviations in no-irregular-whitespace rule (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18894">#18894</a>) (Alix Royere)</li> <li><a href="https://github.com/eslint/eslint/commit/959d360be597d3112b10590018cd52f1d98712d6"><code>959d360</code></a> build: Support updates to previous major versions (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18871">#18871</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/6d4484d9c19e4132f3dee948174a543dbbb5d30f"><code>6d4484d</code></a> chore: updates for v8.57.1 release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/492eb8f34ebbc5c9d1dbfcf4dd06b8dde8d1df74"><code>492eb8f</code></a> feat: limit the name given to <code>ImportSpecifier</code> in <code>id-length</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18861">#18861</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/2de5742682ec45e24dca9ca7faaa45330497fca9"><code>2de5742</code></a> fix: add missing types for <code>no-misleading-character-class</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18905">#18905</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/c153084250673b31bed46e3fe6af7a65b4ce8d6f"><code>c153084</code></a> fix: add missing types for <code>no-implicit-coercion</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18903">#18903</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/19c685608d134d9120a129cc80c0ba7f8f016aa3"><code>19c6856</code></a> feat: Add <code>no-useless-constructor</code> suggestion (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18799">#18799</a>) (Jordan Thomson)</li> <li><a href="https://github.com/eslint/eslint/commit/fa11b2ede6e5dc1f55dfe4b9b65d9760828900e8"><code>fa11b2e</code></a> fix: add missing types for <code>no-empty-function</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18901">#18901</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/a0deed122a9676fab07b903c8d16fbf60b92eadf"><code>a0deed1</code></a> fix: add missing types for <code>camelcase</code> options (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18897">#18897</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/71f37c5bf04afb704232d312cc6c72c957d1c14e"><code>71f37c5</code></a> refactor: use optional chaining when validating config rules (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18893">#18893</a>) (lucasrmendonca)</li> <li><a href="https://github.com/eslint/eslint/commit/2c2805f8ee0fb1f27f3e442de248f45e5a98a067"><code>2c2805f</code></a> chore: Add PR note to all templates (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18892">#18892</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7b852ce59e6ed56931c080aa46ab548fa57feffc"><code>7b852ce</code></a> refactor: use <code>Directive</code> class from <code>@eslint/plugin-kit</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18884">#18884</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a48f8c29b58c27d87dbf202d55a5770d678d37d6"><code>a48f8c2</code></a> feat: add type <code>FormatterFunction</code>, update <code>LoadedFormatter</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18872">#18872</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/d594ddd2cc9b0c251291ea12fbd14ccd2ee32ac7"><code>d594ddd</code></a> chore: update dependency <code>@​eslint/core</code> to ^0.6.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18863">#18863</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/59cfc0f1b3bbb62260602579f79bd1c36ab5a00f"><code>59cfc0f</code></a> docs: clarify <code>resultsMeta</code> in <code>LoadedFormatter</code> type (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18881">#18881</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/78b2421e28f29206fe120ae1b03804b1b79e6324"><code>78b2421</code></a> chore: Update change.yml (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18882">#18882</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/a416f0a270e922c86e8571e94a30fc87d72fa873"><code>a416f0a</code></a> chore: enable <code>$ExpectType</code> comments in .ts files (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18869">#18869</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/adcc50dbf1fb98c0884f841e2a627796a4490373"><code>adcc50d</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/4edac1a325a832804f76602736a86217b40f69ac"><code>4edac1a</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <p>v8.57.1 - September 16, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/140ec4569fda5a974b6964242b0b2991828a5567"><code>140ec45</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/8"><code>@​8</code></a>.57.1 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18913">#18913</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/bcdfc04a69c53dbf1fc3d38603fe0a796bf2274d"><code>bcdfc04</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/3f6ce8d6b74aba0d645448e898f271825eeb9630"><code>3f6ce8d</code></a> chore: pin vite-plugin-commonjs@0.10.1 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18910">#18910</a>) (Milos Djermanovic)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/a10f90af35aea9ac555b1f33106fbba1027d774e"><code>a10f90a</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.11.1/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@rollup/plugin-node-resolve` from 15.2.3 to 15.3.0 <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>v15.3.0</h2> <p><em>2024-09-23</em></p> <h3>Features</h3> <ul> <li>feat: allow preferBuiltins to be a function (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1694">#1694</a>)</li> </ul> <h2>v15.2.4</h2> <p><em>2024-09-22</em></p> <h3>Updates</h3> <ul> <li>chore: remove is-builtin-module (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1735">#1735</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rollup/plugins/commit/a8e326d01b5893de986e5f61643a305f8b19de60"><code>a8e326d</code></a> chore(release): node-resolve v15.3.0</li> <li><a href="https://github.com/rollup/plugins/commit/032055b9ab555155e9828ba30a27e67949351f7c"><code>032055b</code></a> feat(node-resolve): allow preferBuiltins to be a function (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1694">#1694</a>)</li> <li><a href="https://github.com/rollup/plugins/commit/6d4bb6b8b1f04013c872c468e1e462e36a9bbe02"><code>6d4bb6b</code></a> chore(release): node-resolve v15.2.4</li> <li><a href="https://github.com/rollup/plugins/commit/190aa21155acb573cd634e76c9afd1fec5c92ca1"><code>190aa21</code></a> chore(node-resolve): remove is-builtin-module (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1735">#1735</a>)</li> <li><a href="https://github.com/rollup/plugins/commit/dcd8da504a6e39fcc8e8694eaa274b36326084f1"><code>dcd8da5</code></a> chore(repo): use <code>@dot/versioner</code> for releases (<a href="https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve/issues/1612">#1612</a>)</li> <li><a href="https://github.com/rollup/plugins/commit/1caee897866eeab5f56bd50e35fda71635a57fdb"><code>1caee89</code></a> chore(release): node-resolve v15.2.3</li> <li>See full diff in <a href="https://github.com/rollup/plugins/commits/node-resolve-v15.3.0/packages/node-resolve">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.5.4 to 22.6.1 <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/react` from 18.3.5 to 18.3.9 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li> </ul> </details> <br /> Updates `eslint` from 9.10.0 to 9.11.1 <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.11.1</h2> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/20fd91689f2a89643a6f67e900a53552d47ddfe5"><code>20fd916</code></a> fix: add <code>@eslint/core</code>, <code>@types/estree</code>, &amp; <code>@types/json-schema</code> deps (<a href="https://redirect.github.com/eslint/eslint/issues/18938">#18938</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/27383226b8c5ead6b7cafc017a8ca12a1512a301"><code>2738322</code></a> fix: add missing types for <code>require-atomic-updates</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18937">#18937</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71ff3068c3134171346c91f4095dd5908d9c897"><code>d71ff30</code></a> fix: add missing types for <code>object-shorthand</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18935">#18935</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/561cadc54376fd0a5cc1446c3cd76bfbb6b3ce9d"><code>561cadc</code></a> fix: add missing types for <code>no-unsafe-negation</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18932">#18932</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8843656f9b161d97d9dc78db01413029621e266d"><code>8843656</code></a> fix: add missing types for <code>no-underscore-dangle</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18931">#18931</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/92cde5c6da43b6017657e4c596421e3347f3dbc4"><code>92cde5c</code></a> fix: add missing types for <code>no-shadow</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18930">#18930</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/b3cbe11a9216d1edabd5b85d6f274ca84574bce6"><code>b3cbe11</code></a> fix: add missing types for <code>no-sequences</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18929">#18929</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/976f77f7f6da591b715b1ce2592f09c2f1160153"><code>976f77f</code></a> fix: add missing types for <code>no-unused-expressions</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18933">#18933</a>) (Kristóf Poduszló)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/3eff70963772e9faad4a865aaa4cf3d7dbe700a0"><code>3eff709</code></a> docs: replace deprecated <code>Linter.FlatConfig</code> type with <code>Linter.Config</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18941">#18941</a>) (Carlos Meira)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/df4a859b4cd578a3535a488a665a6e858289f455"><code>df4a859</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.1 (<a href="https://redirect.github.com/eslint/eslint/issues/18943">#18943</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> </ul> <h2>v9.11.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ec30c7349e0bc2c37465a036e8c7ea3318ac2328"><code>ec30c73</code></a> feat: add &quot;eslint/universal&quot; to export <code>Linter</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18883">#18883</a>) (唯然)</li> <li><a href="https://github.com/eslint/eslint/commit/c591da68d4a96aa28df68f4eff7641f42af82b15"><code>c591da6</code></a> feat: Add language to types (<a href="https://redirect.github.com/eslint/eslint/issues/18917">#18917</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/492eb8f34ebbc5c9d1dbfcf4dd06b8dde8d1df74"><code>492eb8f</code></a> feat: limit the name given to <code>ImportSpecifier</code> in <code>id-length</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18861">#18861</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/19c685608d134d9120a129cc80c0ba7f8f016aa3"><code>19c6856</code></a> feat: Add <code>no-useless-constructor</code> suggestion (<a href="https://redirect.github.com/eslint/eslint/issues/18799">#18799</a>) (Jordan Thomson)</li> <li><a href="https://github.com/eslint/eslint/commit/a48f8c29b58c27d87dbf202d55a5770d678d37d6"><code>a48f8c2</code></a> feat: add type <code>FormatterFunction</code>, update <code>LoadedFormatter</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18872">#18872</a>) (Francesco Trotta)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/5e5f39b82535f59780ce4be56d01fd1466029c25"><code>5e5f39b</code></a> fix: add missing types for <code>no-restricted-exports</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18914">#18914</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8f630eb5794ef9fe38e0b8f034287650def634bd"><code>8f630eb</code></a> fix: add missing types for <code>no-param-reassign</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18906">#18906</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71578124f14d6da3fa5ab5cc391bb6c9ac3ffcf"><code>d715781</code></a> fix: add missing types for <code>no-extra-boolean-cast</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18902">#18902</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/2de5742682ec45e24dca9ca7faaa45330497fca9"><code>2de5742</code></a> fix: add missing types for <code>no-misleading-character-class</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18905">#18905</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/c153084250673b31bed46e3fe6af7a65b4ce8d6f"><code>c153084</code></a> fix: add missing types for <code>no-implicit-coercion</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18903">#18903</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/fa11b2ede6e5dc1f55dfe4b9b65d9760828900e8"><code>fa11b2e</code></a> fix: add missing types for <code>no-empty-function</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18901">#18901</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/a0deed122a9676fab07b903c8d16fbf60b92eadf"><code>a0deed1</code></a> fix: add missing types for <code>camelcase</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18897">#18897</a>) (Kristóf Poduszló)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/e4e570952249d1c4fde59c79a0f49a38490b72c9"><code>e4e5709</code></a> docs: correct <code>prefer-object-has-own</code> type definition comment (<a href="https://redirect.github.com/eslint/eslint/issues/18924">#18924</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/91cbd18c70dee2ef73de8d8e43f2c744fd173934"><code>91cbd18</code></a> docs: add unicode abbreviations in no-irregular-whitespace rule (<a href="https://redirect.github.com/eslint/eslint/issues/18894">#18894</a>) (Alix Royere)</li> <li><a href="https://github.com/eslint/eslint/commit/59cfc0f1b3bbb62260602579f79bd1c36ab5a00f"><code>59cfc0f</code></a> docs: clarify <code>resultsMeta</code> in <code>LoadedFormatter</code> type (<a href="https://redirect.github.com/eslint/eslint/issues/18881">#18881</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/adcc50dbf1fb98c0884f841e2a627796a4490373"><code>adcc50d</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/4edac1a325a832804f76602736a86217b40f69ac"><code>4edac1a</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <h2>Build Related</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/959d360be597d3112b10590018cd52f1d98712d6"><code>959d360</code></a> build: Support updates to previous major versions (<a href="https://redirect.github.com/eslint/eslint/issues/18871">#18871</a>) (Milos Djermanovic)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/ca21a64ed0f59adb9dadcef2fc8f7248879edbd3"><code>ca21a64</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.0 (<a href="https://redirect.github.com/eslint/eslint/issues/18927">#18927</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a10f90af35aea9ac555b1f33106fbba1027d774e"><code>a10f90a</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e02cc6938f38ad5028bb8ad82f52460a18dea5"><code>e4e02cc</code></a> refactor: Extract processor logic into ProcessorService (<a href="https://redirect.github.com/eslint/eslint/issues/18818">#18818</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/6d4484d9c19e4132f3dee948174a543dbbb5d30f"><code>6d4484d</code></a> chore: updates for v8.57.1 release (Jenkins)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </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.11.1 - September 23, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/df4a859b4cd578a3535a488a665a6e858289f455"><code>df4a859</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.1 (<a href="https://redirect.github.com/eslint/eslint/issues/18943">#18943</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20fd91689f2a89643a6f67e900a53552d47ddfe5"><code>20fd916</code></a> fix: add <code>@eslint/core</code>, <code>@types/estree</code>, &amp; <code>@types/json-schema</code> deps (<a href="https://redirect.github.com/eslint/eslint/issues/18938">#18938</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/3eff70963772e9faad4a865aaa4cf3d7dbe700a0"><code>3eff709</code></a> docs: replace deprecated <code>Linter.FlatConfig</code> type with <code>Linter.Config</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18941">#18941</a>) (Carlos Meira)</li> <li><a href="https://github.com/eslint/eslint/commit/27383226b8c5ead6b7cafc017a8ca12a1512a301"><code>2738322</code></a> fix: add missing types for <code>require-atomic-updates</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18937">#18937</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71ff3068c3134171346c91f4095dd5908d9c897"><code>d71ff30</code></a> fix: add missing types for <code>object-shorthand</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18935">#18935</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/561cadc54376fd0a5cc1446c3cd76bfbb6b3ce9d"><code>561cadc</code></a> fix: add missing types for <code>no-unsafe-negation</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18932">#18932</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/8843656f9b161d97d9dc78db01413029621e266d"><code>8843656</code></a> fix: add missing types for <code>no-underscore-dangle</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18931">#18931</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/92cde5c6da43b6017657e4c596421e3347f3dbc4"><code>92cde5c</code></a> fix: add missing types for <code>no-shadow</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18930">#18930</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/b3cbe11a9216d1edabd5b85d6f274ca84574bce6"><code>b3cbe11</code></a> fix: add missing types for <code>no-sequences</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18929">#18929</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/976f77f7f6da591b715b1ce2592f09c2f1160153"><code>976f77f</code></a> fix: add missing types for <code>no-unused-expressions</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18933">#18933</a>) (Kristóf Poduszló)</li> </ul> <p>v9.11.0 - September 20, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/ca21a64ed0f59adb9dadcef2fc8f7248879edbd3"><code>ca21a64</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.0 (<a href="https://redirect.github.com/eslint/eslint/issues/18927">#18927</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a10f90af35aea9ac555b1f33106fbba1027d774e"><code>a10f90a</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/5e5f39b82535f59780ce4be56d01fd1466029c25"><code>5e5f39b</code></a> fix: add missing types for <code>no-restricted-exports</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18914">#18914</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e570952249d1c4fde59c79a0f49a38490b72c9"><code>e4e5709</code></a> docs: correct <code>prefer-object-has-own</code> type definition comment (<a href="https://redirect.github.com/eslint/eslint/issues/18924">#18924</a>) (Nitin Kumar)</li> <li><a href="https://github.com/eslint/eslint/commit/8f630eb5794ef9fe38e0b8f034287650def634bd"><code>8f630eb</code></a> fix: add missing types for <code>no-param-reassign</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18906">#18906</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/d71578124f14d6da3fa5ab5cc391bb6c9ac3ffcf"><code>d715781</code></a> fix: add missing types for <code>no-extra-boolean-cast</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18902">#18902</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/e4e02cc6938f38ad5028bb8ad82f52460a18dea5"><code>e4e02cc</code></a> refactor: Extract processor logic into ProcessorService (<a href="https://redirect.github.com/eslint/eslint/issues/18818">#18818</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/ec30c7349e0bc2c37465a036e8c7ea3318ac2328"><code>ec30c73</code></a> feat: add &quot;eslint/universal&quot; to export <code>Linter</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18883">#18883</a>) (唯然)</li> <li><a href="https://github.com/eslint/eslint/commit/c591da68d4a96aa28df68f4eff7641f42af82b15"><code>c591da6</code></a> feat: Add language to types (<a href="https://redirect.github.com/eslint/eslint/issues/18917">#18917</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/91cbd18c70dee2ef73de8d8e43f2c744fd173934"><code>91cbd18</code></a> docs: add unicode abbreviations in no-irregular-whitespace rule (<a href="https://redirect.github.com/eslint/eslint/issues/18894">#18894</a>) (Alix Royere)</li> <li><a href="https://github.com/eslint/eslint/commit/959d360be597d3112b10590018cd52f1d98712d6"><code>959d360</code></a> build: Support updates to previous major versions (<a href="https://redirect.github.com/eslint/eslint/issues/18871">#18871</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/6d4484d9c19e4132f3dee948174a543dbbb5d30f"><code>6d4484d</code></a> chore: updates for v8.57.1 release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/492eb8f34ebbc5c9d1dbfcf4dd06b8dde8d1df74"><code>492eb8f</code></a> feat: limit the name given to <code>ImportSpecifier</code> in <code>id-length</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18861">#18861</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/2de5742682ec45e24dca9ca7faaa45330497fca9"><code>2de5742</code></a> fix: add missing types for <code>no-misleading-character-class</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18905">#18905</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/c153084250673b31bed46e3fe6af7a65b4ce8d6f"><code>c153084</code></a> fix: add missing types for <code>no-implicit-coercion</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18903">#18903</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/19c685608d134d9120a129cc80c0ba7f8f016aa3"><code>19c6856</code></a> feat: Add <code>no-useless-constructor</code> suggestion (<a href="https://redirect.github.com/eslint/eslint/issues/18799">#18799</a>) (Jordan Thomson)</li> <li><a href="https://github.com/eslint/eslint/commit/fa11b2ede6e5dc1f55dfe4b9b65d9760828900e8"><code>fa11b2e</code></a> fix: add missing types for <code>no-empty-function</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18901">#18901</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/a0deed122a9676fab07b903c8d16fbf60b92eadf"><code>a0deed1</code></a> fix: add missing types for <code>camelcase</code> options (<a href="https://redirect.github.com/eslint/eslint/issues/18897">#18897</a>) (Kristóf Poduszló)</li> <li><a href="https://github.com/eslint/eslint/commit/71f37c5bf04afb704232d312cc6c72c957d1c14e"><code>71f37c5</code></a> refactor: use optional chaining when validating config rules (<a href="https://redirect.github.com/eslint/eslint/issues/18893">#18893</a>) (lucasrmendonca)</li> <li><a href="https://github.com/eslint/eslint/commit/2c2805f8ee0fb1f27f3e442de248f45e5a98a067"><code>2c2805f</code></a> chore: Add PR note to all templates (<a href="https://redirect.github.com/eslint/eslint/issues/18892">#18892</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/7b852ce59e6ed56931c080aa46ab548fa57feffc"><code>7b852ce</code></a> refactor: use <code>Directive</code> class from <code>@eslint/plugin-kit</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18884">#18884</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/a48f8c29b58c27d87dbf202d55a5770d678d37d6"><code>a48f8c2</code></a> feat: add type <code>FormatterFunction</code>, update <code>LoadedFormatter</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18872">#18872</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/d594ddd2cc9b0c251291ea12fbd14ccd2ee32ac7"><code>d594ddd</code></a> chore: update dependency <code>@​eslint/core</code> to ^0.6.0 (<a href="https://redirect.github.com/eslint/eslint/issues/18863">#18863</a>) (renovate[bot])</li> <li><a href="https://github.com/eslint/eslint/commit/59cfc0f1b3bbb62260602579f79bd1c36ab5a00f"><code>59cfc0f</code></a> docs: clarify <code>resultsMeta</code> in <code>LoadedFormatter</code> type (<a href="https://redirect.github.com/eslint/eslint/issues/18881">#18881</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/78b2421e28f29206fe120ae1b03804b1b79e6324"><code>78b2421</code></a> chore: Update change.yml (<a href="https://redirect.github.com/eslint/eslint/issues/18882">#18882</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/a416f0a270e922c86e8571e94a30fc87d72fa873"><code>a416f0a</code></a> chore: enable <code>$ExpectType</code> comments in .ts files (<a href="https://redirect.github.com/eslint/eslint/issues/18869">#18869</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/adcc50dbf1fb98c0884f841e2a627796a4490373"><code>adcc50d</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/4edac1a325a832804f76602736a86217b40f69ac"><code>4edac1a</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <p>v8.57.1 - September 16, 2024</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/140ec4569fda5a974b6964242b0b2991828a5567"><code>140ec45</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/8"><code>@​8</code></a>.57.1 (<a href="https://redirect.github.com/eslint/eslint/issues/18913">#18913</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/bcdfc04a69c53dbf1fc3d38603fe0a796bf2274d"><code>bcdfc04</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/3f6ce8d6b74aba0d645448e898f271825eeb9630"><code>3f6ce8d</code></a> chore: pin vite-plugin-commonjs@0.10.1 (<a href="https://redirect.github.com/eslint/eslint/issues/18910">#18910</a>) (Milos Djermanovic)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/69e94597caa92c9b9f4071f8c9ed4a03772fa6de"><code>69e9459</code></a> 9.11.1</li> <li><a href="https://github.com/eslint/eslint/commit/fcdac444989e541abe9575f6c39d828ecbe5f5d1"><code>fcdac44</code></a> Build: changelog update for 9.11.1</li> <li><a href="https://github.com/eslint/eslint/commit/df4a859b4cd578a3535a488a665a6e858289f455"><code>df4a859</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.11.1 (<a href="https://redirect.github.com/eslint/eslint/issues/18943">#18943</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/36d8095308d8973aa38bb9568121822776a5199d"><code>36d8095</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/20fd91689f2a89643a6f67e900a53552d47ddfe5"><code>20fd916</code></a> fix: add <code>@eslint/core</code>, <code>@types/estree</code>, &amp; <code>@types/json-schema</code> deps (<a href="https://redirect.github.com/eslint/eslint/issues/18938">#18938</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/3eff70963772e9faad4a865aaa4cf3d7dbe700a0"><code>3eff709</code></a> docs: replace deprecated <code>Linter.FlatConfig</code> type with <code>Linter.Config</code> (<a href="https://redirect.github.com/eslint/eslint/issues/18941">#18941</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/27383226b8c5ead6b7cafc017a8ca12a1512a301"><code>2738322</code></a> fix: add missing types for <code>require-atomic-updates</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18937">#18937</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/d71ff3068c3134171346c91f4095dd5908d9c897"><code>d71ff30</code></a> fix: add missing types for <code>object-shorthand</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18935">#18935</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/561cadc54376fd0a5cc1446c3cd76bfbb6b3ce9d"><code>561cadc</code></a> fix: add missing types for <code>no-unsafe-negation</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18932">#18932</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/8843656f9b161d97d9dc78db01413029621e266d"><code>8843656</code></a> fix: add missing types for <code>no-underscore-dangle</code> rule (<a href="https://redirect.github.com/eslint/eslint/issues/18931">#18931</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.10.0...v9.11.1">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-organize-imports` from 4.0.0 to 4.1.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.1.0</h2> <p>Bumped 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> </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.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/b7c15ad9f5cac9634fb35440e7a40fa73b905c21"><code>b7c15ad</code></a> 4.1.0</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/2e9c480b722b2a6b7125cf6712ff36dcd14175a5"><code>2e9c480</code></a> chore: update dev dependencies</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/fb7e872d64780b885f49ae4e80e0066b78a7439d"><code>fb7e872</code></a> docs: update changelog</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/3fb452e7dfbf580aaf268dae366ba245ebcc98e5"><code>3fb452e</code></a> feat: support vue-tsc v2.1 (<a href="https://redirect.github.com/simonhaenisch/prettier-plugin-organize-imports/issues/136">#136</a>)</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/4678129bd02292916c5e9c62f3e8ee211990c6e1"><code>4678129</code></a> chore(ci): run on node 22</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/fa997242e4fa1a976c5a2ee69c186a35eca4e015"><code>fa99724</code></a> chore(ci): fix run-script invocation</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/3ea4a8151fca23af89685f10d41e183abced4c02"><code>3ea4a81</code></a> chore: use tsc to type-check the project</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/59c5329c468a48c1ed0fecf9e6690cce1090cc34"><code>59c5329</code></a> chore(tests): upgrade ava from v3 to v6</li> <li><a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/commit/b253038883f96ac1b738fb7262d4a9c80dcd73bc"><code>b253038</code></a> fix: drop <code>@vue/language-plugin-pug</code> as peer dependency</li> <li>See full diff in <a href="https://github.com/simonhaenisch/prettier-plugin-organize-imports/compare/v4.0.0...v4.1.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.5.0 to 8.7.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.7.0</h2> <h2>8.7.0 (2024-09-23)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> [no-unsafe-call] check calls of Function (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10010">#10010</a>)</li> <li><strong>eslint-plugin:</strong> [consistent-type-exports] check <code>export *</code> exports to see if all exported members are types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10006">#10006</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> properly coerce all types to string in <code>getStaticMemberAccessValue</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10004">#10004</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] report on imported deprecated variables (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9987">#9987</a>)</li> <li><strong>eslint-plugin:</strong> [no-confusing-non-null-assertion] check !in and !instanceof (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9994">#9994</a>)</li> <li><strong>types:</strong> add <code>NewExpression</code> as a parent of <code>SpreadElement</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10024">#10024</a>)</li> <li><strong>utils:</strong> add missing entries to the RuleListener selectors list (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9992">#9992</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Abraham Guo</li> <li>auvred <a href="https://github.com/auvred"><code>@​auvred</code></a></li> <li>Brian Donovan <a href="https://github.com/eventualbuddha"><code>@​eventualbuddha</code></a></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://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.6.0</h2> <h2>8.6.0 (2024-09-16)</h2> <h3>🚀 Features</h3> <ul> <li>add <code>allow</code> option for <code>restrict-template-expressions</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8556">#8556</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-condition] check switch cases (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9912">#9912</a>)</li> <li><strong>eslint-plugin:</strong> [no-misused-promises] check array predicate return (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9955">#9955</a>)</li> <li><strong>type-utils:</strong> isNullableType add Void logic (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9937">#9937</a>)</li> <li><strong>typescript-estree:</strong> disable plugin loading by default in project service (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9964">#9964</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [no-deprecated] don't report recursive types in destructuring assignment twice (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9969">#9969</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] report on deprecated variables used in destructuring assignment (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9978">#9978</a>)</li> <li><strong>eslint-plugin:</strong> [no-deprecated] report on deprecated properties with function-like types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9977">#9977</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-condition] properly reflect multiple negations in message (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9940">#9940</a>)</li> <li><strong>typescript-estree:</strong> don't throw on missing tsconfig.json by default in project service (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9989">#9989</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Abraham Guo</li> <li>auvred <a href="https://github.com/auvred"><code>@​auvred</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.7.0 (2024-09-23)</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.6.0 (2024-09-16)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/b88ea33f34e0b5f6fc5bd3463a5b32a5c9df8b7e"><code>b88ea33</code></a> chore(release): publish 8.7.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/343710e0b68868836ae01c0271472adcea4f1676"><code>343710e</code></a> chore(release): publish 8.6.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.7.0/packages/typescript-eslint">compare view</a></li> </ul> </details> <br /> Updates `vite` from 5.4.6 to 5.4.7 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/v5.4.7/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted -->5.4.7 (2024-09-20)<!-- raw HTML omitted --></h2> <ul> <li>fix: treat config file as ESM in Deno (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18158">#18158</a>) (<a href="https://github.com/vitejs/vite/commit/b5908a24ba0808380e3c8ec415624b108c65e08d">b5908a2</a>), closes <a href="https://redirect.github.com/vitejs/vite/issues/18158">#18158</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/a403e73d18e73f410d13ee769d343b8c68ff97e6"><code>a403e73</code></a> release: v5.4.7</li> <li><a href="https://github.com/vitejs/vite/commit/b5908a24ba0808380e3c8ec415624b108c65e08d"><code>b5908a2</code></a> fix: treat config file as ESM in Deno (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18158">#18158</a>)</li> <li>See full diff in <a href="https://github.com/vitejs/vite/commits/v5.4.7/packages/vite">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 ignor... _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-09-25 00:54:23 +02:00
"prettier-plugin-organize-imports": "^4.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 22:10:35 +02:00
"rollup-plugin-flow": "^1.1.1",
"sass": "^1.83.4",
Bump the dev-dependencies-minor group with 5 updates (#1887) [//]: # (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 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.10` | `22.12.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | Updates `@eslint/js` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.19.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.10 to 22.12.0 <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 `eslint` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/208e0b199f5d5f9dd173e58e3f5db19c1f0c38ed"><code>208e0b1</code></a> 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/196dfdace64d095f2facb3d8ebed1be9cb2ccab3"><code>196dfda</code></a> Build: changelog update for 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0">compare view</a></li> </ul> </details> <br /> Updates `semver` from 7.6.3 to 7.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>v7.7.0</h2> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/2cfcbb5021059d0b6642a77400efb4b51133bd75"><code>2cfcbb5</code></a> chore: release 7.7.0 (<a href="https://redirect.github.com/npm/node-semver/issues/750">#750</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> fix(diff): fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> fix: add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> feat: add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> docs(readme): added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> docs: clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> chore: bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> chore: postinstall for dependabot template-oss PR</li> <li><a href="https://github.com/npm/node-semver/commit/6502a15af34181b14a443d38bb75fc2d84bff0f9"><code>6502a15</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.1 to 4.23.3</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0</h2> <h2>8.22.0 (2025-01-27)</h2> <h3>🚀 Features</h3> <ul> <li><strong>parser:</strong> add standalone isolatedDeclarations option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10499">#10499</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10517">#10517</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents] handle nested types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10638">#10638</a>)</li> <li><strong>eslint-plugin:</strong> [no-shadow] don't report unnecessarily on valid ways of using module augmentation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10616">#10616</a>)</li> <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle accessor keyword (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10678">#10678</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10552">#10552</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression] handle template literal type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10612">#10612</a>)</li> <li><strong>type-utils:</strong> support matching intersection types in <code>TypeOrValueSpecifier</code> with a <code>PackageSpecifier</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10667">#10667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg ✨</li> <li>mdm317</li> <li>Olivier Zalmanski <a href="https://github.com/OlivierZal"><code>@​OlivierZal</code></a></li> <li>Ronen Amiel</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</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.22.0 (2025-01-27)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/94e809808a445dde05ab6f284dec010269482eb5"><code>94e8098</code></a> chore(release): publish 8.22.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.22.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-01-31 19:50:16 +01:00
"semver": "^7.7.0",
Bump the storybook-patch group with 10 updates (#1889) Bumps the storybook-patch group with 10 updates: | Package | From | To | | --- | --- | --- | | [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.5.1` | `8.5.2` | | [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.1` | `8.5.2` | | [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.5.1` | `8.5.2` | | [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks) | `8.5.1` | `8.5.2` | | [@storybook/builder-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/builders/builder-vite) | `8.5.1` | `8.5.2` | | [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.5.1` | `8.5.2` | | [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.5.1` | `8.5.2` | | [@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test) | `8.5.1` | `8.5.2` | | [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.5.1` | `8.5.2` | | [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.1` | `8.5.2` | Updates `@storybook/addon-essentials` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-essentials</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-essentials</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/essentials">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-interactions` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-interactions</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-interactions</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/interactions">compare view</a></li> </ul> </details> <br /> Updates `@storybook/addon-links` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/addon-links</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/addon-links</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/addons/links">compare view</a></li> </ul> </details> <br /> Updates `@storybook/blocks` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/blocks</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/blocks</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/blocks">compare view</a></li> </ul> </details> <br /> Updates `@storybook/builder-vite` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/builder-vite</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/builder-vite</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/builders/builder-vite">compare view</a></li> </ul> </details> <br /> Updates `@storybook/react` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/react</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/react</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/renderers/react">compare view</a></li> </ul> </details> <br /> Updates `@storybook/react-vite` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/react-vite</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/react-vite</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/frameworks/react-vite">compare view</a></li> </ul> </details> <br /> Updates `@storybook/test` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/test</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md"><code>@​storybook/test</code>'s changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/test">compare view</a></li> </ul> </details> <br /> Updates `@storybook/theming` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases"><code>@​storybook/theming</code>'s releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/theming">compare view</a></li> </ul> </details> <br /> Updates `storybook` from 8.5.1 to 8.5.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/releases">storybook's releases</a>.</em></p> <blockquote> <h2>v8.5.2</h2> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md">storybook's changelog</a>.</em></p> <blockquote> <h2>8.5.2</h2> <ul> <li>Addon Test: Support Vitest 3 browser.test.instances field - <a href="https://redirect.github.com/storybookjs/storybook/pull/30309">#30309</a>, thanks <a href="https://github.com/valentinpalkovic"><code>@​valentinpalkovic</code></a>!</li> <li>CLI: Corrected Next.js createScript for pnpm. - <a href="https://redirect.github.com/storybookjs/storybook/pull/30304">#30304</a>, thanks <a href="https://github.com/zhyd1997"><code>@​zhyd1997</code></a>!</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/storybookjs/storybook/commit/7dac855e80e0d36a583f294c5005248b8b808d7a"><code>7dac855</code></a> Bump version from &quot;8.5.1&quot; to &quot;8.5.2&quot; [skip ci]</li> <li>See full diff in <a href="https://github.com/storybookjs/storybook/commits/v8.5.2/code/lib/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-01-31 19:43:15 +01:00
"storybook": "^8.5.2",
"storybook-dark-mode": "^4.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 22:10:35 +02: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 21:54:08 +01:00
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
Bump the dev-dependencies-minor group with 5 updates (#1887) [//]: # (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 5 updates: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.10` | `22.12.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [semver](https://github.com/npm/node-semver) | `7.6.3` | `7.7.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | Updates `@eslint/js` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li>See full diff in <a href="https://github.com/eslint/eslint/commits/v9.19.0/packages/js">compare view</a></li> </ul> </details> <br /> Updates `@types/node` from 22.10.10 to 22.12.0 <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 `eslint` from 9.18.0 to 9.19.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.19.0</h2> <h2>Features</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> </ul> <h2>Bug Fixes</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> </ul> <h2>Documentation</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> <h2>Chores</h2> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</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.19.0 - January 24, 2025</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release (Jenkins)</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>) (Nicholas C. Zakas)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>) (Pavel)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>) (Milos Djermanovic)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/417de3298527e4f257e1ae7b02e1df9db3c9ed33"><code>417de32</code></a> docs: replace var with const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19352">#19352</a>) (jj)</li> <li><a href="https://github.com/eslint/eslint/commit/17f2aaec16d5afbb0d219bce6ae01d7b15d74828"><code>17f2aae</code></a> docs: update getting-started config to match default generated config (<a href="https://redirect.github.com/eslint/eslint/issues/19308">#19308</a>) (0xDev)</li> <li><a href="https://github.com/eslint/eslint/commit/aae67172ab9631b4267fc03f64d3c3d6d1fcda73"><code>aae6717</code></a> fix: sync rule type header comments automatically (<a href="https://redirect.github.com/eslint/eslint/issues/19276">#19276</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/8a0a5a8851f72982327c2aa3a41403963f025771"><code>8a0a5a8</code></a> docs: better <code>global ignores</code> instruction (<a href="https://redirect.github.com/eslint/eslint/issues/19297">#19297</a>) (Jacopo Marrone)</li> <li><a href="https://github.com/eslint/eslint/commit/20897070913418078d8f1ea9a877d223650dff73"><code>2089707</code></a> test: fix failing test in Node.js v22.13.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19345">#19345</a>) (Francesco Trotta)</li> <li><a href="https://github.com/eslint/eslint/commit/6671a2cd8ccc710fefbccad9a813c3bea5f76c68"><code>6671a2c</code></a> docs: Update README (GitHub Actions Bot)</li> <li><a href="https://github.com/eslint/eslint/commit/1637b8e87df5c7f58ab71e0e159f4b96c998e070"><code>1637b8e</code></a> feat: add <code>--report-unused-inline-configs</code> (<a href="https://redirect.github.com/eslint/eslint/issues/19201">#19201</a>) (Josh Goldberg ✨)</li> <li><a href="https://github.com/eslint/eslint/commit/e39d3f22ff793db42e1f1fc3808cbb12fc513118"><code>e39d3f2</code></a> docs: fix divider for rule category (<a href="https://redirect.github.com/eslint/eslint/issues/19264">#19264</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/e0cf53f80a4b127524e0badc8999d5d1a247143f"><code>e0cf53f</code></a> docs: fix search result box position for small screens (<a href="https://redirect.github.com/eslint/eslint/issues/19328">#19328</a>) (Tanuj Kanti)</li> <li><a href="https://github.com/eslint/eslint/commit/f92a6803a10c66cf77408b2bf29c17bcd63b1049"><code>f92a680</code></a> docs: replace var with let or const in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19331">#19331</a>) (Ravi Teja Kolla)</li> <li><a href="https://github.com/eslint/eslint/commit/b04b84bc17d4aaaea1326cb08196593624db02a2"><code>b04b84b</code></a> docs: revert accidental changes in TS config files docs (<a href="https://redirect.github.com/eslint/eslint/issues/19336">#19336</a>) (Francesco Trotta)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eslint/eslint/commit/208e0b199f5d5f9dd173e58e3f5db19c1f0c38ed"><code>208e0b1</code></a> 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/196dfdace64d095f2facb3d8ebed1be9cb2ccab3"><code>196dfda</code></a> Build: changelog update for 9.19.0</li> <li><a href="https://github.com/eslint/eslint/commit/9b9cb0584867916d50aa2e9590b132e2ef8ca59c"><code>9b9cb05</code></a> chore: upgrade <code>@​eslint/js</code><a href="https://github.com/9"><code>@​9</code></a>.19.0 (<a href="https://redirect.github.com/eslint/eslint/issues/19371">#19371</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/58560e70bb4dcb305343fcd7c893ac56a404f674"><code>58560e7</code></a> chore: package.json update for <code>@​eslint/js</code> release</li> <li><a href="https://github.com/eslint/eslint/commit/cfea9abe0e27cf2ce1d27232b8c70555397e141b"><code>cfea9ab</code></a> docs: Clarify overrideConfig option (<a href="https://redirect.github.com/eslint/eslint/issues/19370">#19370</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/2b84f666cd7474bb061e2f12205af57f5dbb89d6"><code>2b84f66</code></a> docs: Update README (<a href="https://redirect.github.com/eslint/eslint/issues/19362">#19362</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/044f93cbbe71a45130156004509083814e2b9669"><code>044f93c</code></a> docs: clarify frozen rule description (<a href="https://redirect.github.com/eslint/eslint/issues/19351">#19351</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/797ee7c0d669678b90c5d5742228bc7b24353f79"><code>797ee7c</code></a> docs: fix Bluesky links (<a href="https://redirect.github.com/eslint/eslint/issues/19368">#19368</a>)</li> <li><a href="https://github.com/eslint/eslint/commit/81a9c0ebc33dd33765711296f827c4448c80163d"><code>81a9c0e</code></a> docs: Update README</li> <li><a href="https://github.com/eslint/eslint/commit/093fb3d40286588c2c425b738426ebfe5d142a63"><code>093fb3d</code></a> docs: replace <code>var</code> with <code>let</code> and <code>const</code> in rule examples (<a href="https://redirect.github.com/eslint/eslint/issues/19365">#19365</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0">compare view</a></li> </ul> </details> <br /> Updates `semver` from 7.6.3 to 7.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>v7.7.0</h2> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/main/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">7.7.0</a> (2025-01-29)</h2> <h3>Features</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/753">#753</a> add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/755">#755</a> diff: fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>) (<a href="https://github.com/eminberkayd"><code>@​eminberkayd</code></a>, berkay.daglar)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/754">#754</a> add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>)</li> </ul> <h3>Documentation</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/756">#756</a> readme: added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>) (<a href="https://github.com/shaymolcho"><code>@​shaymolcho</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/749">#749</a> clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>) (<a href="https://github.com/mbtools"><code>@​mbtools</code></a>, <a href="https://github.com/ljharb"><code>@​ljharb</code></a>)</li> </ul> <h3>Chores</h3> <ul> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/741">#741</a> bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0 (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot])</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/747">#747</a> bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>) (<a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot], <a href="https://github.com/npm-cli-bot"><code>@​npm-cli-bot</code></a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> <a href="https://redirect.github.com/npm/node-semver/pull/744">#744</a> postinstall for dependabot template-oss PR (<a href="https://github.com/hashtagchris"><code>@​hashtagchris</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/2cfcbb5021059d0b6642a77400efb4b51133bd75"><code>2cfcbb5</code></a> chore: release 7.7.0 (<a href="https://redirect.github.com/npm/node-semver/issues/750">#750</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/d588e3782864b1cab2fe9f2452b848e8c7f609d1"><code>d588e37</code></a> fix(diff): fix prerelease to stable version diff logic (<a href="https://redirect.github.com/npm/node-semver/issues/755">#755</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/753e02b9d0cb3ac23e085dc33efcab3e08d61f2b"><code>753e02b</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.3 to 4.23.4 (<a href="https://redirect.github.com/npm/node-semver/issues/747">#747</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/8a34bdecc783407f4e1a8a1ee1f67906b84a4b78"><code>8a34bde</code></a> fix: add identifier validation to <code>inc()</code> (<a href="https://redirect.github.com/npm/node-semver/issues/754">#754</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/0864b3ce7932667013e0c7c5ec764777d4682883"><code>0864b3c</code></a> feat: add &quot;release&quot; inc type (<a href="https://redirect.github.com/npm/node-semver/issues/753">#753</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/67e54785a0f871361230f84323cbb631b9b6d834"><code>67e5478</code></a> docs(readme): added missing period for consistency (<a href="https://redirect.github.com/npm/node-semver/issues/756">#756</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/868d4bbe3d318c52544f38d5f9977a1103e924c2"><code>868d4bb</code></a> docs: clarify comment about obsolete prefixes (<a href="https://redirect.github.com/npm/node-semver/issues/749">#749</a>)</li> <li><a href="https://github.com/npm/node-semver/commit/145c554b8c7b7ecfcb451153ad18bdb2f24ad10d"><code>145c554</code></a> chore: bump <code>@​npmcli/eslint-config</code> from 4.0.5 to 5.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/0b812d5fb5fbb208e89dc1250e2efafeaa549437"><code>0b812d5</code></a> chore: postinstall for dependabot template-oss PR</li> <li><a href="https://github.com/npm/node-semver/commit/6502a15af34181b14a443d38bb75fc2d84bff0f9"><code>6502a15</code></a> chore: bump <code>@​npmcli/template-oss</code> from 4.23.1 to 4.23.3</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v7.6.3...v7.7.0">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0</h2> <h2>8.22.0 (2025-01-27)</h2> <h3>🚀 Features</h3> <ul> <li><strong>parser:</strong> add standalone isolatedDeclarations option (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10499">#10499</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10517">#10517</a>)</li> <li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents] handle nested types (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10638">#10638</a>)</li> <li><strong>eslint-plugin:</strong> [no-shadow] don't report unnecessarily on valid ways of using module augmentation (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10616">#10616</a>)</li> <li><strong>eslint-plugin:</strong> [no-extraneous-class] handle accessor keyword (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10678">#10678</a>)</li> <li><strong>eslint-plugin:</strong> [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10552">#10552</a>)</li> <li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression] handle template literal type (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10612">#10612</a>)</li> <li><strong>type-utils:</strong> support matching intersection types in <code>TypeOrValueSpecifier</code> with a <code>PackageSpecifier</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10667">#10667</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg ✨</li> <li>mdm317</li> <li>Olivier Zalmanski <a href="https://github.com/OlivierZal"><code>@​OlivierZal</code></a></li> <li>Ronen Amiel</li> <li>YeonJuan <a href="https://github.com/yeonjuan"><code>@​yeonjuan</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.22.0 (2025-01-27)</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> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/94e809808a445dde05ab6f284dec010269482eb5"><code>94e8098</code></a> chore(release): publish 8.22.0</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.22.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-01-31 19:50:16 +01:00
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
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 22:10:35 +02:00
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-static-copy": "^2.2.0",
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 21:54:08 +01:00
"vite-plugin-svgr": "^4.3.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 22:27:58 +01:00
"vite-tsconfig-paths": "^5.1.4",
Bump the dev-dependencies-patch group with 6 updates (#1828) Bumps the dev-dependencies-patch group with 6 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.7` | `22.10.10` | | [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.13` | `8.5.14` | | [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `3.0.3` | `3.0.4` | | [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) | `1.3.0` | `1.3.2` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.3` | `3.0.4` | | [@mdx-js/typescript-plugin](https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin) | `0.0.6` | `0.0.8` | Updates `@types/node` from 22.10.7 to 22.10.10 <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.13 to 8.5.14 <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 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/7297">#7297</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/coverage-istanbul">compare view</a></li> </ul> </details> <br /> Updates `prettier-plugin-jsdoc` from 1.3.0 to 1.3.2 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/571d0c9c2af1259cc1f622cdbe4547aa93c8b6af"><code>571d0c9</code></a> v1.3.2</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/1f648da14a98a0a7852aa064d6b45badb3cb6391"><code>1f648da</code></a> chore(release): 1.3.1</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/ffafd40cde8c8becee16ae1bc7a5cbe2cd2e42c8"><code>ffafd40</code></a> fix: add package manager</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/4e8bc801dc104de4f7a5170e9f5d1edc61a22217"><code>4e8bc80</code></a> Ensure parity between blockquote formats (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/231">#231</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/45296caabf4e9414f43ca359594624684626a0d1"><code>45296ca</code></a> Fixed duplication of &quot;Default is ...&quot; in documentation comments. (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/236">#236</a>)</li> <li><a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/commit/7a884b6d51c0aea75d0c8b4c7faf642d925367ac"><code>7a884b6</code></a> fix: provide correct types path in conditional exports (<a href="https://redirect.github.com/hosseinmd/prettier-plugin-jsdoc/issues/222">#222</a>)</li> <li>See full diff in <a href="https://github.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.3.0...v1.3.2">compare view</a></li> </ul> </details> <br /> Updates `vitest` from 3.0.3 to 3.0.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>v3.0.4</h2> <h3>   🐞 Bug Fixes</h3> <ul> <li>Filter projects eagerly during config resolution  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> and <a href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7313">vitest-dev/vitest#7313</a> <a href="https://github.com/vitest-dev/vitest/commit/dff4406d"><!-- raw HTML omitted -->(dff44)<!-- raw HTML omitted --></a></li> <li>Apply <code>development|production</code> condition on Vites 6 by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>) <a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><!-- raw HTML omitted -->(ef146)<!-- raw HTML omitted --></a></li> <li><strong>browser</strong>: Restrict served files from <code>/__screenshot-error</code>  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7340">vitest-dev/vitest#7340</a> <a href="https://github.com/vitest-dev/vitest/commit/ed9aeba2"><!-- raw HTML omitted -->(ed9ae)<!-- raw HTML omitted --></a></li> <li><strong>deps</strong>: Update all non-major 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/7297">vitest-dev/vitest#7297</a> <a href="https://github.com/vitest-dev/vitest/commit/38ea8eae"><!-- raw HTML omitted -->(38ea8)<!-- raw HTML omitted --></a></li> <li><strong>runner</strong>: Timeout long sync hook  -  by <a href="https://github.com/hi-ogawa"><code>@​hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7289">vitest-dev/vitest#7289</a> <a href="https://github.com/vitest-dev/vitest/commit/c60ee27c"><!-- raw HTML omitted -->(c60ee)<!-- raw HTML omitted --></a></li> <li><strong>typechecking</strong>: Support typechecking parsing with Vite 6  -  by <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7335">vitest-dev/vitest#7335</a> <a href="https://github.com/vitest-dev/vitest/commit/bff70be9"><!-- raw HTML omitted -->(bff70)<!-- raw HTML omitted --></a></li> <li><strong>types</strong>: Fix public types  -  by <a href="https://github.com/mrginglymus"><code>@​mrginglymus</code></a> and <a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/7328">vitest-dev/vitest#7328</a> <a href="https://github.com/vitest-dev/vitest/commit/ce6af70c"><!-- raw HTML omitted -->(ce6af)<!-- raw HTML omitted --></a></li> </ul> <h5>    <a href="https://github.com/vitest-dev/vitest/compare/v3.0.3...v3.0.4">View changes on GitHub</a></h5> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/9e404375825d870ed9d90db854d96f77a7abeaff"><code>9e40437</code></a> chore: release v3.0.4</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ef1464fc7b101709bfbf7b040e5bad62998c2ff9"><code>ef1464f</code></a> fix: apply <code>development|production</code> condition on Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7301">#7301</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/38ea8eaef86f808a4c088f7439d138458a8b16a3"><code>38ea8ea</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7297">#7297</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/dff4406d9c64a7778f548504f0dc0aa427b8fced"><code>dff4406</code></a> fix: filter projects eagerly during config resolution (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7313">#7313</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ce6af70c00481c067a5bedc1815f5f95d6a2048b"><code>ce6af70</code></a> fix(types): fix public types (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7328">#7328</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/bff70be978d42390d8af2a3b8b5ddd0556309fd0"><code>bff70be</code></a> fix(typechecking): support typechecking parsing with Vite 6 (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7335">#7335</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/a8d123cb33d7d3c900f7753bdad57d46b7ec5b6b"><code>a8d123c</code></a> chore(deps): update eslint packages (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/7086">#7086</a>)</li> <li>See full diff in <a href="https://github.com/vitest-dev/vitest/commits/v3.0.4/packages/vitest">compare view</a></li> </ul> </details> <br /> Updates `@mdx-js/typescript-plugin` from 0.0.6 to 0.0.8 <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>.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2><code>@​mdx-js/typescript-plugin</code><a href="https://github.com/0"><code>@​0</code></a>.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</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.0.8</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/4aca67fd6e19e91175829aea68cfa92cb0bf33d4"><code>4aca67f</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.2</li> </ul> </li> </ul> <h2>0.0.7</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/mdx-js/mdx-analyzer/commit/b2e970609b7c3cf8516d62ca78c43f24d993cdba"><code>b2e9706</code></a>]: <ul> <li><code>@​mdx-js/language-service</code><a href="https://github.com/0"><code>@​0</code></a>.6.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/89920f33d0be84498e4f7d794159235eecc3b293"><code>89920f3</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/489">#489</a>)</li> <li><a href="https://github.com/mdx-js/mdx-analyzer/commit/b2a56a58db136292a51a40e97c5b7d57a0c371e5"><code>b2a56a5</code></a> Version Packages (<a href="https://github.com/mdx-js/mdx-analyzer/tree/HEAD/packages/typescript-plugin/issues/487">#487</a>)</li> <li>See full diff in <a href="https://github.com/mdx-js/mdx-analyzer/commits/@mdx-js/typescript-plugin@0.0.8/packages/typescript-plugin">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 20:17:40 +01:00
"vitest": "^3.0.4"
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 22:10:35 +02:00
},
"dependencies": {
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 22:50:36 +01:00
"@floating-ui/react": "^0.27.3",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
"@monaco-editor/loader": "^1.4.0",
"@monaco-editor/react": "^4.6.0",
"@observablehq/plot": "^0.6.16",
"@react-hook/resize-observer": "^2.0.2",
"@table-nav/core": "^0.0.7",
"@table-nav/react": "^0.0.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 20:18:01 +01:00
"@tanstack/react-table": "^8.20.6",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02: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 22:10:35 +02:00
"@xterm/addon-serialize": "^0.13.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"base64-js": "^1.5.1",
"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 22:50:36 +01:00
"css-tree": "^3.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 22:10:35 +02:00
"dayjs": "^1.11.13",
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 22:50:36 +01:00
"debug": "^4.4.0",
Bump the electron group with 2 updates (#959) [//]: # (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 electron group with 2 updates: [electron-updater](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater) and [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder). Updates `electron-updater` from 6.3.4 to 6.3.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/releases">electron-updater's releases</a>.</em></p> <blockquote> <h2>electron-updater@6.3.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8541">#8541</a> <a href="https://github.com/electron-userland/electron-builder/commit/b6d6ea993fd3b368d28786c259bb50486aaac417"><code>b6d6ea993fd3b368d28786c259bb50486aaac417</code></a> Thanks <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! - fix: Unable to copy file for caching: ENOENT</p> </li> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8545">#8545</a> <a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore(deps): update devDependencies, including typescript</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.10</li> </ul> </li> </ul> <h2>electron-updater@6.3.8</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8516">#8516</a> <a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bdb</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - fix(chore): upgrading typescript and fixing compiler errors</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bdb</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.9</li> </ul> </li> </ul> <h2>electron-updater@6.3.7</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8491">#8491</a> <a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore: migrating to typedoc and updating/improving type+interface definitions</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.8</li> </ul> </li> </ul> <h2>electron-updater@6.3.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8486">#8486</a> <a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd274</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - fix(deploy): redeploy all packages to sync semver ranges</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd274</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.7</li> </ul> </li> </ul> <h2>electron-updater@6.3.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8437">#8437</a> <a href="https://github.com/electron-userland/electron-builder/commit/be625e06273e56de09ed3298209858043fcd1151"><code>be625e06</code></a> Thanks <a href="https://github.com/juwonjung-hdj"><code>@​juwonjung-hdj</code></a>! - fix: retry renaming update file when EBUSY error occurs due to file lock</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/be625e06273e56de09ed3298209858043fcd1151"><code>be625e06</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.6</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/blob/master/packages/electron-updater/CHANGELOG.md">electron-updater's changelog</a>.</em></p> <blockquote> <h2>6.3.9</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8541">#8541</a> <a href="https://github.com/electron-userland/electron-builder/commit/b6d6ea993fd3b368d28786c259bb50486aaac417"><code>b6d6ea993fd3b368d28786c259bb50486aaac417</code></a> Thanks <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! - fix: Unable to copy file for caching: ENOENT</p> </li> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8545">#8545</a> <a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore(deps): update devDependencies, including typescript</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.10</li> </ul> </li> </ul> <h2>6.3.8</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8516">#8516</a> <a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bdb</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - fix(chore): upgrading typescript and fixing compiler errors</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bdb</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.9</li> </ul> </li> </ul> <h2>6.3.7</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8491">#8491</a> <a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore: migrating to typedoc and updating/improving type+interface definitions</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.8</li> </ul> </li> </ul> <h2>6.3.6</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8486">#8486</a> <a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd274</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - fix(deploy): redeploy all packages to sync semver ranges</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd274</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.7</li> </ul> </li> </ul> <h2>6.3.5</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8437">#8437</a> <a href="https://github.com/electron-userland/electron-builder/commit/be625e06273e56de09ed3298209858043fcd1151"><code>be625e06</code></a> Thanks <a href="https://github.com/juwonjung-hdj"><code>@​juwonjung-hdj</code></a>! - fix: retry renaming update file when EBUSY error occurs due to file lock</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/be625e06273e56de09ed3298209858043fcd1151"><code>be625e06</code></a>]:</p> <ul> <li>builder-util-runtime@9.2.6</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron-userland/electron-builder/commit/899291193a8343636aa379df1da992c7bd8326fd"><code>8992911</code></a> chore(deploy): Release v25.1.7 (electron-updater@6.3.9) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8542">#8542</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/21dfd73b6388e13e9603ec1575d074f1278ede93"><code>21dfd73</code></a> chore(deps): eslint and prettier upgrade to v9 (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8552">#8552</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/b6d6ea993fd3b368d28786c259bb50486aaac417"><code>b6d6ea9</code></a> fix(updater): Unable to copy file for caching: ENOENT (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8541">#8541</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/2db62725d060d9f8d84194cba6c1118d93856205"><code>2db6272</code></a> chore(deploy): Release v25.1.5 (electron-updater@6.3.8) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8517">#8517</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bd</code></a> chore(deps): update typescript 5.x lockfile (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8516">#8516</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/7dceec7eca28ad80849b5d68c094192bed823f42"><code>7dceec7</code></a> chore(deps): update typescript eslint monorepo packages (major semver bump) (...</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/afc6a34f404904712d25dfb591cc58da267d3b3e"><code>afc6a34</code></a> chore(deploy): Release v25.1.3 (electron-updater@6.3.7) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8488">#8488</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c4</code></a> chore(docs): migrating to <code>typedoc</code> and upgrading <code>mkdocs</code>+<code>material</code> package...</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/0dd4616a879f46cc73a9a075d48b79af88676cf4"><code>0dd4616</code></a> chore(deploy): Release v25.1.2 (electron-updater@6.3.6) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8487">#8487</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd27</code></a> fix(deploy): redeploy all packages to sync semver ranges (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8486">#8486</a>)</li> <li>Additional commits viewable in <a href="https://github.com/electron-userland/electron-builder/commits/electron-updater@6.3.9/packages/electron-updater">compare view</a></li> </ul> </details> <br /> Updates `electron-builder` from 25.0.5 to 25.1.7 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/releases">electron-builder's releases</a>.</em></p> <blockquote> <h2>v25.1.7</h2> <h2>What's Changed</h2> <ul> <li>fix: Unable to copy file for caching: ENOENT by <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8541">electron-userland/electron-builder#8541</a></li> <li>chore(deps): update dependency <code>@​changesets/cli</code> to v2.27.8 by <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8546">electron-userland/electron-builder#8546</a></li> <li>chore(deps): pnpm update devDeps &amp; lock file maintenance by <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8545">electron-userland/electron-builder#8545</a></li> <li>fix: pass in platform to electron-rebuild by <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8537">electron-userland/electron-builder#8537</a></li> <li>chore(deps): eslint and prettier upgrade to v9 by <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8552">electron-userland/electron-builder#8552</a></li> <li>fix: fix the main matcher patterns for !node_modules/<code>@​test/xxxx</code> by <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8547">electron-userland/electron-builder#8547</a></li> <li>fix: check if the file already starts with a UTF-8 BOM by <a href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8551">electron-userland/electron-builder#8551</a></li> <li>chore(deploy): Release by <a href="https://github.com/github-actions"><code>@​github-actions</code></a> in <a href="https://redirect.github.com/electron-userland/electron-builder/pull/8542">electron-userland/electron-builder#8542</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/electron-userland/electron-builder/compare/v25.1.6...electron-builder@25.1.7">https://github.com/electron-userland/electron-builder/compare/v25.1.6...electron-builder@25.1.7</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/blob/master/packages/electron-builder/CHANGELOG.md">electron-builder's changelog</a>.</em></p> <blockquote> <h2>25.1.7</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8545">#8545</a> <a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore(deps): update devDependencies, including typescript</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/2e84f01351bcfb8f32df17c17bfeeeebb87a713f"><code>2e84f01351bcfb8f32df17c17bfeeeebb87a713f</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/fc3a78e4e61f916058fca9b15fc16f076c3fabd1"><code>fc3a78e4e61f916058fca9b15fc16f076c3fabd1</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/57cebf4dd4c722456245286d2fd795f7a5fc862c"><code>57cebf4dd4c722456245286d2fd795f7a5fc862c</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/7488456309d80b88fbf99fb382752078dc8ddefa"><code>7488456309d80b88fbf99fb382752078dc8ddefa</code></a>]:</p> <ul> <li>app-builder-lib@25.1.7</li> <li>dmg-builder@25.1.7</li> <li>builder-util@25.1.7</li> <li>builder-util-runtime@9.2.10</li> </ul> </li> </ul> <h2>25.1.6</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/cc8c70f7af5ca53b4c07b8ee32f460eabd4f9c34"><code>cc8c70f7</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/097eeced3c82a3f19d7b80f2a23f1f7749b8af92"><code>097eeced</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/eaf274d447d27d27a7ad663c5642a38d66f69917"><code>eaf274d4</code></a>]: <ul> <li>app-builder-lib@25.1.6</li> <li>builder-util@25.1.6</li> <li>dmg-builder@25.1.6</li> </ul> </li> </ul> <h2>25.1.5</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338"><code>d1cb6bdb</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/62fd74dcfa13a564706141d08e5d0dea11ecf33b"><code>62fd74dc</code></a>]: <ul> <li>app-builder-lib@25.1.5</li> <li>builder-util@25.1.5</li> <li>builder-util-runtime@9.2.9</li> <li>dmg-builder@25.1.5</li> </ul> </li> </ul> <h2>25.1.4</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/48489d187a18d7167477fe8ee1f7412035feb9ca"><code>48489d18</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/4cacee4d63ebfc9aacf156bd8b7faa80be1325dc"><code>4cacee4d</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/59f6cb01945c27578052c0e81e588d5c8be459f8"><code>59f6cb01</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/4b2f6937793a69fe15b35022e3ccca3be66b157d"><code>4b2f6937</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/9ab4ff92c0ab441a9ca422f87fbed2f3544dde5e"><code>9ab4ff92</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/f146b02f88e38eb55a374d67078a6bfb25b55bca"><code>f146b02f</code></a>]: <ul> <li>app-builder-lib@25.1.4</li> <li>builder-util@25.1.4</li> <li>dmg-builder@25.1.4</li> </ul> </li> </ul> <h2>25.1.3</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/electron-userland/electron-builder/pull/8491">#8491</a> <a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a> Thanks <a href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - chore: migrating to typedoc and updating/improving type+interface definitions</p> </li> <li> <p>Updated dependencies [<a href="https://github.com/electron-userland/electron-builder/commit/216eaf935da870f0a1a1b14f2b852f879d467710"><code>216eaf93</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c40</code></a>, <a href="https://github.com/electron-userland/electron-builder/commit/5e21509a3f40d1a21f6f9ec9bf1d9d72c7149a21"><code>5e21509a</code></a>]:</p> <ul> <li>app-builder-lib@25.1.3</li> <li>builder-util@25.1.3</li> <li>builder-util-runtime@9.2.8</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/electron-userland/electron-builder/commit/899291193a8343636aa379df1da992c7bd8326fd"><code>8992911</code></a> chore(deploy): Release v25.1.7 (electron-updater@6.3.9) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8542">#8542</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/8ef226aabf5744d8b227c8a3f5838f16317472f2"><code>8ef226a</code></a> chore(deploy): Release v25.1.6 (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8532">#8532</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/2db62725d060d9f8d84194cba6c1118d93856205"><code>2db6272</code></a> chore(deploy): Release v25.1.5 (electron-updater@6.3.8) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8517">#8517</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/59767b0714f67e1a378cf14c331816cb0acd8cb0"><code>59767b0</code></a> chore(deploy): Release v25.1.4 (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8496">#8496</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/afc6a34f404904712d25dfb591cc58da267d3b3e"><code>afc6a34</code></a> chore(deploy): Release v25.1.3 (electron-updater@6.3.7) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8488">#8488</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/178a3c40f35fa9e91a2e4942f61423effa1289e4"><code>178a3c4</code></a> chore(docs): migrating to <code>typedoc</code> and upgrading <code>mkdocs</code>+<code>material</code> package...</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/0dd4616a879f46cc73a9a075d48b79af88676cf4"><code>0dd4616</code></a> chore(deploy): Release v25.1.2 (electron-updater@6.3.6) (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8487">#8487</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/d56cd274b9d0fedb71889293164a15e51f7cc744"><code>d56cd27</code></a> fix(deploy): redeploy all packages to sync semver ranges (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8486">#8486</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/2b5933ab4fe42f7dc7dd87fbb66cb792786a6943"><code>2b5933a</code></a> chore(deploy): Release v25.1.0 (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8464">#8464</a>)</li> <li><a href="https://github.com/electron-userland/electron-builder/commit/ff8059e385efbf017b9e325e4e7649b5cb6dff15"><code>ff8059e</code></a> fix: checking extensions for <code>cjs</code> vs <code>mjs</code> while resolving config (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8482">#8482</a>)</li> <li>Additional commits viewable in <a href="https://github.com/electron-userland/electron-builder/commits/electron-builder@25.1.7/packages/electron-builder">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> Co-authored-by: Evan Simkowitz <esimkowitz@users.noreply.github.com>
2024-10-04 19:36:18 +02:00
"electron-updater": "6.3.9",
"env-paths": "^3.0.0",
Add release channels (#385) ## New release flow 1. Run "Bump Version" workflow with the desired version bump and the prerelease flag set to `true`. This will push a new version bump to the target branch and create a new git tag. - See below for more info on how the version bumping works. 2. A new "Build Helper" workflow run will kick off automatically for the new tag. Once it is complete, test the new build locally by downloading with the [download script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh). 3. Release the new build using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to beta users. 4. Run "Bump Version" again with a release bump (either `major`, `minor`, or `patch`) and the prerelease flag set to `false`. 6. Release the new build to all channels using the [publish script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh). This will trigger electron-updater to distribute the package to all users. ## Change Summary Creates a new "Bump Version" workflow to manage versioning and tag creation. Build Helper is now automated. ### Version bumps Updates the `version.cjs` script so that an argument can be passed to trigger a version bump. Under the hood, this utilizes NPM's `semver` package. If arguments are present, the version will be bumped. If only a single argument is given, the following are valid inputs: - `none`: No-op. - `patch`: Bumps the patch version. - `minor`: Bumps the minor version. - `major`: Bumps the major version. - '1', 'true': Bumps the prerelease version. If two arguments are given, the first argument must be either `none`, `patch`, `minor`, or `major`. The second argument must be `1` or `true` to bump the prerelease version. ### electron-builder We are now using the release channels support in electron-builder. This will automatically detect the channel being built based on the package version to determine which channel update files need to be generated. See [here](https://www.electron.build/tutorials/release-using-channels.html) for more information. ### Github Actions #### Bump Version This adds a new "Bump Version" workflow for managing versioning and queuing new builds. When run, this workflow will bump the version, create a new tag, and push the changes to the target branch. There is a new dropdown when queuing the "Bump Version" workflow to select what kind of version bump to perform. A bump must always be performed when running a new build to ensure consistency. I had to create a GitHub App to grant write permissions to our main branch for the version bump commits. I've made a separate workflow file to manage the version bump commits, which should help prevent tampering. Thanks to using the GitHub API directly, I am able to make these commits signed! #### Build Helper Build Helper is now triggered when new tags are created, rather than being triggered automatically. This ensures we're always creating artifacts from known checkpoints. ### Settings Adds a new `autoupdate:channel` configuration to the settings file. If unset, the default from the artifact will be used (should correspond to the channel of the artifact when downloaded). ## Future Work I want to add a release workflow that will automatically copy over the corresponding version artifacts to the release bucket when a new GitHub Release is created. I also want to separate versions into separate subdirectories in the release bucket so we can clean them up more-easily. --------- Co-authored-by: wave-builder <builds@commandline.dev> Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
"fast-average-color": "^9.4.0",
"htl": "^0.3.1",
"html-to-image": "^1.11.11",
"immer": "^10.1.1",
"jotai": "2.9.3",
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 20:18:01 +01:00
"monaco-editor": "^0.52.2",
Bump the prod-dependencies group across 1 directory with 5 updates (#1197) Bumps the prod-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.25` | `0.26.27` | | [css-tree](https://github.com/csstree/csstree) | `3.0.0` | `3.0.1` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.2` | `5.2.3` | | [remark-github-blockquote-alert](https://github.com/jaywcjlove/remark-github-blockquote-alert) | `1.2.1` | `1.3.0` | | [winston](https://github.com/winstonjs/winston) | `3.15.0` | `3.16.0` | Updates `@floating-ui/react` from 0.26.25 to 0.26.27 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.27</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): ignore Home/End key press for typeable combobox references</li> <li>fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code> on floating close</li> <li>fix(inner): use list ref length for fallback detection</li> <li>fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element. ⚠️ an always-<code>null</code> value will never render a portal node as this indicates it's waiting for an element; it must be <code>undefined</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.26</h2> <h3>Patch Changes</h3> <ul> <li>fix(useFloating): access <code>domReference</code> instead of <code>reference</code></li> <li>feat(FloatingFocusManager): specify element to return focus to</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.26.27</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): ignore Home/End key press for typeable combobox references</li> <li>fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code> on floating close</li> <li>fix(inner): use list ref length for fallback detection</li> <li>fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element</li> </ul> <h2>0.26.26</h2> <h3>Patch Changes</h3> <ul> <li>fix(useFloating): access <code>domReference</code> instead of <code>reference</code></li> <li>feat(FloatingFocusManager): specify element to return focus to</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/f1d95ac5ba8ce6eee128915c983326fbf0387cef"><code>f1d95ac</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3102">#3102</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/e05d561c60687b4cc12e2c232fc9ff1e97636eb8"><code>e05d561</code></a> fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element (#...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c4aba7aa7242e0574d12acd4198bded3f43132bc"><code>c4aba7a</code></a> fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code>...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/f65f9e2be0249e9add0299f9a3c5b79824ad6094"><code>f65f9e2</code></a> fix(useListNavigation): ignore Home/End key press for typeable combobox refer...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/229c5f71903e933fefe1f98f2457cf1210b8c960"><code>229c5f7</code></a> fix(inner): use list ref length for fallback detection (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3101">#3101</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c9672007a7cf8a0b3b0b3b654a234dbe681a1a1c"><code>c967200</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3084">#3084</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/24f2c4d6a7efd4ca3ecda9dda8a3a3595682ab80"><code>24f2c4d</code></a> fix(useFloating): access <code>domReference</code> instead of <code>reference</code> (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3094">#3094</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/703db3bf19ebcd2fc1a75ef2e6edbc1c6f2468c2"><code>703db3b</code></a> feat(FloatingFocusManager): specify element to return focus to (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3083">#3083</a>)</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.26.27/packages/react">compare view</a></li> </ul> </details> <br /> Updates `css-tree` from 3.0.0 to 3.0.1 <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.0.1</h2> <ul> <li>Bumped <code>mdn/data</code> to 2.12.1</li> <li>Added <code>errors</code> array to the <code>Lexer#validate()</code> method result, providing details on problematic syntax.</li> <li>Added CSS wide keyword customization and introspection: <ul> <li>Added a <code>Lexer#cssWideKeywords</code> dictionary to list CSS-wide keywords</li> <li>Updated the Lexer's constructor to consider <code>config.cssWideKeywords</code> for overriding the default list</li> <li>Expanded the lexer's dump output to include the <code>cssWideKeywords</code> dictionary</li> <li>Modified the <code>fork()</code> method to accept a <code>cssWideKeywords</code> option, allowing the addition of new keywords to the existing list</li> </ul> </li> <li>Reverted changes to <code>Block</code> to include <code>{</code> and <code>}</code>, and <code>Atrule</code> and <code>Rule</code> to exclude <code>{</code> and <code>}</code> for a <code>block</code> (<a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li>Removed second parameter (<code>assign</code>) for the callback in the <code>fork()</code> method (e.g., <code>syntax.fork((config, assign) =&gt; { ... })</code>), as it simply refers to <code>Object.assign()</code></li> <li>Fixes in syntaxes: <code>&lt;basic-shapes&gt;</code>, <code>&lt;absolute-color-function&gt;</code> and <code>&lt;'stroke-opacity'&gt;</code></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.0.1 (November 1, 2024)</h2> <ul> <li>Bumped <code>mdn/data</code> to 2.12.1</li> <li>Added <code>errors</code> array to the <code>Lexer#validate()</code> method result, providing details on problematic syntax.</li> <li>Added CSS wide keyword customization and introspection: <ul> <li>Added a <code>Lexer#cssWideKeywords</code> dictionary to list CSS-wide keywords</li> <li>Updated the Lexer's constructor to consider <code>config.cssWideKeywords</code> for overriding the default list</li> <li>Expanded the lexer's dump output to include the <code>cssWideKeywords</code> dictionary</li> <li>Modified the <code>fork()</code> method to accept a <code>cssWideKeywords</code> option, allowing the addition of new keywords to the existing list</li> </ul> </li> <li>Reverted changes to <code>Block</code> to include <code>{</code> and <code>}</code>, and <code>Atrule</code> and <code>Rule</code> to exclude <code>{</code> and <code>}</code> for a <code>block</code> (<a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li>Removed second parameter (<code>assign</code>) for the callback in the <code>fork()</code> method (e.g., <code>syntax.fork((config, assign) =&gt; { ... })</code>), as it simply refers to <code>Object.assign()</code></li> <li>Fixes in syntaxes: <code>&lt;basic-shapes&gt;</code>, <code>&lt;absolute-color-function&gt;</code> and <code>&lt;'stroke-opacity'&gt;</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csstree/csstree/commit/9825221fa5d930e10610de9eba85f51149c329ce"><code>9825221</code></a> 3.0.1</li> <li><a href="https://github.com/csstree/csstree/commit/d3ce7e918d6de3f7cf77b91850c3a9c58c73ec14"><code>d3ce7e9</code></a> Revert changes to <code>Block</code> to include curlies (fixes <a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/4175e97e17747cdd67bc84cfc6f3f6b6f02e7ea3"><code>4175e97</code></a> Fix &lt;'stroke-opacity'&gt; syntax (fixes <a href="https://redirect.github.com/csstree/csstree/issues/299">#299</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/6c761e7ffaad5ef7ccddc7cbca922049e151b809"><code>6c761e7</code></a> Merge pull request <a href="https://redirect.github.com/csstree/csstree/issues/291">#291</a> from pamelalozano16/master</li> <li><a href="https://github.com/csstree/csstree/commit/074269277d964ce024080df893dc0595b06fd20a"><code>0742692</code></a> Add <code>errors</code> array to the <code>Lexer#validate()</code> method result</li> <li><a href="https://github.com/csstree/csstree/commit/c20b5c50408526da7f4b640588597bbbeb4e13bd"><code>c20b5c5</code></a> Make tests stable to errors in definition syntaxes</li> <li><a href="https://github.com/csstree/csstree/commit/8aeb7bf83f75b8f397ceb692b0888d4d517e1463"><code>8aeb7bf</code></a> Bump mdn/data to 2.12.1</li> <li><a href="https://github.com/csstree/csstree/commit/7a3f134cccf123a1fed94e591843d9857302149f"><code>7a3f134</code></a> Fix lint warning</li> <li><a href="https://github.com/csstree/csstree/commit/a6c7db08c714b575a687b2d30e159739f706f242"><code>a6c7db0</code></a> Fix broken mdn/data syntaxes</li> <li><a href="https://github.com/csstree/csstree/commit/e7c8320992b330d2ac0a63c3c1a4bb6d9fad2f29"><code>e7c8320</code></a> Merge branch 'master' into pr/291</li> <li>Additional commits viewable in <a href="https://github.com/csstree/csstree/compare/v3.0.0...v3.0.1">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.2 to 5.2.3 <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.2.3</h2> <h2>What's Changed</h2> <ul> <li>467b134 fix: missing client capabilities by <a href="https://github.com/sumimakito"><code>@​sumimakito</code></a> in <a href="https://redirect.github.com/remcohaszing/monaco-yaml/pull/248">#248 </a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/sumimakito"><code>@​sumimakito</code></a> made their first contribution in <a href="https://redirect.github.com/remcohaszing/monaco-yaml/pull/248">remcohaszing/monaco-yaml#248</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/f38e40c9bebb4778e0d1ffd49abe661f3f74b2b9"><code>f38e40c</code></a> 5.2.3</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/a9b0d812d1be52f7f57c6a0efe2d18368abff56a"><code>a9b0d81</code></a> Add markdownEnumDescriptions to the demo</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/c7479a210ac50c08748f5a35eace85ec4ed21c70"><code>c7479a2</code></a> Avoid language-server-types import at runtime</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/467b13485397885ddf6dc51ba4f8b0b8eff5d9df"><code>467b134</code></a> fix: missing client capabilities</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5beb6100a538391effba847f09bca32d99972b8a"><code>5beb610</code></a> Explain why syntax highlighting might not work</li> <li>See full diff in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3">compare view</a></li> </ul> </details> <br /> Updates `remark-github-blockquote-alert` from 1.2.1 to 1.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/releases">remark-github-blockquote-alert's releases</a>.</em></p> <blockquote> <h2>v1.3.0</h2> <p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/remark-github-blockquote-alert@1.3.0/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p> <p>Documentation v1.3.0: <a href="https://raw.githack.com/jaywcjlove/remark-github-blockquote-alert/a520066/index.html">https://raw.githack.com/jaywcjlove/remark-github-blockquote-alert/a520066/index.html</a><br /> Comparing Changes: <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0">https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0</a></p> <ul> <li>💢 ci: update workflows config. a18169c <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> <li>💢 ci: Update FUNDING.yml 718850f <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> <li>🌟 feat: add <code>tagName</code> option. <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a> f5c617e <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/e9c3ca4b581f743bc0832f3a7425749a19262f2c"><code>e9c3ca4</code></a> released v1.3.0 <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a></li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/f5c617e8dbf36695e6ed9b683838af5b983712ff"><code>f5c617e</code></a> feat: add <code>tagName</code> option. <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a></li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/718850fd14c800de1505a2e7de940c00ad0ec55d"><code>718850f</code></a> ci: Update FUNDING.yml</li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/a18169c2bfb13db7e734545570346ef05599961a"><code>a18169c</code></a> ci: update workflows config.</li> <li>See full diff in <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0">compare view</a></li> </ul> </details> <br /> Updates `winston` from 3.15.0 to 3.16.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/winstonjs/winston/releases">winston's releases</a>.</em></p> <blockquote> <h2>v3.16.0</h2> <ul> <li>Feature - optionally include Error.cause property (<a href="https://redirect.github.com/winstonjs/winston/issues/2447">#2447</a>) 201b6f1</li> </ul> <p><a href="https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0">https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/winstonjs/winston/commit/06749a96115a0ed75783761e596754ab7ec9d16b"><code>06749a9</code></a> 3.16.0</li> <li><a href="https://github.com/winstonjs/winston/commit/201b6f1d739022b24109eade5b1dc1abf1fd287c"><code>201b6f1</code></a> Feature - optionally include Error.cause property (<a href="https://redirect.github.com/winstonjs/winston/issues/2447">#2447</a>)</li> <li>See full diff in <a href="https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-04 19:09:21 +01:00
"monaco-yaml": "^5.2.3",
Bump the prod-dependencies group with 2 updates (#1362) Bumps the prod-dependencies group with 2 updates: [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) and [shell-quote](https://github.com/ljharb/shell-quote). Updates `overlayscrollbars` from 2.10.0 to 2.10.1 <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.10.1</h2> <h3>Improvements</h3> <ul> <li>Add <code>pen</code> to the list of &quot;hoverable&quot; pointer devices. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/690">#690</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/170547a6c7129ea345ea55af1110d51455320e23"><code>170547a</code></a> v2.10.1</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/4738f6f3a4b1383315f3eea75bf45521a411c1f9"><code>4738f6f</code></a> add pen device to hoverable pointer types</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/b11536b47b3a67b5a3d169c7fc3a98fda1602acd"><code>b11536b</code></a> remove tilde imports</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/c38309e1e3c69b5525088994270913db76e6315b"><code>c38309e</code></a> fix test</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cadff268f6de99567ea050166a0b40908d1bf2ec"><code>cadff26</code></a> move repo to esm</li> <li>See full diff in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.10.1/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `shell-quote` from 1.8.1 to 1.8.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/shell-quote/blob/main/CHANGELOG.md">shell-quote's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.2">v1.8.2</a> - 2024-11-27</h2> <h3>Fixed</h3> <ul> <li>[Fix] <code>quote</code>: preserve empty strings <a href="https://redirect.github.com/ljharb/shell-quote/issues/18"><code>[#18](https://github.com/ljharb/shell-quote/issues/18)</code></a></li> </ul> <h3>Commits</h3> <ul> <li>[meta] fix changelog tags <a href="https://github.com/ljharb/shell-quote/commit/0fb9fd8441aa06f7de995e90ce85bd9e758f5f05"><code>0fb9fd8</code></a></li> <li>[actions] split out node 10-20, and 20+ <a href="https://github.com/ljharb/shell-quote/commit/819bd842e0b01f3e5041834ab82bad299851de08"><code>819bd84</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>npmignore</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/fc564086c83317363908b55f6c744ad35983ccca"><code>fc56408</code></a></li> <li>[actions] update npm for windows tests <a href="https://github.com/ljharb/shell-quote/commit/fdeb0fd102ecdd4ff227a978532598c462312347"><code>fdeb0fd</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>aud</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/b8a4a3b3f5ae3ca8ae86b89ed0030e4e3358ef3c"><code>b8a4a3b</code></a></li> <li>[actions] prevent node 14 on ARM mac from failing <a href="https://github.com/ljharb/shell-quote/commit/9eecafc0486c9321be223415cf3fb76a5bd07dda"><code>9eecafc</code></a></li> <li>[meta] exclude more files from the package <a href="https://github.com/ljharb/shell-quote/commit/4044e7fad4a45e696602060b69b31a95702bee28"><code>4044e7f</code></a></li> <li>[Tests] replace <code>aud</code> with <code>npm audit</code> <a href="https://github.com/ljharb/shell-quote/commit/8cfdbd8ec30e653f9f99348e59117ed4a789e1ba"><code>8cfdbd8</code></a></li> <li>[meta] add missing <code>engines.node</code> <a href="https://github.com/ljharb/shell-quote/commit/843820e1a46cebcf10d8e48c4d82d0ab5a7b0194"><code>843820e</code></a></li> <li>[Dev Deps] add missing peer dep <a href="https://github.com/ljharb/shell-quote/commit/4c3b88d7925d29e9cc1ac76ccde05f4e714ede96"><code>4c3b88d</code></a></li> <li>[Dev Deps] pin <code>jackspeak</code> since 2.1.2+ depends on npm aliases, which kill the install process in npm &lt; 6 <a href="https://github.com/ljharb/shell-quote/commit/80322ed5914a5922d9507946490fbabcc96e624b"><code>80322ed</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ljharb/shell-quote/commit/b19fc77e66871eee10a9978d54c27d802a1da99b"><code>b19fc77</code></a> v1.8.2</li> <li><a href="https://github.com/ljharb/shell-quote/commit/59d29ea6941335258ceb75bab95d045886650436"><code>59d29ea</code></a> [Fix] <code>quote</code>: preserve empty strings</li> <li><a href="https://github.com/ljharb/shell-quote/commit/819bd842e0b01f3e5041834ab82bad299851de08"><code>819bd84</code></a> [actions] split out node 10-20, and 20+</li> <li><a href="https://github.com/ljharb/shell-quote/commit/4c3b88d7925d29e9cc1ac76ccde05f4e714ede96"><code>4c3b88d</code></a> [Dev Deps] add missing peer dep</li> <li><a href="https://github.com/ljharb/shell-quote/commit/fc564086c83317363908b55f6c744ad35983ccca"><code>fc56408</code></a> [Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>npmignore</code>, <code>tape</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/8cfdbd8ec30e653f9f99348e59117ed4a789e1ba"><code>8cfdbd8</code></a> [Tests] replace <code>aud</code> with <code>npm audit</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/9eecafc0486c9321be223415cf3fb76a5bd07dda"><code>9eecafc</code></a> [actions] prevent node 14 on ARM mac from failing</li> <li><a href="https://github.com/ljharb/shell-quote/commit/843820e1a46cebcf10d8e48c4d82d0ab5a7b0194"><code>843820e</code></a> [meta] add missing <code>engines.node</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/4044e7fad4a45e696602060b69b31a95702bee28"><code>4044e7f</code></a> [meta] exclude more files from the package</li> <li><a href="https://github.com/ljharb/shell-quote/commit/fdeb0fd102ecdd4ff227a978532598c462312347"><code>fdeb0fd</code></a> [actions] update npm for windows tests</li> <li>Additional commits viewable in <a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.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>
2024-12-04 23:50:13 +01:00
"overlayscrollbars": "^2.10.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 22:10:35 +02:00
"overlayscrollbars-react": "^0.5.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 22:50:36 +01:00
"papaparse": "^5.5.2",
2024-12-17 01:04:07 +01: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 22:10:35 +02:00
"pngjs": "^7.0.0",
2024-11-04 19:04:32 +01:00
"prop-types": "^15.8.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 22:10:35 +02:00
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.3.1",
"react-frame-component": "^5.2.7",
"react-gauge-chart": "^0.5.1",
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 20:18:01 +01:00
"react-markdown": "^9.0.3",
Bump the prod-dependencies-minor group with 6 updates (#1888) Bumps the prod-dependencies-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.28` | `0.27.3` | | [css-tree](https://github.com/csstree/csstree) | `3.0.1` | `3.1.0` | | [debug](https://github.com/debug-js/debug) | `4.3.7` | `4.4.0` | | [papaparse](https://github.com/mholt/PapaParse) | `5.4.1` | `5.5.2` | | [react-zoom-pan-pinch](https://github.com/prc5/react-zoom-pan-pinch) | `3.6.1` | `3.7.0` | | [yaml](https://github.com/eemeli/yaml) | `2.6.1` | `2.7.0` | Updates `@floating-ui/react` from 0.26.28 to 0.27.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.27.3</h2> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): accept <code>FloatingRootContext</code> as the <code>context</code> prop</li> <li>fix(useListNavigation): check for virtual pointer on pointerenter</li> <li>refactor: use jsx runtime</li> <li>Update dependencies: <code>@floating-ui/utils@0.2.9</code></li> </ul> <h2>0.27.2</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes from being left on outside elements</li> </ul> <h2>0.27.1</h2> <h3>Patch Changes</h3> <ul> <li>fix(FloatingFocusManager): correctly fallback to container</li> <li>fix(FloatingFocusManager): check for ancestor floating focus element during <code>closeOnFocusOut</code></li> <li>fix(FloatingFocusManager): avoid marking tree ancestor floating nodes with <code>data-floating-ui-inert</code> when <code>modal=false</code></li> </ul> <h2>0.27.0</h2> <h3>Minor Changes</h3> <ul> <li>chore: deprecate <code>inner</code> and <code>useInnerOffset</code>. This technique of aligning an inner element to the reference has poor performance with longer lists, doesn't fit with the middleware paradigm, doesn't work on touch, and has a better custom alternative using native <code>onScroll</code> that is encouraged instead.</li> <li>breaking: drop React 16 support. 17 is the minimum supported version.</li> <li>fix(useId): add <code>| undefined</code> return type for React 17</li> </ul> <h3>Patch Changes</h3> <ul> <li>feat(FloatingFocusManager): add <code>outsideElementsInert</code> prop. This enables pointer modality without a backdrop.</li> <li>perf(useListNavigation): simplify focusing to remove unneeded asynchronicity</li> <li>fix(useDismiss): allow native clicks to work with <code>referencePress</code></li> <li>fix(useDismiss): read target <code>overflow</code> style for scrollbar press check. Fixes an issue where outside presses would be incorrectly prevented if the target element that was pressed appeared scrollable but was actually not.</li> <li>fix(FloatingFocusManager): check for 'safe-polygon' reason on return focus</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/b0dfb58949567209fcdca994ff12848942a85ce4"><code>b0dfb58</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3187">#3187</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/1fa2c50ae5a4175e82f77d69a2955ca45e15f30d"><code>1fa2c50</code></a> chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3177">#3177</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/69b5f888400f7cf1f3157da9ca9fabfd438ff736"><code>69b5f88</code></a> feat(FloatingFocusManager): accept <code>FloatingRootContext</code> (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3182">#3182</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/b6d88be59173af9da75b0f632a6a50c9c5b28244"><code>b6d88be</code></a> fix(useListNavigation): check for virtual pointer on pointerenter (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3184">#3184</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/568eab7e1b8fc4a4533d462b0ddbc865020c8645"><code>568eab7</code></a> refactor: use jsx runtime (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3186">#3186</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/6a9f75821398f71bd3d3c644af41d40d06367544"><code>6a9f758</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3165">#3165</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c9f19ecec22dca1e453918b298d9280de84cff84"><code>c9f19ec</code></a> fix(FloatingFocusManager): prevent stale <code>inert</code>/<code>aria-hidden</code> attributes fro...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/33bd900c70a8b306671c9187607b7aa74a708407"><code>33bd900</code></a> chore: version packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3158">#3158</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/e24b4fbcdb56fc05353355afe35f404af2653cff"><code>e24b4fb</code></a> fix(FloatingFocusManager): avoid marking tree ancestor floating nodes when `m...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c728afa590c81832e374e7c6558fa5d90035205e"><code>c728afa</code></a> fix(FloatingFocusManager): check for floating focus root element (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3159">#3159</a>)</li> <li>Additional commits viewable in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.27.3/packages/react">compare view</a></li> </ul> </details> <br /> Updates `css-tree` from 3.0.1 to 3.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/releases">css-tree's releases</a>.</em></p> <blockquote> <h2>3.1.0</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of <a href="https://drafts.csswg.org/css-values-5/">CSS Values and Units L5</a>.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/csstree/csstree/blob/master/CHANGELOG.md">css-tree's changelog</a>.</em></p> <blockquote> <h2>3.1.0 (December 6, 2024)</h2> <ul> <li>Added support for <a href="https://drafts.csswg.org/css-values-5/#boolean">boolean expression multiplier</a> in syntax definition, i.e. <code>&lt;boolean-expr[ test ]&gt;</code> (<a href="https://redirect.github.com/csstree/csstree/issues/304">#304</a>)</li> <li>Added <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to <code>OffsetToLocation</code> constructor, eliminating the need to call <code>setSource()</code> after creating a new <code>OffsetToLocation</code> instance</li> <li>Exposed <code>OffsetToLocation</code> class in the main entry point, which was previously accessible only via <code>css-tree/tokenizer</code></li> <li>Fixed <code>Raw</code> node value consumption by ignoring stop tokens inside blocks, resolving an issue where <code>Raw</code> value consumption stopped prematurely. This fix also enables parsing of functions whose content includes stop characters (e.g., semicolons and curly braces) within declaration values, aligning with the latest draft of CSS Values and Units Module Level 5.</li> <li>Fixed <code>TokenStream#balance</code> computation to handle unmatched brackets correctly. Previously, when encountering a closing bracket, the <code>TokenStream</code> would prioritize it over unmatched opening brackets, leading to improper parsing. For example, the parser would incorrectly consume the declaration value of <code>.a { prop: ([{); }</code> as <code>([{)</code> instead of consuming it until all opened brackets were closed (<code>([{); }</code>). Now, unmatched closing brackets are discarded unless they match the most recent opening bracket on the stack. This change aligns CSSTree with CSS specifications and browser behavior.</li> <li>Fixed syntax definition parser to allow a token to be followed by a multiplier (<a href="https://redirect.github.com/csstree/csstree/issues/303">#303</a>)</li> <li>Fixed location for <code>Layer</code> node (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li>Bumped <code>mdn/data</code> to 2.12.2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csstree/csstree/commit/354254f7859bd9cd22c762fc8fada73a74bf2947"><code>354254f</code></a> 3.1.0</li> <li><a href="https://github.com/csstree/csstree/commit/3e0b93b0549e3760745552f351b13b579c944f56"><code>3e0b93b</code></a> Fix <code>TokenStream#balance</code> computation and</li> <li><a href="https://github.com/csstree/csstree/commit/6b24dcc26d93f827d244c64e75bb9b6c341632bf"><code>6b24dcc</code></a> Fix npm audit warning</li> <li><a href="https://github.com/csstree/csstree/commit/758ccf774f41fa9c6c501cbe18b3e2db02a0cdf5"><code>758ccf7</code></a> Fix location of &lt;layer-name&gt; (<a href="https://redirect.github.com/csstree/csstree/issues/310">#310</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/7cfec03270088f42ee40db1c744e00efe2bc219e"><code>7cfec03</code></a> Bump esbuild to ^0.24.0</li> <li><a href="https://github.com/csstree/csstree/commit/eab1c8e7819786d0ec53a744271c3b90fb0b5659"><code>eab1c8e</code></a> Add <code>source</code>, <code>startOffset</code>, <code>startLine</code>, and <code>startColumn</code> parameters to `Of...</li> <li><a href="https://github.com/csstree/csstree/commit/ab29676545277c8315077f506e53fedd6920ad00"><code>ab29676</code></a> Expose OffsetToLocation in main entry point</li> <li><a href="https://github.com/csstree/csstree/commit/0afee3d88916a2860b48144537027cfb2f48c080"><code>0afee3d</code></a> Update mdn-data to v2.12.2 (<a href="https://redirect.github.com/csstree/csstree/issues/306">#306</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/2c95a514f4680b52012e5477a21cf6c28a6cf0e3"><code>2c95a51</code></a> Add lexer can check at-rules syntax</li> <li><a href="https://github.com/csstree/csstree/commit/511bed50f1d9d66b49aabd3e03d7ec2596dd18a7"><code>511bed5</code></a> Rename &lt;boolean[]&gt; into &lt;boolean-expr[]&gt; (fixes <a href="https://redirect.github.com/csstree/csstree/issues/307">#307</a>)</li> <li>Additional commits viewable in <a href="https://github.com/csstree/csstree/compare/v3.0.1...v3.1.0">compare view</a></li> </ul> </details> <br /> Updates `debug` from 4.3.7 to 4.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/debug-js/debug/releases">debug's releases</a>.</em></p> <blockquote> <h2>4.4.0</h2> <p>Fixes (hopefully) the inefficient regex warnings in <code>.enable()</code>.</p> <p>Minor version as this is invariably going to break certain users who misuse the <code>.enable()</code> API and expected it to work with regexes, which was never supported nor documented. That's on you, sorry - that functionality won't be added back.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">https://github.com/debug-js/debug/compare/4.3.7...4.4.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/debug-js/debug/commit/7e3814cc603bf64fdd69e714e0cf5611ec31f43b"><code>7e3814c</code></a> 4.4.0</li> <li><a href="https://github.com/debug-js/debug/commit/d2d6bf0bab3a0eeeb3a9ce7113cb0a31d8da678f"><code>d2d6bf0</code></a> fix inefficient .enable() regex and .enabled() test</li> <li>See full diff in <a href="https://github.com/debug-js/debug/compare/4.3.7...4.4.0">compare view</a></li> </ul> </details> <br /> Updates `papaparse` from 5.4.1 to 5.5.2 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mholt/PapaParse/commits">compare view</a></li> </ul> </details> <br /> Updates `react-zoom-pan-pinch` from 3.6.1 to 3.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prc5/react-zoom-pan-pinch/releases">react-zoom-pan-pinch's releases</a>.</em></p> <blockquote> <h2>v3.7.0</h2> <h1><a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">3.7.0</a> (2025-01-31)</h1> <h3>Bug Fixes</h3> <ul> <li>🐛 lint (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27">ab348dc</a>)</li> <li>Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c">3643a47</a>)</li> <li>Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289">5cf057b</a>)</li> <li>zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345">d770efb</a>)</li> </ul> <h3>Features</h3> <ul> <li>Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>) (<a href="https://github.com/prc5/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0">800beb1</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/68616a3a02d26bcf7444eab8c1abadf64bc2c730"><code>68616a3</code></a> test: 💍 resize observer polyfill</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/ab348dc9619451f196e5f5cd094468403151ea27"><code>ab348dc</code></a> fix: 🐛 lint</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/d770efb17cd7c882c3180f1591c71123d9381345"><code>d770efb</code></a> fix: zoom does not work when pinching on mobile (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/499">#499</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/5cf057b077fc515eaaaaafb94fd6c6dfec415289"><code>5cf057b</code></a> fix: Fixes blurry images on safari. (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/497">#497</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/3643a47a2e50ef4153a86647e7bd266213ef635c"><code>3643a47</code></a> fix: Fixed auto align to bounds bugs (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/486">#486</a>)</li> <li><a href="https://github.com/BetterTyped/react-zoom-pan-pinch/commit/800beb1f3fa0a8c364871fd8b10a0841959f9aa0"><code>800beb1</code></a> feat: Support auto align to bounds on resize (<a href="https://redirect.github.com/prc5/react-zoom-pan-pinch/issues/485">#485</a>)</li> <li>See full diff in <a href="https://github.com/prc5/react-zoom-pan-pinch/compare/v3.6.1...v3.7.0">compare view</a></li> </ul> </details> <br /> Updates `yaml` from 2.6.1 to 2.7.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.7.0</h2> <p>The library is now available on JSR as <a href="https://jsr.io/@eemeli/yaml"><code>@​eemeli/yaml</code></a> and on deno.land/x as <a href="https://deno.land/x/yaml">yaml</a>. In addition to Node.js and browsers, it should work in Deno, Bun, and Cloudflare Workers.</p> <ul> <li>Use .ts extension in all relative imports (<a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a>)</li> <li>Ignore newline after block seq indicator as space before value (<a href="https://redirect.github.com/eemeli/yaml/issues/590">#590</a>)</li> <li>Require Node.js 14.18 or later (was 14.6) (<a href="https://redirect.github.com/eemeli/yaml/issues/598">#598</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/8f512b526a52e245e770be257235f7d37059ca39"><code>8f512b5</code></a> 2.7.0</li> <li><a href="https://github.com/eemeli/yaml/commit/8a7569afff1a7add4560ed2e125eebab1f9683f1"><code>8a7569a</code></a> ci: Add jsr.jsonc &amp; jsr-publish workflow</li> <li><a href="https://github.com/eemeli/yaml/commit/8ef085fa870f2b749e67ce52bb642afb796b7150"><code>8ef085f</code></a> docs: Fix API docs links</li> <li><a href="https://github.com/eemeli/yaml/commit/374c19cfdc051ca81c5a1ce12ca733c2e2a9ec93"><code>374c19c</code></a> style: Really use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/1ab037d64674baf0265dfe6a57c5b3c8c2d5120a"><code>1ab037d</code></a> style: Include explicit type declarations on all public APIs</li> <li><a href="https://github.com/eemeli/yaml/commit/4354c4233d7f75aed47a6d0ab74ab54867892b61"><code>4354c42</code></a> style: Use explicit imports for process.env and Buffer</li> <li><a href="https://github.com/eemeli/yaml/commit/2c55723ab9f1d654d27deb2ed666d1c414a69013"><code>2c55723</code></a> Merge pull request <a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a> from eemeli/import-ts</li> <li><a href="https://github.com/eemeli/yaml/commit/ab240c17d35bb808a6df8e3039b9ddd6a2de7ac4"><code>ab240c1</code></a> fix: Drop .ts extension from import &amp; export paths in .d.ts files</li> <li><a href="https://github.com/eemeli/yaml/commit/c4c49f9e95db811a6fe7fd529647cb2659f150d0"><code>c4c49f9</code></a> fix: Use separate rather than inline type keyword for TS compatibility</li> <li><a href="https://github.com/eemeli/yaml/commit/3bec004db4206ebb0d4551f981a7f9961077470b"><code>3bec004</code></a> ci: Add deno smoke test</li> <li>Additional commits viewable in <a href="https://github.com/eemeli/yaml/compare/v2.6.1...v2.7.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-31 22:50:36 +01:00
"react-zoom-pan-pinch": "^3.7.0",
"rehype-highlight": "^7.0.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 22:10:35 +02:00
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-flexible-toc": "^1.1.1",
"remark-gfm": "^4.0.0",
Bump the prod-dependencies group across 1 directory with 5 updates (#1197) Bumps the prod-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) | `0.26.25` | `0.26.27` | | [css-tree](https://github.com/csstree/csstree) | `3.0.0` | `3.0.1` | | [monaco-yaml](https://github.com/remcohaszing/monaco-yaml) | `5.2.2` | `5.2.3` | | [remark-github-blockquote-alert](https://github.com/jaywcjlove/remark-github-blockquote-alert) | `1.2.1` | `1.3.0` | | [winston](https://github.com/winstonjs/winston) | `3.15.0` | `3.16.0` | Updates `@floating-ui/react` from 0.26.25 to 0.26.27 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.27</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): ignore Home/End key press for typeable combobox references</li> <li>fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code> on floating close</li> <li>fix(inner): use list ref length for fallback detection</li> <li>fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element. ⚠️ an always-<code>null</code> value will never render a portal node as this indicates it's waiting for an element; it must be <code>undefined</code></li> </ul> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.26</h2> <h3>Patch Changes</h3> <ul> <li>fix(useFloating): access <code>domReference</code> instead of <code>reference</code></li> <li>feat(FloatingFocusManager): specify element to return focus to</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.26.27</h2> <h3>Patch Changes</h3> <ul> <li>fix(useListNavigation): ignore Home/End key press for typeable combobox references</li> <li>fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code> on floating close</li> <li>fix(inner): use list ref length for fallback detection</li> <li>fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element</li> </ul> <h2>0.26.26</h2> <h3>Patch Changes</h3> <ul> <li>fix(useFloating): access <code>domReference</code> instead of <code>reference</code></li> <li>feat(FloatingFocusManager): specify element to return focus to</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/f1d95ac5ba8ce6eee128915c983326fbf0387cef"><code>f1d95ac</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3102">#3102</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/e05d561c60687b4cc12e2c232fc9ff1e97636eb8"><code>e05d561</code></a> fix(FloatingPortal): allow <code>root</code> to be reactive from <code>null</code> to an element (#...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c4aba7aa7242e0574d12acd4198bded3f43132bc"><code>c4aba7a</code></a> fix(useListNavigation): ensure submenu references are set as <code>virtualItemRef</code>...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/f65f9e2be0249e9add0299f9a3c5b79824ad6094"><code>f65f9e2</code></a> fix(useListNavigation): ignore Home/End key press for typeable combobox refer...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/229c5f71903e933fefe1f98f2457cf1210b8c960"><code>229c5f7</code></a> fix(inner): use list ref length for fallback detection (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3101">#3101</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/c9672007a7cf8a0b3b0b3b654a234dbe681a1a1c"><code>c967200</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3084">#3084</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/24f2c4d6a7efd4ca3ecda9dda8a3a3595682ab80"><code>24f2c4d</code></a> fix(useFloating): access <code>domReference</code> instead of <code>reference</code> (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3094">#3094</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/703db3bf19ebcd2fc1a75ef2e6edbc1c6f2468c2"><code>703db3b</code></a> feat(FloatingFocusManager): specify element to return focus to (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3083">#3083</a>)</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.26.27/packages/react">compare view</a></li> </ul> </details> <br /> Updates `css-tree` from 3.0.0 to 3.0.1 <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.0.1</h2> <ul> <li>Bumped <code>mdn/data</code> to 2.12.1</li> <li>Added <code>errors</code> array to the <code>Lexer#validate()</code> method result, providing details on problematic syntax.</li> <li>Added CSS wide keyword customization and introspection: <ul> <li>Added a <code>Lexer#cssWideKeywords</code> dictionary to list CSS-wide keywords</li> <li>Updated the Lexer's constructor to consider <code>config.cssWideKeywords</code> for overriding the default list</li> <li>Expanded the lexer's dump output to include the <code>cssWideKeywords</code> dictionary</li> <li>Modified the <code>fork()</code> method to accept a <code>cssWideKeywords</code> option, allowing the addition of new keywords to the existing list</li> </ul> </li> <li>Reverted changes to <code>Block</code> to include <code>{</code> and <code>}</code>, and <code>Atrule</code> and <code>Rule</code> to exclude <code>{</code> and <code>}</code> for a <code>block</code> (<a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li>Removed second parameter (<code>assign</code>) for the callback in the <code>fork()</code> method (e.g., <code>syntax.fork((config, assign) =&gt; { ... })</code>), as it simply refers to <code>Object.assign()</code></li> <li>Fixes in syntaxes: <code>&lt;basic-shapes&gt;</code>, <code>&lt;absolute-color-function&gt;</code> and <code>&lt;'stroke-opacity'&gt;</code></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.0.1 (November 1, 2024)</h2> <ul> <li>Bumped <code>mdn/data</code> to 2.12.1</li> <li>Added <code>errors</code> array to the <code>Lexer#validate()</code> method result, providing details on problematic syntax.</li> <li>Added CSS wide keyword customization and introspection: <ul> <li>Added a <code>Lexer#cssWideKeywords</code> dictionary to list CSS-wide keywords</li> <li>Updated the Lexer's constructor to consider <code>config.cssWideKeywords</code> for overriding the default list</li> <li>Expanded the lexer's dump output to include the <code>cssWideKeywords</code> dictionary</li> <li>Modified the <code>fork()</code> method to accept a <code>cssWideKeywords</code> option, allowing the addition of new keywords to the existing list</li> </ul> </li> <li>Reverted changes to <code>Block</code> to include <code>{</code> and <code>}</code>, and <code>Atrule</code> and <code>Rule</code> to exclude <code>{</code> and <code>}</code> for a <code>block</code> (<a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li>Removed second parameter (<code>assign</code>) for the callback in the <code>fork()</code> method (e.g., <code>syntax.fork((config, assign) =&gt; { ... })</code>), as it simply refers to <code>Object.assign()</code></li> <li>Fixes in syntaxes: <code>&lt;basic-shapes&gt;</code>, <code>&lt;absolute-color-function&gt;</code> and <code>&lt;'stroke-opacity'&gt;</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/csstree/csstree/commit/9825221fa5d930e10610de9eba85f51149c329ce"><code>9825221</code></a> 3.0.1</li> <li><a href="https://github.com/csstree/csstree/commit/d3ce7e918d6de3f7cf77b91850c3a9c58c73ec14"><code>d3ce7e9</code></a> Revert changes to <code>Block</code> to include curlies (fixes <a href="https://redirect.github.com/csstree/csstree/issues/296">#296</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/4175e97e17747cdd67bc84cfc6f3f6b6f02e7ea3"><code>4175e97</code></a> Fix &lt;'stroke-opacity'&gt; syntax (fixes <a href="https://redirect.github.com/csstree/csstree/issues/299">#299</a>)</li> <li><a href="https://github.com/csstree/csstree/commit/6c761e7ffaad5ef7ccddc7cbca922049e151b809"><code>6c761e7</code></a> Merge pull request <a href="https://redirect.github.com/csstree/csstree/issues/291">#291</a> from pamelalozano16/master</li> <li><a href="https://github.com/csstree/csstree/commit/074269277d964ce024080df893dc0595b06fd20a"><code>0742692</code></a> Add <code>errors</code> array to the <code>Lexer#validate()</code> method result</li> <li><a href="https://github.com/csstree/csstree/commit/c20b5c50408526da7f4b640588597bbbeb4e13bd"><code>c20b5c5</code></a> Make tests stable to errors in definition syntaxes</li> <li><a href="https://github.com/csstree/csstree/commit/8aeb7bf83f75b8f397ceb692b0888d4d517e1463"><code>8aeb7bf</code></a> Bump mdn/data to 2.12.1</li> <li><a href="https://github.com/csstree/csstree/commit/7a3f134cccf123a1fed94e591843d9857302149f"><code>7a3f134</code></a> Fix lint warning</li> <li><a href="https://github.com/csstree/csstree/commit/a6c7db08c714b575a687b2d30e159739f706f242"><code>a6c7db0</code></a> Fix broken mdn/data syntaxes</li> <li><a href="https://github.com/csstree/csstree/commit/e7c8320992b330d2ac0a63c3c1a4bb6d9fad2f29"><code>e7c8320</code></a> Merge branch 'master' into pr/291</li> <li>Additional commits viewable in <a href="https://github.com/csstree/csstree/compare/v3.0.0...v3.0.1">compare view</a></li> </ul> </details> <br /> Updates `monaco-yaml` from 5.2.2 to 5.2.3 <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.2.3</h2> <h2>What's Changed</h2> <ul> <li>467b134 fix: missing client capabilities by <a href="https://github.com/sumimakito"><code>@​sumimakito</code></a> in <a href="https://redirect.github.com/remcohaszing/monaco-yaml/pull/248">#248 </a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/sumimakito"><code>@​sumimakito</code></a> made their first contribution in <a href="https://redirect.github.com/remcohaszing/monaco-yaml/pull/248">remcohaszing/monaco-yaml#248</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3">https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/f38e40c9bebb4778e0d1ffd49abe661f3f74b2b9"><code>f38e40c</code></a> 5.2.3</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/a9b0d812d1be52f7f57c6a0efe2d18368abff56a"><code>a9b0d81</code></a> Add markdownEnumDescriptions to the demo</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/c7479a210ac50c08748f5a35eace85ec4ed21c70"><code>c7479a2</code></a> Avoid language-server-types import at runtime</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/467b13485397885ddf6dc51ba4f8b0b8eff5d9df"><code>467b134</code></a> fix: missing client capabilities</li> <li><a href="https://github.com/remcohaszing/monaco-yaml/commit/5beb6100a538391effba847f09bca32d99972b8a"><code>5beb610</code></a> Explain why syntax highlighting might not work</li> <li>See full diff in <a href="https://github.com/remcohaszing/monaco-yaml/compare/v5.2.2...v5.2.3">compare view</a></li> </ul> </details> <br /> Updates `remark-github-blockquote-alert` from 1.2.1 to 1.3.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/releases">remark-github-blockquote-alert's releases</a>.</em></p> <blockquote> <h2>v1.3.0</h2> <p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/remark-github-blockquote-alert@1.3.0/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p> <p>Documentation v1.3.0: <a href="https://raw.githack.com/jaywcjlove/remark-github-blockquote-alert/a520066/index.html">https://raw.githack.com/jaywcjlove/remark-github-blockquote-alert/a520066/index.html</a><br /> Comparing Changes: <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0">https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0</a></p> <ul> <li>💢 ci: update workflows config. a18169c <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> <li>💢 ci: Update FUNDING.yml 718850f <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> <li>🌟 feat: add <code>tagName</code> option. <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a> f5c617e <a href="https://github.com/jaywcjlove"><code>@​jaywcjlove</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/e9c3ca4b581f743bc0832f3a7425749a19262f2c"><code>e9c3ca4</code></a> released v1.3.0 <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a></li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/f5c617e8dbf36695e6ed9b683838af5b983712ff"><code>f5c617e</code></a> feat: add <code>tagName</code> option. <a href="https://redirect.github.com/jaywcjlove/remark-github-blockquote-alert/issues/4">#4</a></li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/718850fd14c800de1505a2e7de940c00ad0ec55d"><code>718850f</code></a> ci: Update FUNDING.yml</li> <li><a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/commit/a18169c2bfb13db7e734545570346ef05599961a"><code>a18169c</code></a> ci: update workflows config.</li> <li>See full diff in <a href="https://github.com/jaywcjlove/remark-github-blockquote-alert/compare/v1.2.1...v1.3.0">compare view</a></li> </ul> </details> <br /> Updates `winston` from 3.15.0 to 3.16.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/winstonjs/winston/releases">winston's releases</a>.</em></p> <blockquote> <h2>v3.16.0</h2> <ul> <li>Feature - optionally include Error.cause property (<a href="https://redirect.github.com/winstonjs/winston/issues/2447">#2447</a>) 201b6f1</li> </ul> <p><a href="https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0">https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/winstonjs/winston/commit/06749a96115a0ed75783761e596754ab7ec9d16b"><code>06749a9</code></a> 3.16.0</li> <li><a href="https://github.com/winstonjs/winston/commit/201b6f1d739022b24109eade5b1dc1abf1fd287c"><code>201b6f1</code></a> Feature - optionally include Error.cause property (<a href="https://redirect.github.com/winstonjs/winston/issues/2447">#2447</a>)</li> <li>See full diff in <a href="https://github.com/winstonjs/winston/compare/v3.15.0...v3.16.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-04 19:09:21 +01:00
"remark-github-blockquote-alert": "^1.3.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 22:10:35 +02:00
"rxjs": "^7.8.1",
2024-09-26 23:43:55 +02:00
"sharp": "^0.33.5",
Bump the prod-dependencies group with 2 updates (#1362) Bumps the prod-dependencies group with 2 updates: [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) and [shell-quote](https://github.com/ljharb/shell-quote). Updates `overlayscrollbars` from 2.10.0 to 2.10.1 <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.10.1</h2> <h3>Improvements</h3> <ul> <li>Add <code>pen</code> to the list of &quot;hoverable&quot; pointer devices. <a href="https://redirect.github.com/KingSora/OverlayScrollbars/issues/690">#690</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/170547a6c7129ea345ea55af1110d51455320e23"><code>170547a</code></a> v2.10.1</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/4738f6f3a4b1383315f3eea75bf45521a411c1f9"><code>4738f6f</code></a> add pen device to hoverable pointer types</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/b11536b47b3a67b5a3d169c7fc3a98fda1602acd"><code>b11536b</code></a> remove tilde imports</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/c38309e1e3c69b5525088994270913db76e6315b"><code>c38309e</code></a> fix test</li> <li><a href="https://github.com/KingSora/OverlayScrollbars/commit/cadff268f6de99567ea050166a0b40908d1bf2ec"><code>cadff26</code></a> move repo to esm</li> <li>See full diff in <a href="https://github.com/KingSora/OverlayScrollbars/commits/v2.10.1/packages/overlayscrollbars">compare view</a></li> </ul> </details> <br /> Updates `shell-quote` from 1.8.1 to 1.8.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/shell-quote/blob/main/CHANGELOG.md">shell-quote's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.2">v1.8.2</a> - 2024-11-27</h2> <h3>Fixed</h3> <ul> <li>[Fix] <code>quote</code>: preserve empty strings <a href="https://redirect.github.com/ljharb/shell-quote/issues/18"><code>[#18](https://github.com/ljharb/shell-quote/issues/18)</code></a></li> </ul> <h3>Commits</h3> <ul> <li>[meta] fix changelog tags <a href="https://github.com/ljharb/shell-quote/commit/0fb9fd8441aa06f7de995e90ce85bd9e758f5f05"><code>0fb9fd8</code></a></li> <li>[actions] split out node 10-20, and 20+ <a href="https://github.com/ljharb/shell-quote/commit/819bd842e0b01f3e5041834ab82bad299851de08"><code>819bd84</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>npmignore</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/fc564086c83317363908b55f6c744ad35983ccca"><code>fc56408</code></a></li> <li>[actions] update npm for windows tests <a href="https://github.com/ljharb/shell-quote/commit/fdeb0fd102ecdd4ff227a978532598c462312347"><code>fdeb0fd</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>aud</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/b8a4a3b3f5ae3ca8ae86b89ed0030e4e3358ef3c"><code>b8a4a3b</code></a></li> <li>[actions] prevent node 14 on ARM mac from failing <a href="https://github.com/ljharb/shell-quote/commit/9eecafc0486c9321be223415cf3fb76a5bd07dda"><code>9eecafc</code></a></li> <li>[meta] exclude more files from the package <a href="https://github.com/ljharb/shell-quote/commit/4044e7fad4a45e696602060b69b31a95702bee28"><code>4044e7f</code></a></li> <li>[Tests] replace <code>aud</code> with <code>npm audit</code> <a href="https://github.com/ljharb/shell-quote/commit/8cfdbd8ec30e653f9f99348e59117ed4a789e1ba"><code>8cfdbd8</code></a></li> <li>[meta] add missing <code>engines.node</code> <a href="https://github.com/ljharb/shell-quote/commit/843820e1a46cebcf10d8e48c4d82d0ab5a7b0194"><code>843820e</code></a></li> <li>[Dev Deps] add missing peer dep <a href="https://github.com/ljharb/shell-quote/commit/4c3b88d7925d29e9cc1ac76ccde05f4e714ede96"><code>4c3b88d</code></a></li> <li>[Dev Deps] pin <code>jackspeak</code> since 2.1.2+ depends on npm aliases, which kill the install process in npm &lt; 6 <a href="https://github.com/ljharb/shell-quote/commit/80322ed5914a5922d9507946490fbabcc96e624b"><code>80322ed</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ljharb/shell-quote/commit/b19fc77e66871eee10a9978d54c27d802a1da99b"><code>b19fc77</code></a> v1.8.2</li> <li><a href="https://github.com/ljharb/shell-quote/commit/59d29ea6941335258ceb75bab95d045886650436"><code>59d29ea</code></a> [Fix] <code>quote</code>: preserve empty strings</li> <li><a href="https://github.com/ljharb/shell-quote/commit/819bd842e0b01f3e5041834ab82bad299851de08"><code>819bd84</code></a> [actions] split out node 10-20, and 20+</li> <li><a href="https://github.com/ljharb/shell-quote/commit/4c3b88d7925d29e9cc1ac76ccde05f4e714ede96"><code>4c3b88d</code></a> [Dev Deps] add missing peer dep</li> <li><a href="https://github.com/ljharb/shell-quote/commit/fc564086c83317363908b55f6c744ad35983ccca"><code>fc56408</code></a> [Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>npmignore</code>, <code>tape</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/8cfdbd8ec30e653f9f99348e59117ed4a789e1ba"><code>8cfdbd8</code></a> [Tests] replace <code>aud</code> with <code>npm audit</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/9eecafc0486c9321be223415cf3fb76a5bd07dda"><code>9eecafc</code></a> [actions] prevent node 14 on ARM mac from failing</li> <li><a href="https://github.com/ljharb/shell-quote/commit/843820e1a46cebcf10d8e48c4d82d0ab5a7b0194"><code>843820e</code></a> [meta] add missing <code>engines.node</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/4044e7fad4a45e696602060b69b31a95702bee28"><code>4044e7f</code></a> [meta] exclude more files from the package</li> <li><a href="https://github.com/ljharb/shell-quote/commit/fdeb0fd102ecdd4ff227a978532598c462312347"><code>fdeb0fd</code></a> [actions] update npm for windows tests</li> <li>Additional commits viewable in <a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.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>
2024-12-04 23:50:13 +01:00
"shell-quote": "^1.8.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 22:10:35 +02:00
"sprintf-js": "^1.1.3",
"throttle-debounce": "^5.0.2",
"tinycolor2": "^1.6.0",
"use-device-pixel-ratio": "^1.1.2",
Bump the prod-dependencies group with 2 updates (#1295) Bumps the prod-dependencies group with 2 updates: [@floating-ui/react](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react) and [winston](https://github.com/winstonjs/winston). Updates `@floating-ui/react` from 0.26.27 to 0.26.28 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/releases"><code>@​floating-ui/react</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​floating-ui/react</code><a href="https://github.com/0"><code>@​0</code></a>.26.28</h2> <h3>Patch Changes</h3> <ul> <li>fix(Composite): change focus to be sync</li> <li>fix(useClick): improve consistency when combining with <code>useHover()</code></li> <li>feat(useClick): add <code>stickIfOpen</code> prop to determine whether to remain open upon first click when first opened by another event</li> <li>feat(Composite): add RTL support</li> <li>fix(FloatingFocusManager): ensure <code>returnFocus</code> is ignored correctly when using <code>disabled</code> prop</li> <li>fix(useListNavigation): incorrect behaviour with RTL grid</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/floating-ui/floating-ui/blob/master/packages/react/CHANGELOG.md"><code>@​floating-ui/react</code>'s changelog</a>.</em></p> <blockquote> <h2>0.26.28</h2> <h3>Patch Changes</h3> <ul> <li>fix(Composite): change focus to be sync</li> <li>fix(useClick): improve consistency when combining with <code>useHover()</code></li> <li>feat(useClick): add <code>stickIfOpen</code> prop to determine whether to remain open upon first click when first opened by another event</li> <li>feat(Composite): add RTL support</li> <li>fix(FloatingFocusManager): ensure <code>returnFocus</code> is ignored correctly when using <code>disabled</code> prop</li> <li>fix(useListNavigation): incorrect behaviour with RTL grid</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/floating-ui/floating-ui/commit/ba32495e65a1616c8ee5ab98ebbc80705482ed34"><code>ba32495</code></a> Version Packages (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3118">#3118</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/b45eeb336e8091564ce296652f786a4e84c38d65"><code>b45eeb3</code></a> fix(Composite): change focus to be sync (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3120">#3120</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/0fe5b2001af08c4c666e820dc82e1e6e4889d0ac"><code>0fe5b20</code></a> fix(FloatingFocusManager): reset prevent return focus flag in microtask after...</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/42f5b5cd8e0e87b2ad761e59dd697bc3659cdd44"><code>42f5b5c</code></a> fix(useClick, useHover): improve consistency when combining hooks (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3113">#3113</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/cedff0eed2b4a3e254ec06c2ea7c776ab0902d2f"><code>cedff0e</code></a> feat(Composite): add RTL support (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3119">#3119</a>)</li> <li><a href="https://github.com/floating-ui/floating-ui/commit/976ba7c62af08c2425897b34d887d8f88ce9509c"><code>976ba7c</code></a> fix(useListNavigation): incorrect behaviour with RTL grid (<a href="https://github.com/floating-ui/floating-ui/tree/HEAD/packages/react/issues/3117">#3117</a>)</li> <li>See full diff in <a href="https://github.com/floating-ui/floating-ui/commits/@floating-ui/react@0.26.28/packages/react">compare view</a></li> </ul> </details> <br /> Updates `winston` from 3.16.0 to 3.17.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/winstonjs/winston/releases">winston's releases</a>.</em></p> <blockquote> <h2>v3.17.0</h2> <ul> <li>Try winston-transport 4.9.0 3e87128</li> <li>Revert &quot;Try bumping winston-transport to 4.8.0&quot; 69625fc</li> <li>Revert &quot;Try bumping winston-transport to 4.8.0&quot; 876ef7a</li> <li>Try bumping winston-transport to 4.8.0 7ef2c1d</li> <li>Try bumping winston-transport to 4.8.0 fe4b64e</li> <li>Bump logform c9fd9a4</li> <li>Revert &quot;Update logform and winston-transport&quot; 14fef0f</li> <li>Merge branch &amp;<a href="https://redirect.github.com/winstonjs/winston/issues/39">#39</a>;master&amp;<a href="https://redirect.github.com/winstonjs/winston/issues/39">#39</a>; of github.com:winstonjs/winston 545b683</li> <li>Update logform and winston-transport cceb265</li> <li>Bump mocha from 10.7.3 to 10.8.2 (<a href="https://redirect.github.com/winstonjs/winston/issues/2523">#2523</a>) bb529b6</li> <li>Bump async from 3.2.5 to 3.2.6 (<a href="https://redirect.github.com/winstonjs/winston/issues/2516">#2516</a>) ae847ab</li> </ul> <p><a href="https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0">https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/winstonjs/winston/commit/1b9cef8c7d76e4c15d47997d2c4199c31e9d277a"><code>1b9cef8</code></a> 3.17.0</li> <li><a href="https://github.com/winstonjs/winston/commit/3e87128a68468e815fa800df349f179ee699408b"><code>3e87128</code></a> Try winston-transport 4.9.0</li> <li><a href="https://github.com/winstonjs/winston/commit/69625fc35184ee1a624e4b4286ffb77b85a9dc61"><code>69625fc</code></a> Revert &quot;Try bumping winston-transport to 4.8.0&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/876ef7a70209e0c1b38ae6bc88d3b07546072c9b"><code>876ef7a</code></a> Revert &quot;Try bumping winston-transport to 4.8.0&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/7ef2c1db2816973629980e866c36c136b19be5cd"><code>7ef2c1d</code></a> Try bumping winston-transport to 4.8.0</li> <li><a href="https://github.com/winstonjs/winston/commit/fe4b64e9d05eced8638612768e5e8b945f3a36ef"><code>fe4b64e</code></a> Try bumping winston-transport to 4.8.0</li> <li><a href="https://github.com/winstonjs/winston/commit/c9fd9a4bec5e6b1dc8c6ba641a5d5fb5a57e80c2"><code>c9fd9a4</code></a> Bump logform</li> <li><a href="https://github.com/winstonjs/winston/commit/14fef0fe74426a70d3e6366c967519cef7612fb9"><code>14fef0f</code></a> Revert &quot;Update logform and winston-transport&quot;</li> <li><a href="https://github.com/winstonjs/winston/commit/545b68381d77e1a3a24f79e9a66320f226cf8a69"><code>545b683</code></a> Merge branch 'master' of github.com:winstonjs/winston</li> <li><a href="https://github.com/winstonjs/winston/commit/cceb265215a2f4b5545f47dca42167ce1cee68ba"><code>cceb265</code></a> Update logform and winston-transport</li> <li>Additional commits viewable in <a href="https://github.com/winstonjs/winston/compare/v3.16.0...v3.17.0">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-15 19:40:28 +01:00
"winston": "^3.17.0",
"ws": "^8.18.0",
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 22:50:36 +01:00
"yaml": "^2.7.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 22:10:35 +02:00
},
"resolutions": {
"send@npm:0.18.0": "0.19.0",
"cookie@0.6.0": "^0.7.0",
"path-to-regexp@npm:0.1.10": "^0.1.12"
},
"packageManager": "yarn@4.6.0",
"workspaces": [
"docs"
]
}