Commit Graph

135 Commits

Author SHA1 Message Date
sawka
c31bd4a94d thenextwave cleanups 2024-09-19 14:04:47 -07:00
Evan Simkowitz
77e68f244e
update tagline 2024-09-19 13:13:51 -07:00
wave-builder[bot]
af269fcc8c
chore: bump package version to 0.1.14-beta.3 2024-09-19 18:35:45 +00:00
Evan Simkowitz
fa51ef6081
remove utf-8-validate 2024-09-19 11:33:25 -07:00
wave-builder[bot]
c92d3807e1
chore: bump package version to 0.1.14-beta.2 2024-09-19 18:19:09 +00:00
Evan Simkowitz
74cb6fc885
remove bufferutil 2024-09-19 11:18:07 -07:00
wave-builder[bot]
02932109f3
chore: bump package version to 0.1.14-beta.1 2024-09-19 18:09:57 +00:00
Evan Simkowitz
370ea132fe
Save update channel to user setting automatically (#401)
When a user first launches Wave, we will read the updater config and
store the channel as a user setting for use on future launches. This
should ensure that if a user on a beta channel gets updated to a latest
release, they will still be subscribed to beta releases going forward.
If a user manually updates the user setting, it will be honored.

---------

Co-authored-by: sawka <mike@commandline.dev>
2024-09-19 11:04:18 -07:00
Mike Sawka
d2366df9db
updated ws loading code (#397) 2024-09-19 10:42:53 -07:00
wave-builder[bot]
0059b61748
chore: bump package version to 0.1.14-beta.0 2024-09-18 21:32:24 +00:00
Evan Simkowitz
a590fd7fbf
revert package version 2024-09-18 14:31:04 -07:00
wave-builder[bot]
97ffa8654c
chore: bump package version to 0.1.19-beta.0 2024-09-18 21:27:49 +00:00
Evan Simkowitz
479414fbd1
If prerelease is false and action is none, remove the prerelease version string (#395)
Updates the version.cjs script so that if the arguments are "none 0" and
a prerelease version is already set, it will be removed. This is
equivalent the behavior of "patch 0", but better aligns with the default
behavior of the Bump Version worklow.
2024-09-18 13:12:34 -07:00
wave-builder[bot]
477df82778
chore: bump package version to 0.1.13 2024-09-18 19:33:42 +00:00
Evan Simkowitz
b7d01c0403
Add automated release flow (#394)
## New release workflow

Build Helper will now automatically create a draft GitHub Release after
it finishes its builds. It will upload a copy of the build artifacts to
this release for easy access.

When a version is ready to be published, edit the GitHub Release and
publish it. This will trigger a workflow to publish the artifacts to our
releases feed.

## Moved artifacts scripts to Taskfile

The scripts formerly located at `scripts/artifacts` have been moved to
the Taskfile. They can now be found at `artifacts:*`.

## Moved releases readme to `RELEASES.md`

Updated the releases readme with step-by-step instructions and moved it
from `scripts/artifacts` to `RELEASES.md`

## Created new AWS identities for artifact upload and publishing

This narrows the scopes of the AWS identities used by the workflows to
upload and publish artifacts. The Build Helper workflow now only has
permission to put files into the artifacts bucket. The Publish Release
workflow only has permission to get files from the artifacts bucket and
put them into the releases bucket.
2024-09-18 12:29:47 -07:00
Mike Sawka
c7a60a80f8
initwshrpc in electron (#391) 2024-09-17 23:10:09 -07:00
wave-builder[bot]
f08bc8c768
chore: bump package version to 0.1.13-beta.26 2024-09-17 22:05:37 +00:00
wave-builder[bot]
1a0d520ca2
chore: bump package version to 0.1.13-beta.25 2024-09-17 21:32:14 +00:00
wave-builder[bot]
525271ee27
chore: bump package version to 0.1.13-beta.24 2024-09-17 21:04:52 +00:00
wave-builder[bot]
43829dfc85
chore: bump package version to 0.1.13-beta.23 2024-09-17 20:43:13 +00:00
Evan Simkowitz
6a7fadc420
Evan/v (#392)
Co-authored-by: wave-builder[bot] <181805596+wave-builder[bot]@users.noreply.github.com>
2024-09-17 13:37:52 -07:00
wave-builder[bot]
2ff55d823e
chore: bump package version to 0.1.13-beta.21 2024-09-17 20:13:16 +00:00
Evan Simkowitz
5b7535d08f
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 13:10:35 -07:00
dependabot[bot]
0159152c00
Bump vite from 5.4.5 to 5.4.6 (#389)
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite)
from 5.4.5 to 5.4.6.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/v5.4.6/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.4.6 (2024-09-16)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: avoid DOM Clobbering gadget in
<code>getRelativeUrlFromDocument</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18115">#18115</a>)
(<a
href="179b17773c">179b177</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18115">#18115</a></li>
<li>fix: fs raw query (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18112">#18112</a>)
(<a
href="6820bb3b9a">6820bb3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18112">#18112</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f9691767ad"><code>f969176</code></a>
release: v5.4.6</li>
<li><a
href="179b17773c"><code>179b177</code></a>
fix: avoid DOM Clobbering gadget in
<code>getRelativeUrlFromDocument</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18115">#18115</a>)</li>
<li><a
href="6820bb3b9a"><code>6820bb3</code></a>
fix: fs raw query (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18112">#18112</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.4.6/packages/vite">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vite&package-manager=npm_and_yarn&previous-version=5.4.5&new-version=5.4.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/wavetermdev/thenextwave/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-17 13:01:46 -07:00
dependabot[bot]
f0e7babec4
Bump css-tree from 2.3.1 to 3.0.0 in the prod-dependencies group (#379)
[//]: # (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 prod-dependencies group with 1 update:
[css-tree](https://github.com/csstree/csstree).

Updates `css-tree` from 2.3.1 to 3.0.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/csstree/csstree/releases">css-tree's
releases</a>.</em></p>
<blockquote>
<h2>3.0.0</h2>
<ul>
<li>Added support for the <a
href="https://drafts.csswg.org/css-contain-3/#container-rule"><code>@container</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-transitions-2/#defining-before-change-style"><code>@starting-style</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-cascade-6/#scoped-styles"><code>@scope</code></a>
at-rule</li>
<li>Added support for the <a
href="https://developer.mozilla.org/en-US/docs/Web/CSS/@position-try"><code>@position-try</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-cascade-5/#at-layer"><code>@layer</code></a>
at-rule</li>
<li>Added support for <code>layer</code>, <code>layer()</code> and
<code>supports()</code> in the <code>@media</code> at-rule (according to
<a href="https://drafts.csswg.org/css-cascade-5/#at-import"><code>the
@​import rule</code></a> in Cascading and Inheritance 5)</li>
<li>Added <code>Layer</code> and <code>LayerList</code> node types</li>
<li>Added <code>TokenStream#lookupTypeNonSC()</code> method</li>
<li>Added <code>&lt;dashed-ident&gt;</code> to generic types</li>
<li>Bumped <code>mdn/data</code> to <code>2.10.0</code></li>
<li>Aligned <code>&lt;'font'&gt;</code> to <a
href="https://drafts.csswg.org/css-fonts-4/">CSS Fonts 4</a></li>
<li>Aligned <code>&lt;color&gt;</code> to <a
href="https://drafts.csswg.org/css-color-5/">CSS Color 5</a></li>
<li>Fixed initialization when <code>Object.prototype</code> is extended
or polluted (<a
href="https://redirect.github.com/csstree/csstree/issues/262">#262</a>)</li>
<li>Fixed <code>fork()</code> method to consider the
<code>generic</code> option when creating a Lexer instance (<a
href="https://redirect.github.com/csstree/csstree/issues/266">#266</a>)</li>
<li>Fixed crash on parse error when custom <code>line</code> or
<code>offset</code> is specified via options (<a
href="https://redirect.github.com/csstree/csstree/issues/251">#251</a>)</li>
<li>Fixed <code>speak</code> syntax patch (<a
href="https://redirect.github.com/csstree/csstree/issues/241">#241</a>)</li>
<li>Fixed <code>:lang()</code> to accept a list of
<code>&lt;ident&gt;</code> or <code>&lt;string&gt;</code> per <a
href="https://drafts.csswg.org/selectors/#the-lang-pseudo">spec</a> (<a
href="https://redirect.github.com/csstree/csstree/issues/265">#265</a>)</li>
<li>Fixed lexer matching for syntaxes referred to as
<code>&lt;'property'&gt;</code>, when the syntax has a top-level
<code>#</code>-multiplier (<a
href="https://redirect.github.com/csstree/csstree/issues/102">#102</a>)</li>
<li>Relaxed parsing of syntax definition to allow whitespaces in range
multiplier (<a
href="https://redirect.github.com/csstree/csstree/issues/270">#270</a>)</li>
<li>Changed <code>parseWithFallback()</code> to rollback
<code>tokenIndex</code> before calling a fallback</li>
<li>Changed <code>Block</code> to not include <code>{</code> and
<code>}</code></li>
<li>Changed <code>Atrule</code> and <code>Rule</code> to include
<code>{</code> and <code>}</code> for a block</li>
<li>Changed <code>Ratio</code> parsing:
<ul>
<li>Left and right parts contain nodes instead of strings</li>
<li>Both left and right parts of a ratio can now be any number;
validation of number range is no longer within the parser's scope.</li>
<li>Both parts can now be functions. Although not explicitly mentioned
in the specification, mathematical functions can replace numbers,
addressing potential use cases (<a
href="https://redirect.github.com/csstree/csstree/issues/162">#162</a>).</li>
<li>As per the <a
href="https://drafts.csswg.org/css-values-4/#ratios">CSS Values and
Units Level 4</a> specification, the right part of <code>Ratio</code>
can be omitted. While this can't be a parser output (which would produce
a <code>Number</code> node), it's feasible during <code>Ratio</code>
node construction or transformation.</li>
</ul>
</li>
<li>Changes to query-related at-rules:
<ul>
<li>Added new node types:
<ul>
<li><a
href="https://github.com/csstree/csstree/blob/HEAD/docs/ast.md#feature"><code>Feature</code></a>:
represents features like <code>(feature)</code> and <code>(feature:
value)</code>, fundamental for both <code>@media</code> and
<code>@container</code> at-rules</li>
<li><a
href="https://github.com/csstree/csstree/blob/HEAD/docs/ast.md#featurerange"><code>FeatureRange</code></a>:
represents <a
href="https://www.w3.org/TR/mediaqueries-4/#mq-range-context">features
in a range context</a></li>
<li><a
href="https://github.com/csstree/csstree/blob/HEAD/docs/ast.md#featurefunction"><code>FeatureFunction</code></a>:
represents functional features such as <code>@supports</code>'s
<code>selector()</code> or <code>@container</code>'s
<code>style()</code></li>
<li><a
href="https://github.com/csstree/csstree/blob/HEAD/docs/ast.md#condition"><code>Condition</code></a>:
used across all query-like at-rules, encapsulating queries with features
and the <code>not</code>, <code>and</code>, and <code>or</code>
operators</li>
<li><a
href="https://github.com/csstree/csstree/blob/HEAD/docs/ast.md#condition"><code>GeneralEnclosure</code></a>:
represents the <a
href="https://www.w3.org/TR/mediaqueries-4/#typedef-general-enclosed"><code>&lt;general-enclosed&gt;</code></a>
production, which caters to unparsed parentheses or functional
expressions</li>
</ul>
<blockquote>
<p>Note: All new nodes include a <code>kind</code> property to define
the at-rule type. Supported kinds are <code>media</code>,
<code>supports</code>, and <code>container</code></p>
</blockquote>
</li>
<li>Added support for functions for features and features in a range
context, e.g. <code>(width: calc(100cm / 6))</code></li>
<li>Added a <code>condition</code> value for the parser's context option
to parse queries. Use the <code>kind</code> option to specify the
condition type, e.g., <code>parse('...', { context: 'condition', kind:
'media' })</code></li>
<li>Introduced a <code>features</code> section in the syntax
configuration for defining functional features of at-rules. Expand
definitions using the <code>fork()</code> method. The current definition
is as follows:
<pre lang="js"><code>features: {
    supports: { selector() { /* ... */ } },
    container: { style() { /* ... */ } }
}
</code></pre>
</li>
<li>Changes for <code>@media</code> at-rule:
<ul>
<li>Enhanced prelude parsing for complex queries. Parentheses with
errors will be parsed as <code>GeneralEnclosed</code></li>
<li>Added support for features in a range context, e.g. <code>(width
&gt; 100px)</code> or <code>(100px &lt; height &lt; 400px)</code></li>
<li>Transitioned from <code>MediaFeature</code> node type to the
<code>Feature</code> node type with <code>kind:
&quot;media&quot;</code></li>
<li>Changed <code>MediaQuery</code> node structure into the following
form:</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/csstree/csstree/blob/master/CHANGELOG.md">css-tree's
changelog</a>.</em></p>
<blockquote>
<h2>3.0.0 (September 11, 2024)</h2>
<ul>
<li>Added support for the <a
href="https://drafts.csswg.org/css-contain-3/#container-rule"><code>@container</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-transitions-2/#defining-before-change-style"><code>@starting-style</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-cascade-6/#scoped-styles"><code>@scope</code></a>
at-rule</li>
<li>Added support for the <a
href="https://developer.mozilla.org/en-US/docs/Web/CSS/@position-try"><code>@position-try</code></a>
at-rule</li>
<li>Added support for the <a
href="https://drafts.csswg.org/css-cascade-5/#at-layer"><code>@layer</code></a>
at-rule</li>
<li>Added support for <code>layer</code>, <code>layer()</code> and
<code>supports()</code> in the <code>@media</code> at-rule (according to
<a href="https://drafts.csswg.org/css-cascade-5/#at-import"><code>the
@​import rule</code></a> in Cascading and Inheritance 5)</li>
<li>Added <code>Layer</code> and <code>LayerList</code> node types</li>
<li>Added <code>TokenStream#lookupTypeNonSC()</code> method</li>
<li>Added <code>&lt;dashed-ident&gt;</code> to generic types</li>
<li>Bumped <code>mdn/data</code> to <code>2.10.0</code></li>
<li>Aligned <code>&lt;'font'&gt;</code> to <a
href="https://drafts.csswg.org/css-fonts-4/">CSS Fonts 4</a></li>
<li>Aligned <code>&lt;color&gt;</code> to <a
href="https://drafts.csswg.org/css-color-5/">CSS Color 5</a></li>
<li>Fixed initialization when <code>Object.prototype</code> is extended
or polluted (<a
href="https://redirect.github.com/csstree/csstree/issues/262">#262</a>)</li>
<li>Fixed <code>fork()</code> method to consider the
<code>generic</code> option when creating a Lexer instance (<a
href="https://redirect.github.com/csstree/csstree/issues/266">#266</a>)</li>
<li>Fixed crash on parse error when custom <code>line</code> or
<code>offset</code> is specified via options (<a
href="https://redirect.github.com/csstree/csstree/issues/251">#251</a>)</li>
<li>Fixed <code>speak</code> syntax patch (<a
href="https://redirect.github.com/csstree/csstree/issues/241">#241</a>)</li>
<li>Fixed <code>:lang()</code> to accept a list of
<code>&lt;ident&gt;</code> or <code>&lt;string&gt;</code> per <a
href="https://drafts.csswg.org/selectors/#the-lang-pseudo">spec</a> (<a
href="https://redirect.github.com/csstree/csstree/issues/265">#265</a>)</li>
<li>Fixed lexer matching for syntaxes referred to as
<code>&lt;'property'&gt;</code>, when the syntax has a top-level
<code>#</code>-multiplier (<a
href="https://redirect.github.com/csstree/csstree/issues/102">#102</a>)</li>
<li>Relaxed parsing of syntax definition to allow whitespaces in range
multiplier (<a
href="https://redirect.github.com/csstree/csstree/issues/270">#270</a>)</li>
<li>Changed <code>parseWithFallback()</code> to rollback
<code>tokenIndex</code> before calling a fallback</li>
<li>Changed <code>Block</code> to not include <code>{</code> and
<code>}</code></li>
<li>Changed <code>Atrule</code> and <code>Rule</code> to include
<code>{</code> and <code>}</code> for a block</li>
<li>Changed <code>Ratio</code> parsing:
<ul>
<li>Left and right parts contain nodes instead of strings</li>
<li>Both left and right parts of a ratio can now be any number;
validation of number range is no longer within the parser's scope.</li>
<li>Both parts can now be functions. Although not explicitly mentioned
in the specification, mathematical functions can replace numbers,
addressing potential use cases (<a
href="https://redirect.github.com/csstree/csstree/issues/162">#162</a>).</li>
<li>As per the <a
href="https://drafts.csswg.org/css-values-4/#ratios">CSS Values and
Units Level 4</a> specification, the right part of <code>Ratio</code>
can be omitted. While this can't be a parser output (which would produce
a <code>Number</code> node), it's feasible during <code>Ratio</code>
node construction or transformation.</li>
</ul>
</li>
<li>Changes to query-related at-rules:
<ul>
<li>
<p>Added new node types:</p>
<ul>
<li><a
href="https://github.com/csstree/csstree/blob/master/docs/ast.md#feature"><code>Feature</code></a>:
represents features like <code>(feature)</code> and <code>(feature:
value)</code>, fundamental for both <code>@media</code> and
<code>@container</code> at-rules</li>
<li><a
href="https://github.com/csstree/csstree/blob/master/docs/ast.md#featurerange"><code>FeatureRange</code></a>:
represents <a
href="https://www.w3.org/TR/mediaqueries-4/#mq-range-context">features
in a range context</a></li>
<li><a
href="https://github.com/csstree/csstree/blob/master/docs/ast.md#featurefunction"><code>FeatureFunction</code></a>:
represents functional features such as <code>@supports</code>'s
<code>selector()</code> or <code>@container</code>'s
<code>style()</code></li>
<li><a
href="https://github.com/csstree/csstree/blob/master/docs/ast.md#condition"><code>Condition</code></a>:
used across all query-like at-rules, encapsulating queries with features
and the <code>not</code>, <code>and</code>, and <code>or</code>
operators</li>
<li><a
href="https://github.com/csstree/csstree/blob/master/docs/ast.md#condition"><code>GeneralEnclosure</code></a>:
represents the <a
href="https://www.w3.org/TR/mediaqueries-4/#typedef-general-enclosed"><code>&lt;general-enclosed&gt;</code></a>
production, which caters to unparsed parentheses or functional
expressions</li>
</ul>
<blockquote>
<p>Note: All new nodes include a <code>kind</code> property to define
the at-rule type. Supported kinds are <code>media</code>,
<code>supports</code>, and <code>container</code>.</p>
</blockquote>
</li>
<li>
<p>Added support for functions for features and features in a range
context, e.g. <code>(width: calc(100cm / 6))</code></p>
</li>
<li>
<p>Added a <code>condition</code> value for the parser's context option
to parse queries. Use the <code>kind</code> option to specify the
condition type, e.g., <code>parse('...', { context: 'condition', kind:
'media' })</code>.</p>
</li>
<li>
<p>Introduced a <code>features</code> section in the syntax
configuration for defining functional features of at-rules. Expand
definitions using the <code>fork()</code> method. The current definition
is as follows:</p>
<pre lang="js"><code>features: {
    supports: { selector() { /* ... */ } },
    container: { style() { /* ... */ } }
}
</code></pre>
</li>
<li>
<p>Changes for <code>@media</code> at-rule:</p>
<ul>
<li>Enhanced prelude parsing for complex queries. Parentheses with
errors will be parsed as <code>GeneralEnclosed</code>.</li>
<li>Added support for features in a range context, e.g. <code>(width
&gt; 100px)</code> or <code>(100px &lt; height &lt; 400px)</code></li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9de5189fad"><code>9de5189</code></a>
3.0.0</li>
<li><a
href="336c67ecd9"><code>336c67e</code></a>
Remove wrongly added files</li>
<li><a
href="56f3788434"><code>56f3788</code></a>
Fix lint error</li>
<li><a
href="a9a63cbaaa"><code>a9a63cb</code></a>
Improve support for <a
href="https://github.com/position-try"><code>@​position-try</code></a>
by adding allowed descriptors</li>
<li><a
href="66b312d6eb"><code>66b312d</code></a>
Update the year</li>
<li><a
href="049dc34abc"><code>049dc34</code></a>
Run unit tests on windows</li>
<li><a
href="41e70a638f"><code>41e70a6</code></a>
Fix bundling on windows</li>
<li><a
href="b8a97dd01c"><code>b8a97dd</code></a>
Try bundle on windows</li>
<li><a
href="cf8e828015"><code>cf8e828</code></a>
Align color to css-color-5 (fixes <a
href="https://redirect.github.com/csstree/csstree/issues/244">#244</a>)</li>
<li><a
href="94a5d77c56"><code>94a5d77</code></a>
Remove draft entry</li>
<li>Additional commits viewable in <a
href="https://github.com/csstree/csstree/compare/v2.3.1...v3.0.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=css-tree&package-manager=npm_and_yarn&previous-version=2.3.1&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-16 13:18:34 -07:00
Evan Simkowitz
f6362a3a15
Upgrade Storybook and disable TileLayout story for now 2024-09-16 13:16:04 -07:00
dependabot[bot]
9e405fe3c8
Bump electron from 32.0.2 to 32.1.0 in the electron group (#380)
Bumps the electron group with 1 update:
[electron](https://github.com/electron/electron).

Updates `electron` from 32.0.2 to 32.1.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/electron/electron/releases">electron's
releases</a>.</em></p>
<blockquote>
<h2>electron v32.1.0</h2>
<h1>Release Notes for v32.1.0</h1>
<h2>Features</h2>
<ul>
<li>Added support for the macOS system picker in
<code>desktopCapturer</code> and
<code>setDisplayMediaRequestHandler</code>. <a
href="https://redirect.github.com/electron/electron/pull/43679">#43679</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43680">33</a>)<!--
raw HTML omitted --></li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Fixed BrowserView auto resize issue. <a
href="https://redirect.github.com/electron/electron/pull/43637">#43637</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43635">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43636">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed a potential issue with fillable PDF forms saving correctly in
some circumstances. <a
href="https://redirect.github.com/electron/electron/pull/43687">#43687</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43686">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed an issue where <code>defaultPath</code> did not work for all
users on Linux when creating an open file dialog. <a
href="https://redirect.github.com/electron/electron/pull/43629">#43629</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43631">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43630">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43595">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed an issue where users would be incorrectly notified of print
failure upon intentional cancellation. <a
href="https://redirect.github.com/electron/electron/pull/43643">#43643</a></li>
<li>Fixed an issue with <code>resize</code> events being emitted on
Windows when the window was moved but not resized. <a
href="https://redirect.github.com/electron/electron/pull/43644">#43644</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43457">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed other apps not being focused when launched from electron
ozone/wayland. <a
href="https://redirect.github.com/electron/electron/pull/43577">#43577</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43578">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43579">33</a>)<!--
raw HTML omitted --></li>
<li>Restored Chromium default <code>Content-Disposition</code> header
parsing. <a
href="https://redirect.github.com/electron/electron/pull/43668">#43668</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43671">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43669">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43670">33</a>)<!--
raw HTML omitted --></li>
</ul>
<h2>Other Changes</h2>
<ul>
<li>Updated Chromium to 128.0.6613.120. <a
href="https://redirect.github.com/electron/electron/pull/43502">#43502</a></li>
<li>Updated Node.js to v20.17.0. <a
href="https://redirect.github.com/electron/electron/pull/43424">#43424</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="097c6b796d"><code>097c6b7</code></a>
feat: add support for system picker in setDisplayMediaRequestHandler (<a
href="https://redirect.github.com/electron/electron/issues/43679">#43679</a>)</li>
<li><a
href="fa1311e550"><code>fa1311e</code></a>
fix: ensure <code>SetPluginCanSave</code> updated in PDFs (<a
href="https://redirect.github.com/electron/electron/issues/43687">#43687</a>)</li>
<li><a
href="5b933e941e"><code>5b933e9</code></a>
fix: -Wunsafe-buffer-usage warning in V8Serializer::Serialize() (<a
href="https://redirect.github.com/electron/electron/issues/43676">#43676</a>)</li>
<li><a
href="017ba5bf46"><code>017ba5b</code></a>
fix: restore Chromium default <code>Content-Disposition</code> header
parsing (<a
href="https://redirect.github.com/electron/electron/issues/43668">#43668</a>)</li>
<li><a
href="7034537852"><code>7034537</code></a>
perf: use v8::Local&lt;v8::Object&gt; as the key in ObjectCache (<a
href="https://redirect.github.com/electron/electron/issues/43662">#43662</a>)</li>
<li><a
href="57cca46286"><code>57cca46</code></a>
chore: bump node to v20.17.0 (32-x-y) (<a
href="https://redirect.github.com/electron/electron/issues/43424">#43424</a>)</li>
<li><a
href="7097afb7f0"><code>7097afb</code></a>
docs: update window customization tutorial (<a
href="https://redirect.github.com/electron/electron/issues/43660">#43660</a>)</li>
<li><a
href="aead35a833"><code>aead35a</code></a>
fix: printing occasionally showing failed when cancelled (<a
href="https://redirect.github.com/electron/electron/issues/43643">#43643</a>)</li>
<li><a
href="01ef05580f"><code>01ef055</code></a>
fix: ensure bounds stability in <code>OnWidgetBoundsChanged</code> (<a
href="https://redirect.github.com/electron/electron/issues/43644">#43644</a>)</li>
<li><a
href="f74c353abf"><code>f74c353</code></a>
fix: out-of-scope Local handle in node::CallbackScope (<a
href="https://redirect.github.com/electron/electron/issues/43639">#43639</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/electron/electron/compare/v32.0.2...v32.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=electron&package-manager=npm_and_yarn&previous-version=32.0.2&new-version=32.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-13 18:14:27 -07:00
dependabot[bot]
2ce150fed3
Bump the dev-dependencies group with 8 updates (#377)
Bumps the dev-dependencies group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) |
`9.9.1` | `9.10.0` |
|
[@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul)
| `2.0.5` | `2.1.1` |
| [eslint](https://github.com/eslint/eslint) | `9.9.1` | `9.10.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.19.0` | `4.19.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` |
`5.6.2` |
|
[typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)
| `8.4.0` | `8.5.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.4.3` | `5.4.5` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `2.0.5` | `2.1.1` |

Updates `@eslint/js` from 9.9.1 to 9.10.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.10.0</h2>
<h2>Features</h2>
<ul>
<li><a
href="301b90df0c"><code>301b90d</code></a>
feat: Add types (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18854">#18854</a>)
(Nicholas C. Zakas)</li>
<li><a
href="bcf0df55c2"><code>bcf0df5</code></a>
feat: limit namespace import identifier in id-length rule (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18849">#18849</a>)
(ChaedongIm)</li>
<li><a
href="45c18e108e"><code>45c18e1</code></a>
feat: add <code>requireFlag</code> option to
<code>require-unicode-regexp</code> rule (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18836">#18836</a>)
(Brett Zamir)</li>
<li><a
href="183b459b72"><code>183b459</code></a>
feat: add error message for duplicate flags in
<code>no-invalid-regexp</code> (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18837">#18837</a>)
(Tanuj Kanti)</li>
<li><a
href="c69b40667a"><code>c69b406</code></a>
feat: report duplicate allowed flags in <code>no-invalid-regexp</code>
(<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18754">#18754</a>)
(Tanuj Kanti)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="bee0e7a5f5"><code>bee0e7a</code></a>
docs: update README (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18865">#18865</a>)
(Milos Djermanovic)</li>
<li><a
href="5d80b59520"><code>5d80b59</code></a>
docs: specify that <code>ruleId</code> can be <code>null</code> in
custom formatter docs (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18857">#18857</a>)
(Milos Djermanovic)</li>
<li><a
href="156b1c3037"><code>156b1c3</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="f6fdef9df4"><code>f6fdef9</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="a20c870744"><code>a20c870</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="90e699bd9d"><code>90e699b</code></a>
docs: Update README (GitHub Actions Bot)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="24c3ff7d0c"><code>24c3ff7</code></a>
chore: upgrade to <code>@​eslint/js</code><a
href="https://github.com/9"><code>@​9</code></a>.10.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18866">#18866</a>)
(Francesco Trotta)</li>
<li><a
href="1ebdde1cf2"><code>1ebdde1</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="e8fc5bd3da"><code>e8fc5bd</code></a>
chore: update dependency <code>@​eslint/core</code> to ^0.5.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18848">#18848</a>)
(renovate[bot])</li>
<li><a
href="343f992160"><code>343f992</code></a>
refactor: don't use <code>node.value</code> when removing unused
directives (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18835">#18835</a>)
(Milos Djermanovic)</li>
<li><a
href="3db18b0b67"><code>3db18b0</code></a>
refactor: Extract FileContext into class (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18831">#18831</a>)
(Nicholas C. Zakas)</li>
<li><a
href="931d650b37"><code>931d650</code></a>
refactor: Use <code>@​eslint/plugin-kit</code> (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18822">#18822</a>)
(Nicholas C. Zakas)</li>
<li><a
href="ed5cf0c6a9"><code>ed5cf0c</code></a>
chore: update dependency <code>@​eslint/json</code> to ^0.4.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18829">#18829</a>)
(Milos Djermanovic)</li>
<li><a
href="d1f0831bac"><code>d1f0831</code></a>
chore: added missing ids (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18817">#18817</a>)
(Strek)</li>
<li><a
href="ec92813657"><code>ec92813</code></a>
refactor: Config class (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18763">#18763</a>)
(Nicholas C. Zakas)</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.10.0 - September 6, 2024</p>
<ul>
<li><a
href="24c3ff7d0c"><code>24c3ff7</code></a>
chore: upgrade to <code>@​eslint/js</code><a
href="https://github.com/9"><code>@​9</code></a>.10.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18866">#18866</a>)
(Francesco Trotta)</li>
<li><a
href="1ebdde1cf2"><code>1ebdde1</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="301b90df0c"><code>301b90d</code></a>
feat: Add types (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18854">#18854</a>)
(Nicholas C. Zakas)</li>
<li><a
href="bee0e7a5f5"><code>bee0e7a</code></a>
docs: update README (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18865">#18865</a>)
(Milos Djermanovic)</li>
<li><a
href="bcf0df55c2"><code>bcf0df5</code></a>
feat: limit namespace import identifier in id-length rule (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18849">#18849</a>)
(ChaedongIm)</li>
<li><a
href="45c18e108e"><code>45c18e1</code></a>
feat: add <code>requireFlag</code> option to
<code>require-unicode-regexp</code> rule (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18836">#18836</a>)
(Brett Zamir)</li>
<li><a
href="5d80b59520"><code>5d80b59</code></a>
docs: specify that <code>ruleId</code> can be <code>null</code> in
custom formatter docs (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18857">#18857</a>)
(Milos Djermanovic)</li>
<li><a
href="156b1c3037"><code>156b1c3</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="e8fc5bd3da"><code>e8fc5bd</code></a>
chore: update dependency <code>@​eslint/core</code> to ^0.5.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18848">#18848</a>)
(renovate[bot])</li>
<li><a
href="343f992160"><code>343f992</code></a>
refactor: don't use <code>node.value</code> when removing unused
directives (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18835">#18835</a>)
(Milos Djermanovic)</li>
<li><a
href="183b459b72"><code>183b459</code></a>
feat: add error message for duplicate flags in
<code>no-invalid-regexp</code> (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18837">#18837</a>)
(Tanuj Kanti)</li>
<li><a
href="f6fdef9df4"><code>f6fdef9</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="c69b40667a"><code>c69b406</code></a>
feat: report duplicate allowed flags in <code>no-invalid-regexp</code>
(<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18754">#18754</a>)
(Tanuj Kanti)</li>
<li><a
href="a20c870744"><code>a20c870</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="90e699bd9d"><code>90e699b</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="3db18b0b67"><code>3db18b0</code></a>
refactor: Extract FileContext into class (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18831">#18831</a>)
(Nicholas C. Zakas)</li>
<li><a
href="931d650b37"><code>931d650</code></a>
refactor: Use <code>@​eslint/plugin-kit</code> (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18822">#18822</a>)
(Nicholas C. Zakas)</li>
<li><a
href="ed5cf0c6a9"><code>ed5cf0c</code></a>
chore: update dependency <code>@​eslint/json</code> to ^0.4.0 (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18829">#18829</a>)
(Milos Djermanovic)</li>
<li><a
href="d1f0831bac"><code>d1f0831</code></a>
chore: added missing ids (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18817">#18817</a>)
(Strek)</li>
<li><a
href="ec92813657"><code>ec92813</code></a>
refactor: Config class (<a
href="https://github.com/eslint/eslint/tree/HEAD/packages/js/issues/18763">#18763</a>)
(Nicholas C. Zakas)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1ebdde1cf2"><code>1ebdde1</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.10.0/packages/js">compare
view</a></li>
</ul>
</details>
<br />

Updates `@vitest/coverage-istanbul` from 2.0.5 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-istanbul</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>:
<ul>
<li>Make example test callbacks async  -  by <a
href="https://github.com/aqandrew"><code>@​aqandrew</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6484">vitest-dev/vitest#6484</a>
<a href="https://github.com/vitest-dev/vitest/commit/16aa76c2"><!-- raw
HTML omitted -->(16aa7)<!-- raw HTML omitted --></a></li>
<li>Optimize vitest-browser-vue correctly  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6490">vitest-dev/vitest#6490</a>
<a href="https://github.com/vitest-dev/vitest/commit/5cbb0bba"><!-- raw
HTML omitted -->(5cbb0)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>workspace</strong>:
<ul>
<li>Resolve glob pattern once to avoid name collision  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6489">vitest-dev/vitest#6489</a>
<a href="https://github.com/vitest-dev/vitest/commit/36b5aceb"><!-- raw
HTML omitted -->(36b5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v2.1.0...v2.1.1">View
changes on GitHub</a></h5>
<h2>v2.1.0</h2>
<p>This release makes another big change to the Browser Mode by
introducing <a
href="https://vitest.dev/guide/browser/locators.html">locators
API</a>:</p>
<pre lang="ts"><code>test('renders blog posts', async () =&gt; {
  const screen = page.render(&lt;Blog /&gt;)
<p>await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()</p>
<p>const [firstPost] = screen.getByRole('listitem').all()</p>
<p>await firstPost.getByRole('button', { name: 'Delete' }).click()</p>
<p>expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
</code></pre></p>
<p>You can use either <a
href="https://github.com/vitest-dev/vitest-browser-vue">vitest-browser-vue</a>,
<a
href="https://github.com/vitest-dev/vitest-browser-svelte">vitest-browser-svelte
</a> or <a
href="https://github.com/vitest-dev/vitest-browser-react">vitest-browser-react</a>
to render components and make assertions using locators. Locators are
also available on the <code>page</code> object from
<code>@vitest/browser/context</code>.</p>
<h3>Potential Breaking Change</h3>
<ul>
<li><strong>workspace</strong>:
<ul>
<li>Correctly resolve workspace globs and file paths  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6316">vitest-dev/vitest#6316</a>
<a href="https://github.com/vitest-dev/vitest/commit/afdcb8f2"><!-- raw
HTML omitted -->(afdcb)<!-- raw HTML omitted --></a></li>
<li>This changes how the custom glob pattern in the workspace config is
treated. <em>Any</em> file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single <code>vitest.config.ts</code> or <code>vite.config.ts</code>
inside the folder)</li>
<li>For example, <code>projects/*</code> will match anything inside the
<code>projects</code> folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. <code>projects/**/*</code> previously would assume that
you only wanted to have folders as projects, but now it will match
<em>every single file</em> inside<code>projects</code>.</li>
<li>This change doesn't affect non-glob usage.</li>
</ul>
</li>
</ul>
<h3>   🚀 Features</h3>
<ul>
<li><strong>api</strong>:
<ul>
<li>Make spec into a class instead of a tuple  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6355">vitest-dev/vitest#6355</a>
<a href="https://github.com/vitest-dev/vitest/commit/874a121e"><!-- raw
HTML omitted -->(874a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>browser</strong>:
<ul>
<li>Move page.config to server.config, add more docs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6252">vitest-dev/vitest#6252</a>
<a href="https://github.com/vitest-dev/vitest/commit/af2b813c"><!-- raw
HTML omitted -->(af2b8)<!-- raw HTML omitted --></a></li>
<li>Make iframe scalable, improve documentation  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6257">vitest-dev/vitest#6257</a>
<a href="https://github.com/vitest-dev/vitest/commit/74ca11a4"><!-- raw
HTML omitted -->(74ca1)<!-- raw HTML omitted --></a></li>
<li>Introduce built-in locators  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6084">vitest-dev/vitest#6084</a>
<a href="https://github.com/vitest-dev/vitest/commit/3347f83e"><!-- raw
HTML omitted -->(3347f)<!-- raw HTML omitted --></a></li>
<li>Support v8 coverage  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6273">vitest-dev/vitest#6273</a>
<a href="https://github.com/vitest-dev/vitest/commit/34199bdf"><!-- raw
HTML omitted -->(34199)<!-- raw HTML omitted --></a></li>
<li>Support <code>userEvent.upload</code> in playwright provider  -  by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6442">vitest-dev/vitest#6442</a>
<a href="https://github.com/vitest-dev/vitest/commit/cf148645"><!-- raw
HTML omitted -->(cf148)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6433">vitest-dev/vitest#6433</a>
<a href="https://github.com/vitest-dev/vitest/commit/0499a315"><!-- raw
HTML omitted -->(0499a)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect-brk</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6434">vitest-dev/vitest#6434</a>
<a href="https://github.com/vitest-dev/vitest/commit/7ab0f4a8"><!-- raw
HTML omitted -->(7ab0f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="699055eb93"><code>699055e</code></a>
chore: release v2.1.1</li>
<li><a
href="9f1fd182fd"><code>9f1fd18</code></a>
chore: release v2.1.0</li>
<li><a
href="b2be23e4c9"><code>b2be23e</code></a>
chore: release v2.1.0-beta.7</li>
<li><a
href="8ac7011170"><code>8ac7011</code></a>
chore: release v2.1.0-beta.6</li>
<li><a
href="da52d23fd1"><code>da52d23</code></a>
fix(coverage): use project specific <code>vitenode</code> for uncovered
files (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6044">#6044</a>)</li>
<li><a
href="5932a7f988"><code>5932a7f</code></a>
feat(coverage): add <code>--exclude-after-remap</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6309">#6309</a>)</li>
<li><a
href="34199bdf9a"><code>34199bd</code></a>
feat(browser): support v8 coverage (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6273">#6273</a>)</li>
<li><a
href="72056b5063"><code>72056b5</code></a>
chore: release v2.1.0-beta.5</li>
<li><a
href="e662c7b2c3"><code>e662c7b</code></a>
fix(coverage): warn if <code>vitest</code> and <code>@vitest/*</code>
versions don't match (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul/issues/6317">#6317</a>)</li>
<li><a
href="67b086bb86"><code>67b086b</code></a>
chore: release v2.1.0-beta.4</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/coverage-istanbul">compare
view</a></li>
</ul>
</details>
<br />

Updates `eslint` from 9.9.1 to 9.10.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.10.0</h2>
<h2>Features</h2>
<ul>
<li><a
href="301b90df0c"><code>301b90d</code></a>
feat: Add types (<a
href="https://redirect.github.com/eslint/eslint/issues/18854">#18854</a>)
(Nicholas C. Zakas)</li>
<li><a
href="bcf0df55c2"><code>bcf0df5</code></a>
feat: limit namespace import identifier in id-length rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18849">#18849</a>)
(ChaedongIm)</li>
<li><a
href="45c18e108e"><code>45c18e1</code></a>
feat: add <code>requireFlag</code> option to
<code>require-unicode-regexp</code> rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18836">#18836</a>)
(Brett Zamir)</li>
<li><a
href="183b459b72"><code>183b459</code></a>
feat: add error message for duplicate flags in
<code>no-invalid-regexp</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/18837">#18837</a>)
(Tanuj Kanti)</li>
<li><a
href="c69b40667a"><code>c69b406</code></a>
feat: report duplicate allowed flags in <code>no-invalid-regexp</code>
(<a
href="https://redirect.github.com/eslint/eslint/issues/18754">#18754</a>)
(Tanuj Kanti)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="bee0e7a5f5"><code>bee0e7a</code></a>
docs: update README (<a
href="https://redirect.github.com/eslint/eslint/issues/18865">#18865</a>)
(Milos Djermanovic)</li>
<li><a
href="5d80b59520"><code>5d80b59</code></a>
docs: specify that <code>ruleId</code> can be <code>null</code> in
custom formatter docs (<a
href="https://redirect.github.com/eslint/eslint/issues/18857">#18857</a>)
(Milos Djermanovic)</li>
<li><a
href="156b1c3037"><code>156b1c3</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="f6fdef9df4"><code>f6fdef9</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="a20c870744"><code>a20c870</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="90e699bd9d"><code>90e699b</code></a>
docs: Update README (GitHub Actions Bot)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="24c3ff7d0c"><code>24c3ff7</code></a>
chore: upgrade to <code>@​eslint/js</code><a
href="https://github.com/9"><code>@​9</code></a>.10.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18866">#18866</a>)
(Francesco Trotta)</li>
<li><a
href="1ebdde1cf2"><code>1ebdde1</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="e8fc5bd3da"><code>e8fc5bd</code></a>
chore: update dependency <code>@​eslint/core</code> to ^0.5.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18848">#18848</a>)
(renovate[bot])</li>
<li><a
href="343f992160"><code>343f992</code></a>
refactor: don't use <code>node.value</code> when removing unused
directives (<a
href="https://redirect.github.com/eslint/eslint/issues/18835">#18835</a>)
(Milos Djermanovic)</li>
<li><a
href="3db18b0b67"><code>3db18b0</code></a>
refactor: Extract FileContext into class (<a
href="https://redirect.github.com/eslint/eslint/issues/18831">#18831</a>)
(Nicholas C. Zakas)</li>
<li><a
href="931d650b37"><code>931d650</code></a>
refactor: Use <code>@​eslint/plugin-kit</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/18822">#18822</a>)
(Nicholas C. Zakas)</li>
<li><a
href="ed5cf0c6a9"><code>ed5cf0c</code></a>
chore: update dependency <code>@​eslint/json</code> to ^0.4.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18829">#18829</a>)
(Milos Djermanovic)</li>
<li><a
href="d1f0831bac"><code>d1f0831</code></a>
chore: added missing ids (<a
href="https://redirect.github.com/eslint/eslint/issues/18817">#18817</a>)
(Strek)</li>
<li><a
href="ec92813657"><code>ec92813</code></a>
refactor: Config class (<a
href="https://redirect.github.com/eslint/eslint/issues/18763">#18763</a>)
(Nicholas C. Zakas)</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.10.0 - September 6, 2024</p>
<ul>
<li><a
href="24c3ff7d0c"><code>24c3ff7</code></a>
chore: upgrade to <code>@​eslint/js</code><a
href="https://github.com/9"><code>@​9</code></a>.10.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18866">#18866</a>)
(Francesco Trotta)</li>
<li><a
href="1ebdde1cf2"><code>1ebdde1</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="301b90df0c"><code>301b90d</code></a>
feat: Add types (<a
href="https://redirect.github.com/eslint/eslint/issues/18854">#18854</a>)
(Nicholas C. Zakas)</li>
<li><a
href="bee0e7a5f5"><code>bee0e7a</code></a>
docs: update README (<a
href="https://redirect.github.com/eslint/eslint/issues/18865">#18865</a>)
(Milos Djermanovic)</li>
<li><a
href="bcf0df55c2"><code>bcf0df5</code></a>
feat: limit namespace import identifier in id-length rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18849">#18849</a>)
(ChaedongIm)</li>
<li><a
href="45c18e108e"><code>45c18e1</code></a>
feat: add <code>requireFlag</code> option to
<code>require-unicode-regexp</code> rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18836">#18836</a>)
(Brett Zamir)</li>
<li><a
href="5d80b59520"><code>5d80b59</code></a>
docs: specify that <code>ruleId</code> can be <code>null</code> in
custom formatter docs (<a
href="https://redirect.github.com/eslint/eslint/issues/18857">#18857</a>)
(Milos Djermanovic)</li>
<li><a
href="156b1c3037"><code>156b1c3</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="e8fc5bd3da"><code>e8fc5bd</code></a>
chore: update dependency <code>@​eslint/core</code> to ^0.5.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18848">#18848</a>)
(renovate[bot])</li>
<li><a
href="343f992160"><code>343f992</code></a>
refactor: don't use <code>node.value</code> when removing unused
directives (<a
href="https://redirect.github.com/eslint/eslint/issues/18835">#18835</a>)
(Milos Djermanovic)</li>
<li><a
href="183b459b72"><code>183b459</code></a>
feat: add error message for duplicate flags in
<code>no-invalid-regexp</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/18837">#18837</a>)
(Tanuj Kanti)</li>
<li><a
href="f6fdef9df4"><code>f6fdef9</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="c69b40667a"><code>c69b406</code></a>
feat: report duplicate allowed flags in <code>no-invalid-regexp</code>
(<a
href="https://redirect.github.com/eslint/eslint/issues/18754">#18754</a>)
(Tanuj Kanti)</li>
<li><a
href="a20c870744"><code>a20c870</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="90e699bd9d"><code>90e699b</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="3db18b0b67"><code>3db18b0</code></a>
refactor: Extract FileContext into class (<a
href="https://redirect.github.com/eslint/eslint/issues/18831">#18831</a>)
(Nicholas C. Zakas)</li>
<li><a
href="931d650b37"><code>931d650</code></a>
refactor: Use <code>@​eslint/plugin-kit</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/18822">#18822</a>)
(Nicholas C. Zakas)</li>
<li><a
href="ed5cf0c6a9"><code>ed5cf0c</code></a>
chore: update dependency <code>@​eslint/json</code> to ^0.4.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18829">#18829</a>)
(Milos Djermanovic)</li>
<li><a
href="d1f0831bac"><code>d1f0831</code></a>
chore: added missing ids (<a
href="https://redirect.github.com/eslint/eslint/issues/18817">#18817</a>)
(Strek)</li>
<li><a
href="ec92813657"><code>ec92813</code></a>
refactor: Config class (<a
href="https://redirect.github.com/eslint/eslint/issues/18763">#18763</a>)
(Nicholas C. Zakas)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="6448f3280f"><code>6448f32</code></a>
9.10.0</li>
<li><a
href="afeb9b1b7e"><code>afeb9b1</code></a>
Build: changelog update for 9.10.0</li>
<li><a
href="24c3ff7d0c"><code>24c3ff7</code></a>
chore: upgrade to <code>@​eslint/js</code><a
href="https://github.com/9"><code>@​9</code></a>.10.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/18866">#18866</a>)</li>
<li><a
href="1ebdde1cf2"><code>1ebdde1</code></a>
chore: package.json update for <code>@​eslint/js</code> release</li>
<li><a
href="301b90df0c"><code>301b90d</code></a>
feat: Add types (<a
href="https://redirect.github.com/eslint/eslint/issues/18854">#18854</a>)</li>
<li><a
href="bee0e7a5f5"><code>bee0e7a</code></a>
docs: update README (<a
href="https://redirect.github.com/eslint/eslint/issues/18865">#18865</a>)</li>
<li><a
href="bcf0df55c2"><code>bcf0df5</code></a>
feat: limit namespace import identifier in id-length rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18849">#18849</a>)</li>
<li><a
href="45c18e108e"><code>45c18e1</code></a>
feat: add <code>requireFlag</code> option to
<code>require-unicode-regexp</code> rule (<a
href="https://redirect.github.com/eslint/eslint/issues/18836">#18836</a>)</li>
<li><a
href="5d80b59520"><code>5d80b59</code></a>
docs: specify that <code>ruleId</code> can be <code>null</code> in
custom formatter docs (<a
href="https://redirect.github.com/eslint/eslint/issues/18857">#18857</a>)</li>
<li><a
href="156b1c3037"><code>156b1c3</code></a>
docs: Update README</li>
<li>Additional commits viewable in <a
href="https://github.com/eslint/eslint/compare/v9.9.1...v9.10.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `tsx` from 4.19.0 to 4.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/privatenumber/tsx/releases">tsx's
releases</a>.</em></p>
<blockquote>
<h2>v4.19.1</h2>
<h2><a
href="https://github.com/privatenumber/tsx/compare/v4.19.0...v4.19.1">4.19.1</a>
(2024-09-12)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>cjs:</strong> patch <code>module.path</code> for accurate
cache ID (<a
href="0329bfc731">0329bfc</a>),
closes <a
href="https://redirect.github.com/privatenumber/tsx/issues/651">privatenumber/tsx#651</a></li>
<li><strong>cjs:</strong> resolve ts extensions from js when namespaced
(<a
href="44ed37f19f">44ed37f</a>)</li>
</ul>
<hr />
<p>This release is also available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/tsx/v/4.19.1"><code>npm
package (@​latest dist-tag)</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0329bfc731"><code>0329bfc</code></a>
fix(cjs): patch <code>module.path</code> for accurate cache ID</li>
<li><a
href="44ed37f19f"><code>44ed37f</code></a>
fix(cjs): resolve ts extensions from js when namespaced</li>
<li><a
href="ac77527cb7"><code>ac77527</code></a>
test: outdent api fixtures</li>
<li>See full diff in <a
href="https://github.com/privatenumber/tsx/compare/v4.19.0...v4.19.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `typescript` from 5.5.4 to 5.6.2
<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</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.6.0 (Beta)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed
issues query for Typescript 5.6.1 (RC)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed
issues query for Typescript 5.6.2 (Stable)</a>.</li>
</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>
<h2>TypeScript 5.6 RC</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-rc/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed
issues query for TypeScript v5.6.1 (RC)</a>.</li>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed
issues query for TypeScript v5.6.0 (Beta)</a>.</li>
</ul>
<p>Downloads are available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/typescript">npm</a></li>
</ul>
<h2>TypeScript 5.6 Beta</h2>
<p>For release notes, check out the <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6-beta/">release
announcement</a>.</p>
<p>For the complete list of fixed issues, check out the</p>
<ul>
<li><a
href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&amp;q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed
issues query for Typescript 5.6.0 (Beta)</a>.</li>
</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="a7e3374f13"><code>a7e3374</code></a>
Bump version to 5.6.2 and LKG</li>
<li><a
href="20633579fc"><code>2063357</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/59708">#59708</a>
(LEGO: Pull request from lego/hb_537...) into release-5.6 (#...</li>
<li><a
href="4fe7e41ea1"><code>4fe7e41</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/59670">#59670</a>
(fix(59649): ts Move to a new file d...) into release-5.6 (#...</li>
<li><a
href="1a03e5340a"><code>1a03e53</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/59761">#59761</a>
(<code>this</code> can be nullish) into release-5.6 (<a
href="https://redirect.github.com/microsoft/TypeScript/issues/59762">#59762</a>)</li>
<li><a
href="6212132b83"><code>6212132</code></a>
Update LKG</li>
<li><a
href="bbb5faf7e7"><code>bbb5faf</code></a>
🤖 Pick PR <a
href="https://redirect.github.com/microsoft/TypeScript/issues/59542">#59542</a>
(Fixing delay caused in vscode due t...) into release-5.6 (#...</li>
<li><a
href="e6914a5587"><code>e6914a5</code></a>
Bump version to 5.6.1-rc and LKG</li>
<li><a
href="34121c42b6"><code>34121c4</code></a>
Update LKG</li>
<li><a
href="2a30c2a8f0"><code>2a30c2a</code></a>
Merge remote-tracking branch 'origin/main' into release-5.6</li>
<li><a
href="936a79bbb5"><code>936a79b</code></a>
Expose TypeChecker. getAwaitedType to public (<a
href="https://redirect.github.com/microsoft/TypeScript/issues/59268">#59268</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `typescript-eslint` from 8.4.0 to 8.5.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.5.0</h2>
<h2>8.5.0 (2024-09-09)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-duplicate-type-constituents]
prevent unnecessary <code>| undefined</code> for optional parameters (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9479">#9479</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unsafe-argument] differentiate
error types (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9920">#9920</a>)</li>
<li><strong>typescript-estree:</strong> default
projectService.defaultProject to 'tsconfig.json' (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9893">#9893</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>deps:</strong> update dependency prism-react-renderer to
v2.4.0 (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9943">#9943</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion] fix
TSNonNullExpression fixer (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9898">#9898</a>)</li>
<li><strong>eslint-plugin:</strong> [no-misused-promises] handle static
method (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9951">#9951</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-parameters] fix
AST quick path scope analysis (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9900">#9900</a>)</li>
<li><strong>eslint-plugin:</strong> [consistent-type-assertions] access
parser services lazily (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9921">#9921</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Josh Goldberg </li>
<li>Kirk Waiblinger <a
href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's
changelog</a>.</em></p>
<blockquote>
<h2>8.5.0 (2024-09-09)</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="4d31ebe71a"><code>4d31ebe</code></a>
chore(release): publish 8.5.0</li>
<li><a
href="4bc801e542"><code>4bc801e</code></a>
chore: enable unicorn/no-array-reduce (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/9640">#9640</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.5.0/packages/typescript-eslint">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.4.3 to 5.4.5
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/v5.4.5/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.4.5 (2024-09-13)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18098">#18098</a>,
throw error preloading module as well (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18099">#18099</a>)
(<a
href="faa2405e5d">faa2405</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18098">#18098</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18099">#18099</a></li>
</ul>
<h2><!-- raw HTML omitted -->5.4.4 (2024-09-11)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17997">#17997</a>,
ensure req.url matches moduleByEtag URL to avoid incorrect 304 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18078">#18078</a>)
(<a
href="74a79c53b2">74a79c5</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17997">#17997</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18078">#18078</a></li>
<li>fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18063">#18063</a>,
allow scanning exports from <code>script module</code> in svelte (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18077">#18077</a>)
(<a
href="d90ba40474">d90ba40</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18063">#18063</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18077">#18077</a></li>
<li>fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18046">#18046</a>,
allow ignoring dep errors (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18076">#18076</a>)
(<a
href="8760293d68">8760293</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18046">#18046</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18076">#18076</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="37881e7198"><code>37881e7</code></a>
release: v5.4.5</li>
<li><a
href="faa2405e5d"><code>faa2405</code></a>
fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18098">#18098</a>,
throw error preloading module as well (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18099">#18099</a>)</li>
<li><a
href="54c55dbffc"><code>54c55db</code></a>
release: v5.4.4</li>
<li><a
href="74a79c53b2"><code>74a79c5</code></a>
fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17997">#17997</a>,
ensure req.url matches moduleByEtag URL to avoid incorr...</li>
<li><a
href="d90ba40474"><code>d90ba40</code></a>
fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18063">#18063</a>,
allow scanning exports from <code>script module</code> in svelte
(...</li>
<li><a
href="8760293d68"><code>8760293</code></a>
fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18046">#18046</a>,
allow ignoring dep errors (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18076">#18076</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.4.5/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 2.0.5 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>:
<ul>
<li>Make example test callbacks async  -  by <a
href="https://github.com/aqandrew"><code>@​aqandrew</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6484">vitest-dev/vitest#6484</a>
<a href="https://github.com/vitest-dev/vitest/commit/16aa76c2"><!-- raw
HTML omitted -->(16aa7)<!-- raw HTML omitted --></a></li>
<li>Optimize vitest-browser-vue correctly  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6490">vitest-dev/vitest#6490</a>
<a href="https://github.com/vitest-dev/vitest/commit/5cbb0bba"><!-- raw
HTML omitted -->(5cbb0)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>workspace</strong>:
<ul>
<li>Resolve glob pattern once to avoid name collision  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6489">vitest-dev/vitest#6489</a>
<a href="https://github.com/vitest-dev/vitest/commit/36b5aceb"><!-- raw
HTML omitted -->(36b5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v2.1.0...v2.1.1">View
changes on GitHub</a></h5>
<h2>v2.1.0</h2>
<p>This release makes another big change to the Browser Mode by
introducing <a
href="https://vitest.dev/guide/browser/locators.html">locators
API</a>:</p>
<pre lang="ts"><code>test('renders blog posts', async () =&gt; {
  const screen = page.render(&lt;Blog /&gt;)
<p>await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()</p>
<p>const [firstPost] = screen.getByRole('listitem').all()</p>
<p>await firstPost.getByRole('button', { name: 'Delete' }).click()</p>
<p>expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
</code></pre></p>
<p>You can use either <a
href="https://github.com/vitest-dev/vitest-browser-vue">vitest-browser-vue</a>,
<a
href="https://github.com/vitest-dev/vitest-browser-svelte">vitest-browser-svelte
</a> or <a
href="https://github.com/vitest-dev/vitest-browser-react">vitest-browser-react</a>
to render components and make assertions using locators. Locators are
also available on the <code>page</code> object from
<code>@vitest/browser/context</code>.</p>
<h3>Potential Breaking Change</h3>
<ul>
<li><strong>workspace</strong>:
<ul>
<li>Correctly resolve workspace globs and file paths  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6316">vitest-dev/vitest#6316</a>
<a href="https://github.com/vitest-dev/vitest/commit/afdcb8f2"><!-- raw
HTML omitted -->(afdcb)<!-- raw HTML omitted --></a></li>
<li>This changes how the custom glob pattern in the workspace config is
treated. <em>Any</em> file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single <code>vitest.config.ts</code> or <code>vite.config.ts</code>
inside the folder)</li>
<li>For example, <code>projects/*</code> will match anything inside the
<code>projects</code> folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. <code>projects/**/*</code> previously would assume that
you only wanted to have folders as projects, but now it will match
<em>every single file</em> inside<code>projects</code>.</li>
<li>This change doesn't affect non-glob usage.</li>
</ul>
</li>
</ul>
<h3>   🚀 Features</h3>
<ul>
<li><strong>api</strong>:
<ul>
<li>Make spec into a class instead of a tuple  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6355">vitest-dev/vitest#6355</a>
<a href="https://github.com/vitest-dev/vitest/commit/874a121e"><!-- raw
HTML omitted -->(874a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>browser</strong>:
<ul>
<li>Move page.config to server.config, add more docs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6252">vitest-dev/vitest#6252</a>
<a href="https://github.com/vitest-dev/vitest/commit/af2b813c"><!-- raw
HTML omitted -->(af2b8)<!-- raw HTML omitted --></a></li>
<li>Make iframe scalable, improve documentation  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6257">vitest-dev/vitest#6257</a>
<a href="https://github.com/vitest-dev/vitest/commit/74ca11a4"><!-- raw
HTML omitted -->(74ca1)<!-- raw HTML omitted --></a></li>
<li>Introduce built-in locators  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6084">vitest-dev/vitest#6084</a>
<a href="https://github.com/vitest-dev/vitest/commit/3347f83e"><!-- raw
HTML omitted -->(3347f)<!-- raw HTML omitted --></a></li>
<li>Support v8 coverage  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6273">vitest-dev/vitest#6273</a>
<a href="https://github.com/vitest-dev/vitest/commit/34199bdf"><!-- raw
HTML omitted -->(34199)<!-- raw HTML omitted --></a></li>
<li>Support <code>userEvent.upload</code> in playwright provider  -  by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6442">vitest-dev/vitest#6442</a>
<a href="https://github.com/vitest-dev/vitest/commit/cf148645"><!-- raw
HTML omitted -->(cf148)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6433">vitest-dev/vitest#6433</a>
<a href="https://github.com/vitest-dev/vitest/commit/0499a315"><!-- raw
HTML omitted -->(0499a)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect-brk</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6434">vitest-dev/vitest#6434</a>
<a href="https://github.com/vitest-dev/vitest/commit/7ab0f4a8"><!-- raw
HTML omitted -->(7ab0f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="699055eb93"><code>699055e</code></a>
chore: release v2.1.1</li>
<li><a
href="36b5aceb9e"><code>36b5ace</code></a>
fix(workspace): resolve glob pattern once to avoid name collision (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6489">#6489</a>)</li>
<li><a
href="16aa76c261"><code>16aa76c</code></a>
fix(browser): make example test callbacks async (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6484">#6484</a>)</li>
<li><a
href="9f1fd182fd"><code>9f1fd18</code></a>
chore: release v2.1.0</li>
<li><a
href="94a186ec91"><code>94a186e</code></a>
fix(ui): render project name consistently (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6329">#6329</a>)</li>
<li><a
href="ac698b1c8d"><code>ac698b1</code></a>
fix: <code>expect.getState().testPath</code> always returns correct path
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6472">#6472</a>)</li>
<li><a
href="b2be23e4c9"><code>b2be23e</code></a>
chore: release v2.1.0-beta.7</li>
<li><a
href="0b4472267d"><code>0b44722</code></a>
fix: ignore importer when resolving Vitest (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6469">#6469</a>)</li>
<li><a
href="97773e22bf"><code>97773e2</code></a>
chore: fix edge case in license files bundling (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6460">#6460</a>)</li>
<li><a
href="7ab0f4a8ff"><code>7ab0f4a</code></a>
feat(browser): support <code>--inspect-brk</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6434">#6434</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore 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-09-13 11:42:27 -07:00
Evan Simkowitz
747a3d6886
add react-dom typedefs 2024-09-11 14:54:23 -07:00
sawka
912fcca865 bump to v0.1.12 2024-09-11 11:13:10 -07:00
Evan Simkowitz
7c45b3679f
Add syntax highlighting to the Markdown element (#356)
Also fixes the styling for the copy button
2024-09-09 11:56:21 -07:00
Evan Simkowitz
6117929081
fix links in md preview when there's more than one heading with same name 2024-09-06 17:11:11 -07:00
dependabot[bot]
f541db8b1b
Bump debug from 4.3.6 to 4.3.7 in the prod-dependencies group (#340)
Bumps the prod-dependencies group with 1 update:
[debug](https://github.com/debug-js/debug).

Updates `debug` from 4.3.6 to 4.3.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/debug-js/debug/releases">debug's
releases</a>.</em></p>
<blockquote>
<h2>4.3.7</h2>
<h2>What's Changed</h2>
<ul>
<li>Upgrade ms to version 2.1.3 by <a
href="https://github.com/realityking"><code>@​realityking</code></a> in
<a
href="https://redirect.github.com/debug-js/debug/pull/819">debug-js/debug#819</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/debug-js/debug/compare/4.3.6...4.3.7">https://github.com/debug-js/debug/compare/4.3.6...4.3.7</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bc60914816"><code>bc60914</code></a>
4.3.7</li>
<li><a
href="c63e96e649"><code>c63e96e</code></a>
Upgrade ms to version 2.1.3 (<a
href="https://redirect.github.com/debug-js/debug/issues/819">#819</a>)</li>
<li><a
href="382864a45a"><code>382864a</code></a>
remove archaic badges from readme</li>
<li>See full diff in <a
href="https://github.com/debug-js/debug/compare/4.3.6...4.3.7">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=debug&package-manager=npm_and_yarn&previous-version=4.3.6&new-version=4.3.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-06 16:39:02 -07:00
dependabot[bot]
55e0b58f0d
Bump the dev-dependencies group with 3 updates (#338)
Bumps the dev-dependencies group with 3 updates:
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node),
[typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint)
and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).

Updates `@types/node` from 22.5.1 to 22.5.4
<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 `typescript-eslint` from 8.3.0 to 8.4.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.4.0</h2>
<h2>8.4.0 (2024-09-02)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>typescript-estree:</strong> make withoutProjectParserOptions
generic (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9877">#9877</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Josh Goldberg </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.4.0 (2024-09-02)</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="3920c937e8"><code>3920c93</code></a>
chore(release): publish 8.4.0</li>
<li><a
href="2ad3404690"><code>2ad3404</code></a>
chore: enable <code>unicorn/prefer-export-from</code> and
`@typescript-eslint/consistent...</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.4.0/packages/typescript-eslint">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.4.2 to 5.4.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.4.3 (2024-09-03)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: allow getting URL of JS files in publicDir (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17915">#17915</a>)
(<a
href="943ece177e">943ece1</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17915">#17915</a></li>
<li>fix: cjs warning respect the logLevel flag (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17993">#17993</a>)
(<a
href="dc3c14f39f">dc3c14f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17993">#17993</a></li>
<li>fix: improve CJS warning trace information (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17926">#17926</a>)
(<a
href="5c5f82c84b">5c5f82c</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17926">#17926</a></li>
<li>fix: only remove entry assets handled by Vite core (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17916">#17916</a>)
(<a
href="ebfaa7e601">ebfaa7e</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17916">#17916</a></li>
<li>fix: waitForRequestIdle locked (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17982">#17982</a>)
(<a
href="ad1376018a">ad13760</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17982">#17982</a></li>
<li>fix(css): fix directory index import in sass modern api (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17960">#17960</a>)
(<a
href="9b001baa70">9b001ba</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17960">#17960</a></li>
<li>fix(css): fix sass <code>file://</code> reference (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17909">#17909</a>)
(<a
href="561b940f6f">561b940</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17909">#17909</a></li>
<li>fix(css): fix sass modern source map (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17938">#17938</a>)
(<a
href="d428e7e3a0">d428e7e</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17938">#17938</a></li>
<li>fix(deps): bump tsconfck (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17990">#17990</a>)
(<a
href="8c661b20e9">8c661b2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17990">#17990</a></li>
<li>fix(html): rewrite assets url in &lt;template&gt; (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17988">#17988</a>)
(<a
href="413c86aa97">413c86a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17988">#17988</a></li>
<li>fix(preload): add crossorigin attribute in CSS link tags (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17930">#17930</a>)
(<a
href="15871c75e0">15871c7</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17930">#17930</a></li>
<li>chore: reduce diffs with v6 branch (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17942">#17942</a>)
(<a
href="bf9065aa13">bf9065a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17942">#17942</a></li>
<li>chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17945">#17945</a>)
(<a
href="cfb621e7a5">cfb621e</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17945">#17945</a></li>
<li>chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17991">#17991</a>)
(<a
href="0ca53cff9f">0ca53cf</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17991">#17991</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ccbfc1a068"><code>ccbfc1a</code></a>
release: v5.4.3</li>
<li><a
href="9b001baa70"><code>9b001ba</code></a>
fix(css): fix directory index import in sass modern api (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17960">#17960</a>)</li>
<li><a
href="5c5f82c84b"><code>5c5f82c</code></a>
fix: improve CJS warning trace information (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17926">#17926</a>)</li>
<li><a
href="15871c75e0"><code>15871c7</code></a>
fix(preload): add crossorigin attribute in CSS link tags (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17930">#17930</a>)</li>
<li><a
href="413c86aa97"><code>413c86a</code></a>
fix(html): rewrite assets url in &lt;template&gt; (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17988">#17988</a>)</li>
<li><a
href="dc3c14f39f"><code>dc3c14f</code></a>
fix: cjs warning respect the logLevel flag (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17993">#17993</a>)</li>
<li><a
href="0ca53cff9f"><code>0ca53cf</code></a>
chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17991">#17991</a>)</li>
<li><a
href="ebfaa7e601"><code>ebfaa7e</code></a>
fix: only remove entry assets handled by Vite core (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17916">#17916</a>)</li>
<li><a
href="d428e7e3a0"><code>d428e7e</code></a>
fix(css): fix sass modern source map (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17938">#17938</a>)</li>
<li><a
href="ad1376018a"><code>ad13760</code></a>
fix: waitForRequestIdle locked (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17982">#17982</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v5.4.3/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 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-09-06 16:26:37 -07:00
dependabot[bot]
ab947ce3f7
Bump the electron group with 2 updates (#341)
Bumps the electron group with 2 updates:
[electron](https://github.com/electron/electron) and
[electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder).

Updates `electron` from 32.0.1 to 32.0.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/electron/electron/releases">electron's
releases</a>.</em></p>
<blockquote>
<h2>electron v32.0.2</h2>
<h1>Release Notes for v32.0.2</h1>
<h2>Fixes</h2>
<ul>
<li>Fixed <code>MenuItem.click</code> handler not setting
<code>focusedWindow</code> parameter when focused window is a
<code>BaseWindow</code>. <a
href="https://redirect.github.com/electron/electron/pull/43437">#43437</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43439">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43438">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed an issue where <code>BaseWindow.setTouchBar</code> didn't work
as expected. <a
href="https://redirect.github.com/electron/electron/pull/43421">#43421</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43419">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43420">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43422">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed bug where camera permissions affected screen sharing. <a
href="https://redirect.github.com/electron/electron/pull/43544">#43544</a></li>
<li>Fixed devtools to allow restoring saved dock state on Linux when WCO
is enabled. <a
href="https://redirect.github.com/electron/electron/pull/43501">#43501</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43500">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43499">33</a>)<!--
raw HTML omitted --></li>
<li>Fixed electron app in ozone/wayland not being focused when launched
from another app. <a
href="https://redirect.github.com/electron/electron/pull/43548">#43548</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43547">31</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43546">33</a>)<!--
raw HTML omitted --></li>
</ul>
<h2>Other Changes</h2>
<ul>
<li>Updated Chromium to 128.0.6613.84. <a
href="https://redirect.github.com/electron/electron/pull/43425">#43425</a></li>
</ul>
<h2>Documentation</h2>
<ul>
<li>Documentation changes: <a
href="https://redirect.github.com/electron/electron/pull/43459">#43459</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="61fbd29bc5"><code>61fbd29</code></a>
build: don't run symbol generation on PS (<a
href="https://redirect.github.com/electron/electron/issues/43560">#43560</a>)</li>
<li><a
href="486c264738"><code>486c264</code></a>
fix: don't use deprecate-soon class v8::String::Value (<a
href="https://redirect.github.com/electron/electron/issues/43552">#43552</a>)</li>
<li><a
href="c9c8f5b3a3"><code>c9c8f5b</code></a>
fix: Use XDG_ACTIVATION_TOKEN in wayland when launched by other app (<a
href="https://redirect.github.com/electron/electron/issues/43548">#43548</a>)</li>
<li><a
href="22c8394376"><code>22c8394</code></a>
fix: systemMediaPermissionDenied should not check camera perms when the
reque...</li>
<li><a
href="454f1c8d5d"><code>454f1c8</code></a>
build: free up macos disk space as soon as possible (<a
href="https://redirect.github.com/electron/electron/issues/43537">#43537</a>)</li>
<li><a
href="5c07d56166"><code>5c07d56</code></a>
chore: speed up cache only reclient for fork PRs (<a
href="https://redirect.github.com/electron/electron/issues/43505">#43505</a>)</li>
<li><a
href="2aa1591d20"><code>2aa1591</code></a>
fix: devtools dock state with WCO on linux (<a
href="https://redirect.github.com/electron/electron/issues/43501">#43501</a>)</li>
<li><a
href="0a13e40fab"><code>0a13e40</code></a>
refactor: simplify KeyWeakMap impl (<a
href="https://redirect.github.com/electron/electron/issues/43485">#43485</a>)</li>
<li><a
href="81c2c19414"><code>81c2c19</code></a>
chore: remove unused WinFrameView::kInactiveTitlebarFeatureAlpha (<a
href="https://redirect.github.com/electron/electron/issues/43474">#43474</a>)</li>
<li><a
href="5a1bab7c3a"><code>5a1bab7</code></a>
perf: prefer GURL string_view getters (<a
href="https://redirect.github.com/electron/electron/issues/43470">#43470</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/electron/electron/compare/v32.0.1...v32.0.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `electron-builder` from 24.13.3 to 25.0.5
<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.0.5</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: windows signature verification special chars by <a
href="https://github.com/ckarich"><code>@​ckarich</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8409">electron-userland/electron-builder#8409</a></li>
<li>fix: change abort to aborted event by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8282">electron-userland/electron-builder#8282</a></li>
<li>chore(deps): upgrade semver to latest to resolve CVE by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8417">electron-userland/electron-builder#8417</a></li>
<li>fix: Snap publish regression by <a
href="https://github.com/lutzroeder"><code>@​lutzroeder</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8424">electron-userland/electron-builder#8424</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/8411">electron-userland/electron-builder#8411</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/ckarich"><code>@​ckarich</code></a> made
their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8409">electron-userland/electron-builder#8409</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/electron-userland/electron-builder/compare/v25.0.4...v25.0.5">https://github.com/electron-userland/electron-builder/compare/v25.0.4...v25.0.5</a></p>
<h2>v25.0.4</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(electron-updater,deb): Handle spaces in application artifact
name for deb by <a
href="https://github.com/Ryan432"><code>@​Ryan432</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8400">electron-userland/electron-builder#8400</a></li>
<li>feat: unpacked native node file by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8392">electron-userland/electron-builder#8392</a></li>
<li>feat: add custom channel in github provider by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8393">electron-userland/electron-builder#8393</a></li>
<li>fix: add disableDefaultIgnoredFiles option by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8398">electron-userland/electron-builder#8398</a></li>
<li>fix: return parent dir for local dependency by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8406">electron-userland/electron-builder#8406</a></li>
<li>fix: handle spaces in artifact name for all linux platforms instead
of only .deb by <a
href="https://github.com/xyloflake"><code>@​xyloflake</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8403">electron-userland/electron-builder#8403</a></li>
<li>docs: Fix a broken link formatting in the docs by <a
href="https://github.com/mokagio"><code>@​mokagio</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8407">electron-userland/electron-builder#8407</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/8402">electron-userland/electron-builder#8402</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Ryan432"><code>@​Ryan432</code></a> made
their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8400">electron-userland/electron-builder#8400</a></li>
<li><a href="https://github.com/xyloflake"><code>@​xyloflake</code></a>
made their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8403">electron-userland/electron-builder#8403</a></li>
<li><a href="https://github.com/mokagio"><code>@​mokagio</code></a> made
their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8407">electron-userland/electron-builder#8407</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/electron-userland/electron-builder/compare/v25.0.3...v25.0.4">https://github.com/electron-userland/electron-builder/compare/v25.0.3...v25.0.4</a></p>
<h2>v25.0.3</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: delete the symlink file when the target is empty by <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8371">electron-userland/electron-builder#8371</a></li>
<li>fix: Add global download promise to limit concurrent downloads to 1
by <a href="https://github.com/s77rt"><code>@​s77rt</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8378">electron-userland/electron-builder#8378</a></li>
<li>chore: update outdated docs for vite by <a
href="https://github.com/gweesin"><code>@​gweesin</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8379">electron-userland/electron-builder#8379</a></li>
<li>fix: upgrade app-builder-bin with downgraded appimage tool by <a
href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8387">electron-userland/electron-builder#8387</a></li>
<li>fix(windows,code-sign): cannot sign binary files in Github Actions
by <a href="https://github.com/BlackHole1"><code>@​BlackHole1</code></a>
in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8384">electron-userland/electron-builder#8384</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/8377">electron-userland/electron-builder#8377</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/s77rt"><code>@​s77rt</code></a> made
their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8378">electron-userland/electron-builder#8378</a></li>
<li><a href="https://github.com/gweesin"><code>@​gweesin</code></a> made
their first contribution in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8379">electron-userland/electron-builder#8379</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/electron-userland/electron-builder/compare/v25.0.2...v25.0.3">https://github.com/electron-userland/electron-builder/compare/v25.0.2...v25.0.3</a></p>
<h2>v25.0.2</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: adding additional logging when importing/requiring a hook
script by <a
href="https://github.com/mmaietta"><code>@​mmaietta</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8356">electron-userland/electron-builder#8356</a></li>
<li>chore(deps): update dependency mkdocs to &lt;1.7 by <a
href="https://github.com/renovate"><code>@​renovate</code></a> in <a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8350">electron-userland/electron-builder#8350</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</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.0.5</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="8e6c17124c"><code>8e6c1712</code></a>]:
<ul>
<li>app-builder-lib@25.0.5</li>
<li>dmg-builder@25.0.5</li>
</ul>
</li>
</ul>
<h2>25.0.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="12c52a8142"><code>12c52a81</code></a>,
<a
href="f7daeb9976"><code>f7daeb99</code></a>,
<a
href="5ab2bee1e1"><code>5ab2bee1</code></a>]:
<ul>
<li>app-builder-lib@25.0.4</li>
<li>dmg-builder@25.0.4</li>
</ul>
</li>
</ul>
<h2>25.0.3</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="f8fbdd122e"><code>f8fbdd12</code></a>,
<a
href="afd813265d"><code>afd81326</code></a>,
<a
href="553c737b2c"><code>553c737b</code></a>]:
<ul>
<li>app-builder-lib@25.0.3</li>
<li>builder-util@25.0.3</li>
<li>dmg-builder@25.0.3</li>
</ul>
</li>
</ul>
<h2>25.0.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8372">#8372</a>
<a
href="c85b73d7c8"><code>c85b73d7</code></a>
Thanks <a
href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - fix:
allow enabling tsc lib checking on electron-updater package</p>
</li>
<li>
<p>Updated dependencies [<a
href="2541eb62a6"><code>2541eb62</code></a>,
<a
href="2acdf65d47"><code>2acdf65d</code></a>,
<a
href="c85b73d7c8"><code>c85b73d7</code></a>,
<a
href="54c1059b96"><code>54c1059b</code></a>,
<a
href="2a0ea65caa"><code>2a0ea65c</code></a>]:</p>
<ul>
<li>app-builder-lib@25.0.2</li>
<li>builder-util@25.0.2</li>
<li>dmg-builder@25.0.2</li>
</ul>
</li>
</ul>
<h2>25.0.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>Updated dependencies [<a
href="372b046bec"><code>372b046b</code></a>,
<a
href="089dd6396c"><code>089dd639</code></a>,
<a
href="578a7e1a0f"><code>578a7e1a</code></a>]:
<ul>
<li>app-builder-lib@25.0.1</li>
<li>builder-util@25.0.1</li>
<li>dmg-builder@25.0.1</li>
</ul>
</li>
</ul>
<h2>25.0.0</h2>
<h3>Minor Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8150">#8150</a>
<a
href="f4e6ae2931"><code>f4e6ae29</code></a>
Thanks <a
href="https://github.com/mmaietta"><code>@​mmaietta</code></a>! - feat:
add functionality to just publish artifacts</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d5d9f3f9aa"><code>d5d9f3f</code></a>
chore(deploy): Release v25.0.5 (electron-updater@6.3.4) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8411">#8411</a>)</li>
<li><a
href="de1ea759d3"><code>de1ea75</code></a>
Revert &quot;feat: allow <code>riscv64</code> support via custom
electron dist (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8143">#8143</a>)&quot;
(<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8427">#8427</a>)</li>
<li><a
href="b3068954d9"><code>b306895</code></a>
feat: allow <code>riscv64</code> support via custom electron dist (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8143">#8143</a>)</li>
<li><a
href="1dcf6bced4"><code>1dcf6bc</code></a>
chore(deploy): Release v25.0.4 (electron-updater@6.3.3) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8402">#8402</a>)</li>
<li><a
href="84f2909909"><code>84f2909</code></a>
chore(deploy): Release v25.0.3 (electron-updater@6.3.2) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8377">#8377</a>)</li>
<li><a
href="b20496b813"><code>b20496b</code></a>
chore(deploy): Release v25.0.2 (electron-updater@6.3.1) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8357">#8357</a>)</li>
<li><a
href="c85b73d7c8"><code>c85b73d</code></a>
fix: allow typescript typechecking for electron-updater
<code>.d.ts</code> (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8372">#8372</a>)</li>
<li><a
href="fb1666997b"><code>fb16669</code></a>
chore(deploy): Release v25.0.1 (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8343">#8343</a>)</li>
<li><a
href="bfe4ecc2bc"><code>bfe4ecc</code></a>
chore(deploy): Release v25.0.0 (electron-updater@6.3.0) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder/issues/8337">#8337</a>)</li>
<li><a
href="1320c0e6ab"><code>1320c0e</code></a>
chore(deploy): Release v25.0.0-alpha.13 (electron-updater@6.3.0-alpha.8)
(alp...</li>
<li>Additional commits viewable in <a
href="https://github.com/electron-userland/electron-builder/commits/v25.0.5/packages/electron-builder">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-06 16:26:29 -07:00
dependabot[bot]
bd70537bff
Bump @chromatic-com/storybook from 1.8.0 to 1.9.0 in the storybook group (#339)
Bumps the storybook group with 1 update:
[@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests).

Updates `@chromatic-com/storybook` from 1.8.0 to 1.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chromaui/addon-visual-tests/releases"><code>@​chromatic-com/storybook</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.9.0</h2>
<h4>🚀 Enhancement</h4>
<ul>
<li>Relay client-side fetch requests to the server using the Storybook
channel API <a
href="https://redirect.github.com/chromaui/addon-visual-tests/pull/331">#331</a>
(<a
href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li>
</ul>
<h4>Authors: 1</h4>
<ul>
<li>Gert Hengeveld (<a
href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/chromaui/addon-visual-tests/blob/main/CHANGELOG.md"><code>@​chromatic-com/storybook</code>'s
changelog</a>.</em></p>
<blockquote>
<h1>v1.9.0 (Fri Sep 06 2024)</h1>
<h4>🚀 Enhancement</h4>
<ul>
<li>Relay client-side fetch requests to the server using the Storybook
channel API <a
href="https://redirect.github.com/chromaui/addon-visual-tests/pull/331">#331</a>
(<a
href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li>
</ul>
<h4>Authors: 1</h4>
<ul>
<li>Gert Hengeveld (<a
href="https://github.com/ghengeveld"><code>@​ghengeveld</code></a>)</li>
</ul>
<hr />
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="6b99afbc49"><code>6b99afb</code></a>
Bump version to: 1.9.0 [skip ci]</li>
<li><a
href="51be970546"><code>51be970</code></a>
Update CHANGELOG.md [skip ci]</li>
<li><a
href="f0c702ffc6"><code>f0c702f</code></a>
Merge pull request <a
href="https://redirect.github.com/chromaui/addon-visual-tests/issues/331">#331</a>
from chromaui/312-api-channel-proxy</li>
<li><a
href="67b13f2aa6"><code>67b13f2</code></a>
Merge branch 'main' into 312-api-channel-proxy</li>
<li><a
href="9277872cd8"><code>9277872</code></a>
Merge branch 'main' into 312-api-channel-proxy</li>
<li><a
href="d094e1f7ed"><code>d094e1f</code></a>
Remove unnecessary key prop</li>
<li><a
href="b706651750"><code>b706651</code></a>
Add tests for ChannelFetch</li>
<li><a
href="d5af903ea8"><code>d5af903</code></a>
Improve abortSignal handling</li>
<li><a
href="2f1d25b8a6"><code>2f1d25b</code></a>
Move event names to constants file</li>
<li><a
href="6f481f3377"><code>6f481f3</code></a>
Merge branch 'main' into 312-api-channel-proxy</li>
<li>Additional commits viewable in <a
href="https://github.com/chromaui/addon-visual-tests/compare/v1.8.0...v1.9.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@chromatic-com/storybook&package-manager=npm_and_yarn&previous-version=1.8.0&new-version=1.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-06 16:25:55 -07:00
Evan Simkowitz
072730f7eb
Table of contents for markdown preview (#323)
Adds a table of contents in the markdown preview, with a button in the
header to toggle whether to show the TOC. When a user clicks one of the
TOC elements, the preview will scroll to the corresponding heading.

I've also cleaned up some MD preview styling that was inconsistent and
causing the preview to overflow unnecessarily. This also fixes some
terminology in the preview code.

<img width="574" alt="image"
src="https://github.com/user-attachments/assets/abb18ba9-21d3-4315-bdc3-e4bdcca39a4c">
2024-09-04 21:15:39 -07:00
Evan Simkowitz
9b720ef455
bump again 2024-09-03 22:19:17 -07:00
Evan Simkowitz
558fda1253
bump version again after autoupdate fix 2024-09-03 20:17:02 -07:00
Evan Simkowitz
c02bf78e82
Bump version to test auto update on new plats (#312) 2024-09-03 18:48:53 -07:00
dependabot[bot]
b6c0c38652
Bump @tanstack/react-table from 8.20.1 to 8.20.5 in the prod-dependencies group (#297)
Bumps the prod-dependencies group with 1 update:
[@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table).

Updates `@tanstack/react-table` from 8.20.1 to 8.20.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/table/releases"><code>@​tanstack/react-table</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v8.20.5</h2>
<p>Version 8.20.5 - 8/24/24, 11:37 PM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>table-core: allow searching of numbers (<a
href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5718">#5718</a>)
(237b1c4) by GaganSingh7</li>
</ul>
<h3>Docs</h3>
<ul>
<li>vue: add information about <code>shallowRef</code> for reactive data
(<a
href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5706">#5706</a>)
(58913b6) by Ola Alsaker</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/table-core</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/angular-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/lit-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/qwik-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/react-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/solid-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/svelte-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/vue-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
<li><code>@​tanstack/react-table-devtools</code><a
href="https://github.com/8"><code>@​8</code></a>.20.5</li>
</ul>
<h2>v8.20.4</h2>
<p>Version 8.20.4 - 8/9/24, 12:41 PM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>make normal JS-getter work, make reactivity a non-breaking change
(<a
href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5702">#5702</a>)
(5110aa9) by Ola Alsaker</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/vue-table</code><a
href="https://github.com/8"><code>@​8</code></a>.20.4</li>
</ul>
<h2>v8.20.3</h2>
<p>Version 8.20.3 - 8/9/24, 12:35 AM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>major performance bug in Vue-adapter (<a
href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5698">#5698</a>)
(fb2d72f) by Ola Alsaker</li>
</ul>
<h3>Docs</h3>
<ul>
<li>correct broken link to row models section in table guide (<a
href="https://github.com/TanStack/table/tree/HEAD/packages/react-table/issues/5699">#5699</a>)
(836cbb7) by Mauricio Piber</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ab2819cb53"><code>ab2819c</code></a>
release: v8.20.5</li>
<li>See full diff in <a
href="https://github.com/TanStack/table/commits/v8.20.5/packages/react-table">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@tanstack/react-table&package-manager=npm_and_yarn&previous-version=8.20.1&new-version=8.20.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-30 09:48:34 -07:00
dependabot[bot]
e5603b27e0
Bump @chromatic-com/storybook from 1.7.0 to 1.8.0 in the storybook group (#296)
Bumps the storybook group with 1 update:
[@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests).

Updates `@chromatic-com/storybook` from 1.7.0 to 1.8.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chromaui/addon-visual-tests/releases"><code>@​chromatic-com/storybook</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v1.8.0</h2>
<h4>🚀 Enhancement</h4>
<ul>
<li>Add <code>paramKey: &quot;chromatic&quot;</code> to allow disabling
the VTA panel through story parameters <a
href="https://redirect.github.com/chromaui/addon-visual-tests/pull/334">#334</a>
(<a href="https://github.com/mellm0"><code>@​mellm0</code></a>)</li>
</ul>
<h4>Authors: 1</h4>
<ul>
<li>Mell (<a
href="https://github.com/mellm0"><code>@​mellm0</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/chromaui/addon-visual-tests/blob/main/CHANGELOG.md"><code>@​chromatic-com/storybook</code>'s
changelog</a>.</em></p>
<blockquote>
<h1>v1.8.0 (Thu Aug 29 2024)</h1>
<h4>🚀 Enhancement</h4>
<ul>
<li>Add <code>paramKey: &quot;chromatic&quot;</code> to allow disabling
the VTA panel through story parameters <a
href="https://redirect.github.com/chromaui/addon-visual-tests/pull/334">#334</a>
(<a href="https://github.com/mellm0"><code>@​mellm0</code></a>)</li>
</ul>
<h4>Authors: 1</h4>
<ul>
<li>Mell (<a
href="https://github.com/mellm0"><code>@​mellm0</code></a>)</li>
</ul>
<hr />
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="b781bdfcc7"><code>b781bdf</code></a>
Bump version to: 1.8.0 [skip ci]</li>
<li><a
href="cd6d96984b"><code>cd6d969</code></a>
Update CHANGELOG.md [skip ci]</li>
<li><a
href="97ad16438c"><code>97ad164</code></a>
Merge pull request <a
href="https://redirect.github.com/chromaui/addon-visual-tests/issues/334">#334</a>
from mellm0/add-param-key</li>
<li><a
href="ca3d66e836"><code>ca3d66e</code></a>
chore: change param key to chromatic</li>
<li><a
href="c58f4390aa"><code>c58f439</code></a>
Merge branch 'main' into add-param-key</li>
<li><a
href="08d83bacfe"><code>08d83ba</code></a>
chore: add param key</li>
<li>See full diff in <a
href="https://github.com/chromaui/addon-visual-tests/compare/v1.7.0...v1.8.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@chromatic-com/storybook&package-manager=npm_and_yarn&previous-version=1.7.0&new-version=1.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-30 09:48:25 -07:00
dependabot[bot]
94b7189602
Bump the dev-dependencies group with 4 updates (#295)
Bumps the dev-dependencies group with 4 updates:
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node),
[@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react),
[tsx](https://github.com/privatenumber/tsx) and
[typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint).

Updates `@types/node` from 22.5.0 to 22.5.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.4 to 18.3.5
<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 `tsx` from 4.18.0 to 4.19.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/privatenumber/tsx/releases">tsx's
releases</a>.</em></p>
<blockquote>
<h2>v4.19.0</h2>
<h1><a
href="https://github.com/privatenumber/tsx/compare/v4.18.0...v4.19.0">4.19.0</a>
(2024-08-27)</h1>
<h3>Features</h3>
<ul>
<li><strong>watch:</strong> deprecate ignore flag in favor or exclude
flag (<a
href="157c3ec6bc">157c3ec</a>)</li>
</ul>
<hr />
<p>This release is also available on:</p>
<ul>
<li><a href="https://www.npmjs.com/package/tsx/v/4.19.0"><code>npm
package (@​latest dist-tag)</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="157c3ec6bc"><code>157c3ec</code></a>
feat(watch): deprecate ignore flag in favor or exclude flag</li>
<li>See full diff in <a
href="https://github.com/privatenumber/tsx/compare/v4.18.0...v4.19.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `typescript-eslint` from 8.2.0 to 8.3.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.3.0</h2>
<h2>8.3.0 (2024-08-26)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-deprecation] add rule (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9783">#9783</a>)</li>
<li><strong>typescript-estree:</strong> replace <code>globby</code> w/
<code>fast-glob</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9518">#9518</a>)</li>
<li><strong>typescript-estree:</strong> reload project service once when
file config isn't found (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9853">#9853</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>ast-spec:</strong> use <code>Expression</code> in argument
of <code>ThrowStatement</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9632">#9632</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-template-expression]
add missing parentheses in autofix (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8673">#8673</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-parameters]
check mapped alias type arguments (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9741">#9741</a>)</li>
<li><strong>utils:</strong> add missing
<code>TSSatisfiesExpression</code> in
<code>RuleListenerBaseSelectors</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9832">#9832</a>)</li>
<li><strong>utils:</strong> add <code>TSDeclareFunction</code> to
<code>functionTypeTypes</code> (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/9788">#9788</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Daichi Kamiyama <a
href="https://github.com/dak2"><code>@​dak2</code></a></li>
<li>Josh Goldberg </li>
<li>Kim Sang Du <a
href="https://github.com/developer-bandi"><code>@​developer-bandi</code></a></li>
<li>Sukka</li>
<li>Vida Xie <a
href="https://github.com/9romise"><code>@​9romise</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.3.0 (2024-08-26)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-deprecation] add rule</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>Abraham Guo</li>
<li>Daichi Kamiyama</li>
<li>Josh Goldberg </li>
<li>Kim Sang Du</li>
<li>Sukka</li>
<li>Vida Xie</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ef2eab12e8"><code>ef2eab1</code></a>
chore(release): publish 8.3.0</li>
<li><a
href="d4f69435cc"><code>d4f6943</code></a>
chore: enable eslint-plugin-perfectionist on typescript-eslint package
(<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/9851">#9851</a>)</li>
<li><a
href="57e4120e03"><code>57e4120</code></a>
feat(eslint-plugin): [no-deprecation] add rule (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/9783">#9783</a>)</li>
<li>See full diff in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.3.0/packages/typescript-eslint">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-30 09:48:17 -07:00
sawka
afcbb35341 countGraphemes and add debug package 2024-08-28 17:12:52 -07:00
Evan Simkowitz
3693219a8f
upgrade yarn 2024-08-24 15:23:33 -07:00
dependabot[bot]
3e14eb2514
Bump the prod-dependencies group with 2 updates (#266) 2024-08-23 17:43:53 -07:00
dependabot[bot]
e0f355a849
Bump @chromatic-com/storybook from 1.6.1 to 1.7.0 in the storybook group (#265) 2024-08-23 17:43:41 -07:00
dependabot[bot]
f715d19780
Bump the dev-dependencies group with 4 updates (#264) 2024-08-23 17:43:09 -07:00
dependabot[bot]
27d22c2f7e
Bump the electron group with 2 updates (#267)
Bumps the electron group with 2 updates:
[electron-updater](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater)
and [electron](https://github.com/electron/electron).

Updates `electron-updater` from 6.3.3 to 6.3.4
<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.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8417">#8417</a>
<a
href="e77de9f661"><code>e77de9f6</code></a>
Thanks <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! -
update semver to latest</p>
</li>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8409">#8409</a>
<a
href="5fae1cf3be"><code>5fae1cf3</code></a>
Thanks <a href="https://github.com/ckarich"><code>@​ckarich</code></a>!
- fix: windows signature verification special chars</p>
</li>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8282">#8282</a>
<a
href="15ce5b4164"><code>15ce5b41</code></a>
Thanks <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! - fix
aborted event</p>
</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.4</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8417">#8417</a>
<a
href="e77de9f661"><code>e77de9f6</code></a>
Thanks <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! -
update semver to latest</p>
</li>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8409">#8409</a>
<a
href="5fae1cf3be"><code>5fae1cf3</code></a>
Thanks <a href="https://github.com/ckarich"><code>@​ckarich</code></a>!
- fix: windows signature verification special chars</p>
</li>
<li>
<p><a
href="https://redirect.github.com/electron-userland/electron-builder/pull/8282">#8282</a>
<a
href="15ce5b4164"><code>15ce5b41</code></a>
Thanks <a
href="https://github.com/beyondkmp"><code>@​beyondkmp</code></a>! - fix
aborted event</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d5d9f3f9aa"><code>d5d9f3f</code></a>
chore(deploy): Release v25.0.5 (electron-updater@6.3.4) (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8411">#8411</a>)</li>
<li><a
href="e77de9f661"><code>e77de9f</code></a>
chore(deps): upgrade semver to latest to resolve CVE (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8417">#8417</a>)</li>
<li><a
href="15ce5b4164"><code>15ce5b4</code></a>
fix: change <code>abort</code> listener to <code>aborted</code> event
(<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8282">#8282</a>)</li>
<li><a
href="5fae1cf3be"><code>5fae1cf</code></a>
fix: windows signature verification special chars (<a
href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater/issues/8409">#8409</a>)</li>
<li>See full diff in <a
href="https://github.com/electron-userland/electron-builder/commits/electron-updater@6.3.4/packages/electron-updater">compare
view</a></li>
</ul>
</details>
<br />

Updates `electron` from 31.4.0 to 32.0.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/electron/electron/releases">electron's
releases</a>.</em></p>
<blockquote>
<h2>electron v32.0.1</h2>
<h1>Release Notes for v32.0.1</h1>
<h2>Other Changes</h2>
<ul>
<li>Security: cherry-pick 9797576 from v8 <a
href="https://redirect.github.com/electron/electron/pull/43384">#43384</a></li>
</ul>
<h2>electron v32.0.0</h2>
<h1>Release Notes for v32.0.0</h1>
<h2>Stack Upgrades</h2>
<ul>
<li>Chromium<code>128.0.6613.36</code>
<ul>
<li><a href="https://developer.chrome.com/blog/new-in-chrome-128/">New
in 128</a></li>
<li><a href="https://developer.chrome.com/blog/new-in-chrome-127/">New
in 127</a></li>
</ul>
</li>
<li>Node <code>20.16.0</code>
<ul>
<li><a href="https://nodejs.org/en/blog/release/v20.16.0/">Node 20.16.0
blog post</a></li>
</ul>
</li>
<li>V8 <code>12.8</code></li>
</ul>
<h2>Breaking Changes</h2>
<ul>
<li>Removed nonstandard <code>File.path</code> extension from the Web
<code>File</code> API. <a
href="https://redirect.github.com/electron/electron/pull/42053">#42053</a></li>
<li>Added the following existing navigation related APIs to
<code>webcontents.navigationHistory</code>: <code>canGoBack</code>,
<code>goBack</code>, <code>canGoForward</code>, <code>goForward</code>,
<code>canGoToOffset</code>, <code>goToOffset</code>, <code>clear</code>.
<a
href="https://redirect.github.com/electron/electron/pull/41752">#41752</a></li>
</ul>
<h2>Features</h2>
<h3>Additions</h3>
<ul>
<li>Added <code>DownloadItem.getCurrentBytesPerSecond()</code>,
<code>DownloadItem.getPercentComplete()</code>,
<code>DownloadItem.getEndTime()</code>. <a
href="https://redirect.github.com/electron/electron/pull/42913">#42913</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42914">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42915">31</a>)<!--
raw HTML omitted --></li>
<li>Added <code>cumulativeCPUUsage</code> to AppMetrics and CPUUsage. <a
href="https://redirect.github.com/electron/electron/pull/41819">#41819</a></li>
<li>Added a new property <code>prefersReducedTransparency</code> to
<code>nativeTheme</code>, which indicates whether the user has chosen to
reduce OS-level transparency via system accessibility settings. <a
href="https://redirect.github.com/electron/electron/pull/43024">#43024</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43138">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43137">31</a>)<!--
raw HTML omitted --></li>
<li>Enabled the Windows Control Overlay API on Linux. <a
href="https://redirect.github.com/electron/electron/pull/42681">#42681</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42683">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42682">31</a>)<!--
raw HTML omitted --></li>
<li>Expose <code>systemPreferences</code> to
<code>utilityProcess</code>. <a
href="https://redirect.github.com/electron/electron/pull/42599">#42599</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42600">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42598">31</a>)<!--
raw HTML omitted --></li>
</ul>
<h3>Improvements</h3>
<ul>
<li>Aligned failure pathway in File System Access API with upstream when
attempting to open a file or directory in a blocked path. <a
href="https://redirect.github.com/electron/electron/pull/42993">#42993</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43162">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42994">31</a>)<!--
raw HTML omitted --></li>
<li>Extended <code>WebContentsView</code> to accept pre-existing
<code>webContents</code> object. <a
href="https://redirect.github.com/electron/electron/pull/42086">#42086</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42319">31</a>)<!--
raw HTML omitted --></li>
<li>Improved error messages when <code>ses.cookies.set</code> fails. <a
href="https://redirect.github.com/electron/electron/pull/42362">#42362</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42399">29</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42398">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42400">31</a>)<!--
raw HTML omitted --></li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Don't check for Desktop Environment in setProgressBar and
setBadgeCount. <a
href="https://redirect.github.com/electron/electron/pull/41211">#41211</a></li>
<li>Fixed an error where a minimized or hidden window would thrown an
unresponsive error in the main process. <a
href="https://redirect.github.com/electron/electron/pull/43053">#43053</a></li>
</ul>
<h3>Also in earlier versions...</h3>
<ul>
<li>BrowserWindow.show() now correctly restores focus to inactive apps
on macOS. <a
href="https://redirect.github.com/electron/electron/pull/42300">#42300</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42306">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42305">31</a>)<!--
raw HTML omitted --></li>
<li>Electron doesn't paint on offscreen-render mode after gpu process
crashed. <a
href="https://redirect.github.com/electron/electron/pull/41904">#41904</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/41923">29</a>,
<a
href="https://redirect.github.com/electron/electron/pull/41925">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/41924">31</a>)<!--
raw HTML omitted --></li>
<li>Fix: fixed the <code>npm run lint</code> not working on Windows. <a
href="https://redirect.github.com/electron/electron/pull/42905">#42905</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42906">31</a>)<!--
raw HTML omitted --></li>
<li>Fixed a crash in <code>addChildView</code> if a view is added as its
own child. <a
href="https://redirect.github.com/electron/electron/pull/42067">#42067</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42107">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42108">31</a>)<!--
raw HTML omitted --></li>
<li>Fixed a crash that could occur in some DevTools extensions
containing draggable regions. <a
href="https://redirect.github.com/electron/electron/pull/43199">#43199</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43200">31</a>)<!--
raw HTML omitted --></li>
<li>Fixed a crash when the same <code>WebContentsView</code> is added
via <code>addChildView</code> multiple times. <a
href="https://redirect.github.com/electron/electron/pull/42085">#42085</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42115">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42116">31</a>)<!--
raw HTML omitted --></li>
<li>Fixed a focus issue when calling
<code>BrowserWindow.setTopBrowserView</code>. <a
href="https://redirect.github.com/electron/electron/pull/42733">#42733</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/42735">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/42734">31</a>)<!--
raw HTML omitted --></li>
<li>Fixed a potential crash when removing notifications on Windows. <a
href="https://redirect.github.com/electron/electron/pull/43060">#43060</a>
<!-- raw HTML omitted -->(Also in <a
href="https://redirect.github.com/electron/electron/pull/43059">30</a>,
<a
href="https://redirect.github.com/electron/electron/pull/43061">31</a>)<!--
raw HTML omitted --></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/electron/electron/blob/main/docs/breaking-changes.md">electron's
changelog</a>.</em></p>
<blockquote>
<h1>Breaking Changes</h1>
<p>Breaking changes will be documented here, and deprecation warnings
added to JS code where possible, at least <a
href="https://github.com/electron/electron/blob/main/docs/tutorial/electron-versioning.md#semver">one
major version</a> before the change is made.</p>
<h3>Types of Breaking Changes</h3>
<p>This document uses the following convention to categorize breaking
changes:</p>
<ul>
<li><strong>API Changed:</strong> An API was changed in such a way that
code that has not been updated is guaranteed to throw an exception.</li>
<li><strong>Behavior Changed:</strong> The behavior of Electron has
changed, but not in such a way that an exception will necessarily be
thrown.</li>
<li><strong>Default Changed:</strong> Code depending on the old default
may break, not necessarily throwing an exception. The old behavior can
be restored by explicitly specifying the value.</li>
<li><strong>Deprecated:</strong> An API was marked as deprecated. The
API will continue to function, but will emit a deprecation warning, and
will be removed in a future release.</li>
<li><strong>Removed:</strong> An API or feature was removed, and is no
longer supported by Electron.</li>
</ul>
<h2>Planned Breaking API Changes (33.0)</h2>
<h3>Behavior Changed: <code>webContents</code> property on
<code>login</code> on <code>app</code></h3>
<p>The <code>webContents</code> property in the <code>login</code> event
from <code>app</code> will be <code>null</code>
when the event is triggered for requests from the <a
href="https://github.com/electron/electron/blob/main/docs/api/utility-process.md">utility
process</a>
created with <code>respondToAuthRequestsFromMainProcess</code>
option.</p>
<h3>Deprecated: <code>textured</code> option in
<code>BrowserWindowConstructorOption.type</code></h3>
<p>The <code>textured</code> option of <code>type</code> in
<code>BrowserWindowConstructorOptions</code> has been deprecated with no
replacement. This option relied on the <a
href="https://developer.apple.com/documentation/appkit/nswindowstylemask/nswindowstylemasktexturedbackground"><code>NSWindowStyleMaskTexturedBackground</code></a>
style mask on macOS, which has been deprecated with no alternative.</p>
<h3>Removed: macOS 10.15 support</h3>
<p>macOS 10.15 (Catalina) is no longer supported by <a
href="https://chromium-review.googlesource.com/c/chromium/src/+/5734361">Chromium</a>.</p>
<p>Older versions of Electron will continue to run on Catalina, but
macOS 11 (Big Sur)
or later will be required to run Electron v33.0.0 and higher.</p>
<h3>Deprecated:
<code>systemPreferences.accessibilityDisplayShouldReduceTransparency</code></h3>
<p>The
<code>systemPreferences.accessibilityDisplayShouldReduceTransparency</code>
property is now deprecated in favor of the new
<code>nativeTheme.prefersReducedTransparency</code>, which provides
identical information and works cross-platform.</p>
<pre lang="js"><code>// Deprecated
const shouldReduceTransparency =
systemPreferences.accessibilityDisplayShouldReduceTransparency
<p>// Replace with:<br />
const prefersReducedTransparency =
nativeTheme.prefersReducedTransparency<br />
</code></pre></p>
<h2>Planned Breaking API Changes (32.0)</h2>
<h3>Removed: <code>File.path</code></h3>
<p>The nonstandard <code>path</code> property of the Web
<code>File</code> object was added in an early version of Electron as a
convenience method for working with native files when doing everything
in the renderer was more common. However, it represents a deviation from
the standard and poses a minor security risk as well, so beginning in
Electron 32.0 it has been removed in favor of the <a
href="https://github.com/electron/electron/blob/main/docs/api/web-utils.md#webutilsgetpathforfilefile"><code>webUtils.getPathForFile</code></a>
method.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a577d569ec"><code>a577d56</code></a>
chore: cherry-pick 9797576 from v8 (<a
href="https://redirect.github.com/electron/electron/issues/43384">#43384</a>)</li>
<li><a
href="915c7bd9fc"><code>915c7bd</code></a>
refactor: remove unused SetWMSpecState (<a
href="https://redirect.github.com/electron/electron/issues/43364">#43364</a>)</li>
<li><a
href="3f16924182"><code>3f16924</code></a>
chore: remove unused method Erase() (<a
href="https://redirect.github.com/electron/electron/issues/43363">#43363</a>)</li>
<li><a
href="9e421e8f43"><code>9e421e8</code></a>
docs: add docs API history (<a
href="https://redirect.github.com/electron/electron/issues/43362">#43362</a>)</li>
<li><a
href="2471ebf39c"><code>2471ebf</code></a>
build: use smaller instances for gn-check (<a
href="https://redirect.github.com/electron/electron/issues/43358">#43358</a>)</li>
<li><a
href="417348130c"><code>4173481</code></a>
docs: expand dialog window to <code>BaseWindow</code> (<a
href="https://redirect.github.com/electron/electron/issues/43338">#43338</a>)</li>
<li><a
href="8c1be5ade2"><code>8c1be5a</code></a>
feat: support app#login event for utility process net requests (<a
href="https://redirect.github.com/electron/electron/issues/43317">#43317</a>)</li>
<li><a
href="7123b313cf"><code>7123b31</code></a>
feat: accept-encoding zstd (<a
href="https://redirect.github.com/electron/electron/issues/43300">#43300</a>)</li>
<li><a
href="588856ed27"><code>588856e</code></a>
chore: bump chromium to 128.0.6613.36 (32-x-y) (<a
href="https://redirect.github.com/electron/electron/issues/43328">#43328</a>)</li>
<li><a
href="0c72474bd4"><code>0c72474</code></a>
fix: blank page when printing pdf (<a
href="https://redirect.github.com/electron/electron/issues/43326">#43326</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/electron/electron/compare/v31.4.0...v32.0.1">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-08-23 10:23:51 -07:00
Evan Simkowitz
5c00fc6e78
Fix sharp import issue (#251)
This PR updates the window controls overlay code to remove the
dependency on `sharp`, which is a natively-compiled Node library that is
really hard to package for Electron given the way that we strip node
modules after bundling. I've replaced this with `pngjs`, which has a
smaller footprint and is still relatively fast (it doesn't need to be
perfect since it runs on the Node process instead of the browser
process).
2024-08-20 13:18:47 -07:00