Commit Graph

964 Commits

Author SHA1 Message Date
Evan Simkowitz
87d3f8d88d
add bump version workflow 2024-09-16 23:26:50 -07:00
Evan Simkowitz
e7b99d165a
Update secrets to the new Apple Developer account creds (#384) 2024-09-16 23:10:04 -07:00
Sylvie Crowe
ea19444710
Various Bug Fixes and UI Improvements (#386)
This change adds
- performance improvements for ai chat
- new ai chat user interface
- open blank files with codeedit
- fix for userinput password modal
2024-09-16 22:59:09 -07:00
Red J Adaya
09f4616ae0
button refactor (#383)
Refactored to be more flexible. Now, it has three types

- solid
- outline
- ghost

and subtypes

- green
- grey
- red
- yellow

It defaults to solid and green when no className is provided. It
concatenates defaults if custom classNames are provided.
2024-09-16 22:23:05 -07:00
sawka
dbdcc49ff2 add ws reconnect handlers -- wps + route announcements 2024-09-16 19:35:36 -07:00
Evan Simkowitz
9bf30ce121
bump send 2024-09-16 17:33:37 -07:00
Evan Simkowitz
fd6e92ee2c
Clear previous layout when applying portable layout to tab (#382) 2024-09-16 17:26:37 -07:00
Evan Simkowitz
822920bd2c
fix dirname issue 2024-09-16 15:58:35 -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
Evan Simkowitz
47995c12ad
disable TileLayout story for now 2024-09-16 13:14:06 -07:00
sawka
9873b27977 fix button colors/outlines 2024-09-16 12:26:06 -07:00
Mike Sawka
3939648bbb
fe wsh router + wsh client impl (#381) 2024-09-16 11:59:39 -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
sawka
a541c1ad10 fix publish output 2024-09-13 18:12:49 -07:00
sawka
1de9cd4468 fix help text 2024-09-13 11:52:14 -07:00
dependabot[bot]
d1152fbf9f
Bump github.com/sashabaranov/go-openai from 1.29.1 to 1.29.2 (#375)
Bumps
[github.com/sashabaranov/go-openai](https://github.com/sashabaranov/go-openai)
from 1.29.1 to 1.29.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sashabaranov/go-openai/releases">github.com/sashabaranov/go-openai's
releases</a>.</em></p>
<blockquote>
<h2>v1.29.2</h2>
<h2>What's Changed</h2>
<ul>
<li>depricated model GPT3Ada changed to GPT3Babbage002 by <a
href="https://github.com/Arundas666"><code>@​Arundas666</code></a> in <a
href="https://redirect.github.com/sashabaranov/go-openai/pull/843">sashabaranov/go-openai#843</a></li>
<li>Add refusal by <a
href="https://github.com/qhenkart"><code>@​qhenkart</code></a> in <a
href="https://redirect.github.com/sashabaranov/go-openai/pull/844">sashabaranov/go-openai#844</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/Arundas666"><code>@​Arundas666</code></a> made
their first contribution in <a
href="https://redirect.github.com/sashabaranov/go-openai/pull/843">sashabaranov/go-openai#843</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/sashabaranov/go-openai/compare/v1.29.1...v1.29.2">https://github.com/sashabaranov/go-openai/compare/v1.29.1...v1.29.2</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="194a03e763"><code>194a03e</code></a>
Add refusal (<a
href="https://redirect.github.com/sashabaranov/go-openai/issues/844">#844</a>)</li>
<li><a
href="643da8d650"><code>643da8d</code></a>
depricated model GPT3Ada changed to GPT3Babbage002 (<a
href="https://redirect.github.com/sashabaranov/go-openai/issues/843">#843</a>)</li>
<li>See full diff in <a
href="https://github.com/sashabaranov/go-openai/compare/v1.29.1...v1.29.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/sashabaranov/go-openai&package-manager=go_modules&previous-version=1.29.1&new-version=1.29.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

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


</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:58 -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
sawka
33407715a0 fix button colors, better lightbulb, button hovers 2024-09-13 10:24:16 -07:00
Sylvie Crowe
555ab07861
Add Tips Modal for Directory (#374)
This is an experimental modal to show tips. If it helps improve
discoverability, it will be improved in the future.
2024-09-13 03:36:15 -07:00
Red J Adaya
2715c2ce30
shrink tos modal and make it scrollable when vertical space is not enough (#373) 2024-09-12 23:10:18 -07:00
Red J Adaya
04924870c1
button refactor (#372) 2024-09-12 22:22:31 -07:00
Red J Adaya
b3f7e7a2b9
fix default button text color (#370) 2024-09-12 17:49:57 -07:00
Mike Sawka
174cf3d39d
flash error messages (#369) 2024-09-12 16:02:18 -07:00
Evan Simkowitz
936d4bfb30
Migrate websocket eventbus messages to wps (#367)
This migrates all remaining eventbus events sent over the websocket to
use the wps interface. WPS is more flexible for registering events and
callbacks and provides support for more reliable unsubscribes and
resubscribes.
2024-09-11 18:03:55 -07:00
Evan Simkowitz
4bfb96b001
Add a new terminal to the default tab in a new window (#368) 2024-09-11 17:39:08 -07:00
dependabot[bot]
27f1f3ecc2
Bump express from 4.19.2 to 4.20.0 (#366)
Bumps [express](https://github.com/expressjs/express) from 4.19.2 to
4.20.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/expressjs/express/releases">express's
releases</a>.</em></p>
<blockquote>
<h2>4.20.0</h2>
<h2>What's Changed</h2>
<h3>Important</h3>
<ul>
<li>IMPORTANT: The default <code>depth</code> level for parsing
URL-encoded data is now <code>32</code> (previously was
<code>Infinity</code>)</li>
<li>Remove link renderization in html while using
<code>res.redirect</code></li>
</ul>
<h3>Other Changes</h3>
<ul>
<li>4.19.2 Staging by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5561">expressjs/express#5561</a></li>
<li>remove duplicate location test for data uri by <a
href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5562">expressjs/express#5562</a></li>
<li>feat: document beta releases expectations by <a
href="https://github.com/marco-ippolito"><code>@​marco-ippolito</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5565">expressjs/express#5565</a></li>
<li>Cut down on duplicated CI runs by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5564">expressjs/express#5564</a></li>
<li>Add a Threat Model by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5526">expressjs/express#5526</a></li>
<li>Assign captain of encodeurl by <a
href="https://github.com/blakeembrey"><code>@​blakeembrey</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5579">expressjs/express#5579</a></li>
<li>Nominate jonchurch as repo captain for <code>http-errors</code>,
<code>expressjs.com</code>, <code>morgan</code>, <code>cors</code>,
<code>body-parser</code> by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5587">expressjs/express#5587</a></li>
<li>docs: update Security.md by <a
href="https://github.com/inigomarquinez"><code>@​inigomarquinez</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5590">expressjs/express#5590</a></li>
<li>docs: update triage nomination policy by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5600">expressjs/express#5600</a></li>
<li>Add CodeQL (SAST) by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5433">expressjs/express#5433</a></li>
<li>docs: add UlisesGascon as triage initiative captain by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5605">expressjs/express#5605</a></li>
<li>deps: encodeurl@~2.0.0 by <a
href="https://github.com/blakeembrey"><code>@​blakeembrey</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5569">expressjs/express#5569</a></li>
<li>skip QUERY method test by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5628">expressjs/express#5628</a></li>
<li>ignore ETAG query test on 21 and 22, reuse skip util by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5639">expressjs/express#5639</a></li>
<li>add support Node.js@22 in the CI by <a
href="https://github.com/mertcanaltin"><code>@​mertcanaltin</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5627">expressjs/express#5627</a></li>
<li>doc: add table of contents, tc/triager lists to readme by <a
href="https://github.com/mertcanaltin"><code>@​mertcanaltin</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5619">expressjs/express#5619</a></li>
<li>List and sort all projects, add captains by <a
href="https://github.com/blakeembrey"><code>@​blakeembrey</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5653">expressjs/express#5653</a></li>
<li>docs: add <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
as captain for cookie-parser by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5666">expressjs/express#5666</a></li>
<li> bring back query tests for node 21 by <a
href="https://github.com/ctcpip"><code>@​ctcpip</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5690">expressjs/express#5690</a></li>
<li>[v4] Deprecate <code>res.clearCookie</code> accepting
<code>options.maxAge</code> and <code>options.expires</code> by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5672">expressjs/express#5672</a></li>
<li>skip QUERY tests for Node 21 only, still not supported by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5695">expressjs/express#5695</a></li>
<li>📝 update people, add ctcpip to TC by <a
href="https://github.com/ctcpip"><code>@​ctcpip</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5683">expressjs/express#5683</a></li>
<li>remove minor version pinning from ci by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5722">expressjs/express#5722</a></li>
<li>Fix link variable use in attribution section of CODE OF CONDUCT by
<a href="https://github.com/IamLizu"><code>@​IamLizu</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5762">expressjs/express#5762</a></li>
<li>Replace Appveyor windows testing with GHA by <a
href="https://github.com/jonchurch"><code>@​jonchurch</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5599">expressjs/express#5599</a></li>
<li>Add OSSF Scorecard badge by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5436">expressjs/express#5436</a></li>
<li>update scorecard link by <a
href="https://github.com/bjohansebas"><code>@​bjohansebas</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5814">expressjs/express#5814</a></li>
<li>Nominate <a
href="https://github.com/IamLizu"><code>@​IamLizu</code></a> to the
triage team by <a
href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a>
in <a
href="https://redirect.github.com/expressjs/express/pull/5836">expressjs/express#5836</a></li>
<li>deps: path-to-regexp@0.1.8 by <a
href="https://github.com/blakeembrey"><code>@​blakeembrey</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5603">expressjs/express#5603</a></li>
<li>docs: specify new instructions for <code>question</code> and
<code>discuss</code> by <a
href="https://github.com/IamLizu"><code>@​IamLizu</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5835">expressjs/express#5835</a></li>
<li>4.x: Upgrade <code>merge-descriptors</code> dependency by <a
href="https://github.com/RobinTail"><code>@​RobinTail</code></a> in <a
href="https://redirect.github.com/expressjs/express/pull/5781">expressjs/express#5781</a></li>
<li>path-to-regexp@0.1.10 by <a
href="https://github.com/blakeembrey"><code>@​blakeembrey</code></a> in
<a
href="https://redirect.github.com/expressjs/express/pull/5902">expressjs/express#5902</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/marco-ippolito"><code>@​marco-ippolito</code></a>
made their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5565">expressjs/express#5565</a></li>
<li><a
href="https://github.com/inigomarquinez"><code>@​inigomarquinez</code></a>
made their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5590">expressjs/express#5590</a></li>
<li><a
href="https://github.com/mertcanaltin"><code>@​mertcanaltin</code></a>
made their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5627">expressjs/express#5627</a></li>
<li><a href="https://github.com/ctcpip"><code>@​ctcpip</code></a> made
their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5690">expressjs/express#5690</a></li>
<li><a
href="https://github.com/bjohansebas"><code>@​bjohansebas</code></a>
made their first contribution in <a
href="https://redirect.github.com/expressjs/express/pull/5814">expressjs/express#5814</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/expressjs/express/compare/4.19.1...4.20.0">https://github.com/expressjs/express/compare/4.19.1...4.20.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/expressjs/express/blob/master/History.md">express's
changelog</a>.</em></p>
<blockquote>
<h1>4.20.0 / 2024-09-10</h1>
<ul>
<li>deps: serve-static@0.16.0
<ul>
<li>Remove link renderization in html while redirecting</li>
</ul>
</li>
<li>deps: send@0.19.0
<ul>
<li>Remove link renderization in html while redirecting</li>
</ul>
</li>
<li>deps: body-parser@0.6.0
<ul>
<li>add <code>depth</code> option to customize the depth level in the
parser</li>
<li>IMPORTANT: The default <code>depth</code> level for parsing
URL-encoded data is now <code>32</code> (previously was
<code>Infinity</code>)</li>
</ul>
</li>
<li>Remove link renderization in html while using
<code>res.redirect</code></li>
<li>deps: path-to-regexp@0.1.10
<ul>
<li>Adds support for named matching groups in the routes using a
regex</li>
<li>Adds backtracking protection to parameters without regexes
defined</li>
</ul>
</li>
<li>deps: encodeurl@~2.0.0
<ul>
<li>Removes encoding of <code>\</code>, <code>|</code>, and
<code>^</code> to align better with URL spec</li>
</ul>
</li>
<li>Deprecate passing <code>options.maxAge</code> and
<code>options.expires</code> to <code>res.clearCookie</code>
<ul>
<li>Will be ignored in v5, clearCookie will set a cookie with an expires
in the past to instruct clients to delete the cookie</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="21df421ebc"><code>21df421</code></a>
4.20.0</li>
<li><a
href="4c9ddc1c47"><code>4c9ddc1</code></a>
feat: upgrade to serve-static@0.16.0</li>
<li><a
href="9ebe5d500d"><code>9ebe5d5</code></a>
feat: upgrade to send@0.19.0 (<a
href="https://redirect.github.com/expressjs/express/issues/5928">#5928</a>)</li>
<li><a
href="ec4a01b6b8"><code>ec4a01b</code></a>
feat: upgrade to body-parser@1.20.3 (<a
href="https://redirect.github.com/expressjs/express/issues/5926">#5926</a>)</li>
<li><a
href="54271f69b5"><code>54271f6</code></a>
fix: don't render redirect values in anchor href</li>
<li><a
href="125bb742a3"><code>125bb74</code></a>
path-to-regexp@0.1.10 (<a
href="https://redirect.github.com/expressjs/express/issues/5902">#5902</a>)</li>
<li><a
href="2a980ad160"><code>2a980ad</code></a>
merge-descriptors@1.0.3 (<a
href="https://redirect.github.com/expressjs/express/issues/5781">#5781</a>)</li>
<li><a
href="a3e7e05e0a"><code>a3e7e05</code></a>
docs: specify new instructions for <code>question</code> and
<code>discuss</code></li>
<li><a
href="c5addb9a17"><code>c5addb9</code></a>
deps: path-to-regexp@0.1.8 (<a
href="https://redirect.github.com/expressjs/express/issues/5603">#5603</a>)</li>
<li><a
href="e35380a39d"><code>e35380a</code></a>
docs: add <a
href="https://github.com/IamLizu"><code>@​IamLizu</code></a> to the
triage team (<a
href="https://redirect.github.com/expressjs/express/issues/5836">#5836</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/expressjs/express/compare/4.19.2...4.20.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=express&package-manager=npm_and_yarn&previous-version=4.19.2&new-version=4.20.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 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-11 16:44:38 -07:00
Evan Simkowitz
747a3d6886
add react-dom typedefs 2024-09-11 14:54:23 -07:00
Evan Simkowitz
891fab7422
fix type error in emain 2024-09-11 11:28:26 -07:00
Mike Sawka
e46be65baf
guard wsh completion installation by prereqs (#364) 2024-09-11 11:14:38 -07:00
sawka
912fcca865 bump to v0.1.12 2024-09-11 11:13:10 -07:00
Red J Adaya
df2af04a6e
telemetry fix (#365) 2024-09-11 09:26:43 -07:00
Red J Adaya
c3a02d7e33
revert tabs scroll timing (#363) 2024-09-10 23:22:32 -07:00
Red J Adaya
f6fc0125fd
fix issue where tabs are immediately visible while they're still stacked on load (#362)
This fixes the visual bug where the active tab seems to be the first tab
and then switches to the actual active tab after the tabs are
positioned.
2024-09-10 23:06:27 -07:00
Evan Simkowitz
8f0cd5adcf
fix latent regression from my last pr 2024-09-10 22:50:28 -07:00
Evan Simkowitz
9b12aa9882
Fix bug in TileLayout where computeMoveNode had stale node data (#361)
This was hard to debug. It manifested in nodes that had been collapsed
into their parent. When a node was dragged over the recently-collapsed
node, the placeholder would show the action as if the flex direction was
reversed. It turns out useDrag has trouble tracking changes to the
LayoutNode objects. For now, I am just finding the nodes again in the
computeMoveNode function. Later when I redo the drag system, I will fix
this better.
2024-09-10 17:23:28 -07:00
Evan Simkowitz
f3940f7456
remove unused atom 2024-09-10 15:00:28 -07:00
Evan Simkowitz
6793b41cea
remove unnecessary isUrlDirty atom 2024-09-10 14:59:34 -07:00
Evan Simkowitz
f13b608e79
remove unnecessary set 2024-09-10 14:49:20 -07:00
Evan Simkowitz
467e151aca
fix webview url not being able to be empty 2024-09-10 14:46:59 -07:00
Evan Simkowitz
29db989623
Revert "Keep changes in preview after save (#360)"
This reverts commit 13ac6af4d0.
2024-09-10 14:27:11 -07:00
Evan Simkowitz
13ac6af4d0
Keep changes in preview after save (#360)
A bit hacky, but should allow preview to update to latest file contents
after save
2024-09-10 13:37:30 -07:00
Sylvie Crowe
04fb8e5aad
Mimetype Quick Fixes (#359) 2024-09-10 13:23:02 -07:00
Mike Sawka
5fe0cae244
wsh web (#358) 2024-09-10 12:50:55 -07:00
Red J Adaya
a9486852f9
default white bg for websites with no bg (#355) 2024-09-10 12:16:34 -07:00
sawka
62eb04090a fix shell integration directories, add bash/zsh completion scripts 2024-09-09 22:26:10 -07:00
sawka
16d01b43eb make some wsh commands hidden 2024-09-09 21:00:47 -07:00
sawka
766a976718 errorboundary fallback, errorboundary in block frame header. fix workspace error boundary 2024-09-09 18:20:57 -07:00
Sylvia Crowe
639e796296 fix: clamp connection rowIndex to list size 2024-09-09 17:06:48 -07:00
sawka
01d98fccd2 fix nullptr startsWith 2024-09-09 16:44:26 -07:00