2024-05-10 05:24:24 +02:00
|
|
|
{
|
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",
|
2024-10-11 04:33:13 +02:00
|
|
|
"version": "0.8.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
|
|
|
"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": {
|
|
|
|
"@chromatic-com/storybook": "^2.0.2",
|
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&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&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&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&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
|
|
|
"@eslint/js": "^9.12.0",
|
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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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
|
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
Bump the storybook group with 9 updates (#958)
Bumps the storybook group with 9 updates:
| Package | From | To |
| --- | --- | --- |
|
[@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials)
| `8.3.3` | `8.3.5` |
|
[@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions)
| `8.3.3` | `8.3.5` |
|
[@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links)
| `8.3.3` | `8.3.5` |
|
[@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks)
| `8.3.3` | `8.3.5` |
|
[@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react)
| `8.3.3` | `8.3.5` |
|
[@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite)
| `8.3.3` | `8.3.5` |
|
[@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test)
| `8.3.3` | `8.3.5` |
|
[@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming)
| `8.3.3` | `8.3.5` |
|
[storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli)
| `8.3.3` | `8.3.5` |
Updates `@storybook/addon-essentials` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/essentials">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/addon-interactions` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/1cf5baca02b4988d587cac86d624e69086928805"><code>1cf5bac</code></a>
Merge pull request <a
href="https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions/issues/29110">#29110</a>
from storybookjs/kasper/fix-ansi-chars</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/interactions">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/addon-links` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/links">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/blocks` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/lib/blocks">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/react` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/1cf5baca02b4988d587cac86d624e69086928805"><code>1cf5bac</code></a>
Merge pull request <a
href="https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react/issues/29110">#29110</a>
from storybookjs/kasper/fix-ansi-chars</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/renderers/react">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/react-vite` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/frameworks/react-vite">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/test` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/lib/test">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/theming` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5/code/lib/theming">compare
view</a></li>
</ul>
</details>
<br />
Updates `storybook` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/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>
2024-10-04 19:33:46 +02:00
|
|
|
"@storybook/addon-essentials": "^8.3.5",
|
|
|
|
"@storybook/addon-interactions": "^8.3.5",
|
|
|
|
"@storybook/addon-links": "^8.3.5",
|
|
|
|
"@storybook/blocks": "^8.3.5",
|
|
|
|
"@storybook/react": "^8.3.5",
|
|
|
|
"@storybook/react-vite": "^8.3.5",
|
|
|
|
"@storybook/test": "^8.3.5",
|
|
|
|
"@storybook/theming": "^8.3.5",
|
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",
|
|
|
|
"@types/electron": "^1.6.10",
|
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&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&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&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&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/node": "^22.7.5",
|
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-10-04 19:33:33 +02:00
|
|
|
"@types/react": "^18.3.11",
|
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&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&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&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&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",
|
2024-10-04 19:33:33 +02:00
|
|
|
"@vitejs/plugin-react-swc": "^3.7.1",
|
|
|
|
"@vitest/coverage-istanbul": "^2.1.2",
|
2024-09-25 00:54:04 +02:00
|
|
|
"electron": "^32.1.2",
|
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 & 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-builder": "^25.1.7",
|
Add release channels (#385)
## New release flow
1. Run "Bump Version" workflow with the desired version bump and the
prerelease flag set to `true`. This will push a new version bump to the
target branch and create a new git tag.
- See below for more info on how the version bumping works.
2. A new "Build Helper" workflow run will kick off automatically for the
new tag. Once it is complete, test the new build locally by downloading
with the [download
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/download-staged-artifact.sh).
3. Release the new build using the [publish
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh).
This will trigger electron-updater to distribute the package to beta
users.
4. Run "Bump Version" again with a release bump (either `major`,
`minor`, or `patch`) and the prerelease flag set to `false`.
6. Release the new build to all channels using the [publish
script](https://github.com/wavetermdev/thenextwave/blob/main/scripts/artifacts/publish-from-staging.sh).
This will trigger electron-updater to distribute the package to all
users.
## Change Summary
Creates a new "Bump Version" workflow to manage versioning and tag
creation.
Build Helper is now automated.
### Version bumps
Updates the `version.cjs` script so that an argument can be passed to
trigger a version bump. Under the hood, this utilizes NPM's `semver`
package.
If arguments are present, the version will be bumped.
If only a single argument is given, the following are valid inputs:
- `none`: No-op.
- `patch`: Bumps the patch version.
- `minor`: Bumps the minor version.
- `major`: Bumps the major version.
- '1', 'true': Bumps the prerelease version.
If two arguments are given, the first argument must be either `none`,
`patch`, `minor`, or `major`. The second argument must be `1` or `true`
to bump the prerelease version.
### electron-builder
We are now using the release channels support in electron-builder. This
will automatically detect the channel being built based on the package
version to determine which channel update files need to be generated.
See
[here](https://www.electron.build/tutorials/release-using-channels.html)
for more information.
### Github Actions
#### Bump Version
This adds a new "Bump Version" workflow for managing versioning and
queuing new builds. When run, this workflow will bump the version,
create a new tag, and push the changes to the target branch. There is a
new dropdown when queuing the "Bump Version" workflow to select what
kind of version bump to perform. A bump must always be performed when
running a new build to ensure consistency.
I had to create a GitHub App to grant write permissions to our main
branch for the version bump commits. I've made a separate workflow file
to manage the version bump commits, which should help prevent tampering.
Thanks to using the GitHub API directly, I am able to make these commits
signed!
#### Build Helper
Build Helper is now triggered when new tags are created, rather than
being triggered automatically. This ensures we're always creating
artifacts from known checkpoints.
### Settings
Adds a new `autoupdate:channel` configuration to the settings file. If
unset, the default from the artifact will be used (should correspond to
the channel of the artifact when downloaded).
## Future Work
I want to add a release workflow that will automatically copy over the
corresponding version artifacts to the release bucket when a new GitHub
Release is created.
I also want to separate versions into separate subdirectories in the
release bucket so we can clean them up more-easily.
---------
Co-authored-by: wave-builder <builds@commandline.dev>
Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 22:10:35 +02:00
|
|
|
"electron-vite": "^2.3.0",
|
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&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&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&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&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
|
|
|
"eslint": "^9.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
|
|
|
"eslint-config-prettier": "^9.1.0",
|
|
|
|
"less": "^4.2.0",
|
|
|
|
"prettier": "^3.3.3",
|
|
|
|
"prettier-plugin-jsdoc": "^1.3.0",
|
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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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 "eslint/universal" 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>, &
<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",
|
|
|
|
"semver": "^7.6.3",
|
Bump the storybook group with 9 updates (#958)
Bumps the storybook group with 9 updates:
| Package | From | To |
| --- | --- | --- |
|
[@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials)
| `8.3.3` | `8.3.5` |
|
[@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions)
| `8.3.3` | `8.3.5` |
|
[@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links)
| `8.3.3` | `8.3.5` |
|
[@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/blocks)
| `8.3.3` | `8.3.5` |
|
[@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react)
| `8.3.3` | `8.3.5` |
|
[@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite)
| `8.3.3` | `8.3.5` |
|
[@storybook/test](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/test)
| `8.3.3` | `8.3.5` |
|
[@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming)
| `8.3.3` | `8.3.5` |
|
[storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli)
| `8.3.3` | `8.3.5` |
Updates `@storybook/addon-essentials` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/essentials">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/addon-interactions` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/1cf5baca02b4988d587cac86d624e69086928805"><code>1cf5bac</code></a>
Merge pull request <a
href="https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions/issues/29110">#29110</a>
from storybookjs/kasper/fix-ansi-chars</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/interactions">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/addon-links` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/addons/links">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/blocks` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/lib/blocks">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/react` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/1cf5baca02b4988d587cac86d624e69086928805"><code>1cf5bac</code></a>
Merge pull request <a
href="https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react/issues/29110">#29110</a>
from storybookjs/kasper/fix-ansi-chars</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/renderers/react">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/react-vite` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/frameworks/react-vite">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/test` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/code/lib/test">compare
view</a></li>
</ul>
</details>
<br />
Updates `@storybook/theming` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5/code/lib/theming">compare
view</a></li>
</ul>
</details>
<br />
Updates `storybook` from 8.3.3 to 8.3.5
<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.3.5</h2>
<h2>8.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>v8.3.4</h2>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</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.3.5</h2>
<ul>
<li>CLI: Update the React Native init to include v8 dependencies - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29273">#29273</a>,
thanks <a
href="https://github.com/dannyhw"><code>@dannyhw</code></a>!</li>
<li>Vitest plugin: Fix renamed export stories - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29250">#29250</a>,
thanks <a
href="https://github.com/shilman"><code>@shilman</code></a>!</li>
</ul>
<h2>8.3.4</h2>
<ul>
<li>Addon Test: Support story name as test description - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29147">#29147</a>,
thanks <a
href="https://github.com/InfiniteXyy"><code>@InfiniteXyy</code></a>!</li>
<li>Addon-Interactions: Use ansi-to-html for colored test errors - <a
href="https://redirect.github.com/storybookjs/storybook/pull/29110">#29110</a>,
thanks <a
href="https://github.com/kasperpeulen"><code>@kasperpeulen</code></a>!</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/storybookjs/storybook/commit/b9c7f9098e96315f3c38c9e3bda24d069ab2d5cd"><code>b9c7f90</code></a>
Bump version from "8.3.4" to "8.3.5" [skip ci]</li>
<li><a
href="https://github.com/storybookjs/storybook/commit/20ab8870206aa839e1cd93b089773b6e3ac5a77b"><code>20ab887</code></a>
Bump version from "8.3.3" to "8.3.4" [skip ci]</li>
<li>See full diff in <a
href="https://github.com/storybookjs/storybook/commits/v8.3.5/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>
2024-10-04 19:33:46 +02:00
|
|
|
"storybook": "^8.3.5",
|
2024-09-27 03:58:25 +02:00
|
|
|
"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",
|
|
|
|
"tslib": "^2.6.3",
|
|
|
|
"tsx": "^4.19.1",
|
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&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&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&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&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
|
|
|
"typescript": "^5.6.3",
|
|
|
|
"typescript-eslint": "^8.8.1",
|
2024-09-26 23:34:23 +02:00
|
|
|
"vite": "^5.4.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
|
|
|
"vite-plugin-image-optimizer": "^1.1.8",
|
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&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&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&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&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
|
|
|
"vite-plugin-static-copy": "^2.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
|
|
|
"vite-plugin-svgr": "^4.2.0",
|
|
|
|
"vite-tsconfig-paths": "^5.0.1",
|
2024-10-04 19:33:33 +02:00
|
|
|
"vitest": "^2.1.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
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-13 00:40:14 +02:00
|
|
|
"@floating-ui/react": "^0.26.24",
|
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",
|
|
|
|
"@tanstack/react-table": "^8.20.5",
|
|
|
|
"@types/color": "^3.0.6",
|
|
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
|
|
"@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",
|
|
|
|
"css-tree": "^3.0.0",
|
|
|
|
"dayjs": "^1.11.13",
|
|
|
|
"debug": "^4.3.7",
|
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 & 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",
|
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",
|
2024-09-26 04:23:22 +02:00
|
|
|
"jotai": "2.9.3",
|
2024-09-25 01:01:06 +02:00
|
|
|
"monaco-editor": "^0.52.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
|
|
|
"overlayscrollbars": "^2.10.0",
|
|
|
|
"overlayscrollbars-react": "^0.5.6",
|
|
|
|
"papaparse": "^5.4.1",
|
|
|
|
"pngjs": "^7.0.0",
|
|
|
|
"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",
|
|
|
|
"react-markdown": "^9.0.1",
|
|
|
|
"rehype-highlight": "^7.0.0",
|
|
|
|
"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",
|
2024-10-08 18:25:41 +02:00
|
|
|
"remark-github-blockquote-alert": "^1.2.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
|
|
|
"rxjs": "^7.8.1",
|
2024-09-26 23:43:55 +02:00
|
|
|
"sharp": "^0.33.5",
|
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
|
|
|
"shell-quote": "^1.8.1",
|
|
|
|
"sprintf-js": "^1.1.3",
|
|
|
|
"throttle-debounce": "^5.0.2",
|
|
|
|
"tinycolor2": "^1.6.0",
|
|
|
|
"use-device-pixel-ratio": "^1.1.2",
|
2024-10-11 20:31:26 +02:00
|
|
|
"winston": "^3.15.0",
|
2024-09-19 20:04:18 +02:00
|
|
|
"ws": "^8.18.0",
|
|
|
|
"yaml": "^2.5.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
|
|
|
},
|
2024-09-25 04:39:36 +02:00
|
|
|
"resolutions": {
|
2024-10-08 01:42:22 +02:00
|
|
|
"send@npm:0.18.0": "0.19.0",
|
|
|
|
"cookie@0.6.0": "^0.7.0"
|
2024-09-25 04:39:36 +02:00
|
|
|
},
|
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
|
|
|
"packageManager": "yarn@4.4.1"
|
2024-05-10 05:24:24 +02:00
|
|
|
}
|