Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @vitejs/plugin-react from 4.2.0 to 4.2.1 #159

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2024

Bumps @vitejs/plugin-react from 4.2.0 to 4.2.1.

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.2.1

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@vitejs/plugin-react'
export const somePlugin: Plugin = {
name: 'some-plugin',
api: {
reactBabel: (babelConfig) => {
babelConfig.plugins.push('some-babel-plugin')
},
} satisfies ViteReactPluginApi,
}

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.2.1 (2023-12-04)

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@vitejs/plugin-react'
export const somePlugin: Plugin = {
name: 'some-plugin',
api: {
reactBabel: (babelConfig) => {
babelConfig.plugins.push('some-babel-plugin')
},
} satisfies ViteReactPluginApi,
}

Commits

Dependabot compatibility score

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 commands and options

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)

dependabot bot added 4 commits December 27, 2023 18:09
Bumps
[eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn)
from 48.0.1 to 50.0.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/releases">eslint-plugin-unicorn's
releases</a>.</em></p>
<blockquote>
<h2>v50.0.1</h2>
<h3>Fixes</h3>
<ul>
<li><code>no-unnecessary-polyfills</code>: Fix missing dependency error
(<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2242">#2242</a>)
3df16068</li>
</ul>
<p><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v50.0.0...v50.0.1">https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v50.0.0...v50.0.1</a></p>
<h2>v50.0.0</h2>
<h3>New rules</h3>
<ul>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-unnecessary-polyfills.md"><code>no-unnecessary-polyfills</code></a>
(<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/1717">#1717</a>)
6788d86</li>
</ul>
<h3>Improvements</h3>
<ul>
<li>Support ESLint&amp;<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/39">#39</a>;s
new config system (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/1886">#1886</a>)
65711f9</li>
<li><code>no-useless-undefined</code>: Add
<code>checkArrowFunctionBody</code> option (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2232">#2232</a>)
9d7048c</li>
<li><code>prefer-negative-index</code>: Check
<code>TypedArray#subarray()</code> (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2237">#2237</a>)
6708a30</li>
<li><code>no-useless-undefined</code>: Ignore React state setters (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2223">#2223</a>)
42881ba</li>
<li><code>prefer-module</code>: Allow <code>module</code> as
TSTypeParameter name (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2213">#2213</a>)
8f61f7c</li>
</ul>
<h3>Fixes</h3>
<ul>
<li><code>string-content</code>: Fix JSX autofix for newlines, etc. (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2222">#2222</a>)
b95e75e</li>
</ul>
<p><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v49.0.0...v50.0.0">https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v49.0.0...v50.0.0</a></p>
<h2>v49.0.0</h2>
<h3>Improvements</h3>
<ul>
<li><code>expiring-todo-comments</code>: Support monorepos (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2159">#2159</a>)
ac51d40</li>
<li><code>prefer-module</code>: Allow <code>module</code> as
TSIndexSignature names or TSTypeAliasDeclaration ids (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2209">#2209</a>)
ea94b3b</li>
<li>Support RegExp <code>v</code> flag (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2195">#2195</a>)
28e7498</li>
<li><code>prefer-event-target</code>: Ignore <code>EventEmitter</code>
from <code>@angular/core</code> and <code>eventemitter3</code> (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2197">#2197</a>)
1629ebe</li>
</ul>
<p><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v48.0.1...v49.0.0">https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v48.0.1...v49.0.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/c76119ccc475fdd0d23c954415f5ef842b3d9862"><code>c76119c</code></a>
v50.0.1</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/3df1606874392865bfe8f2c453b492d15751ffa2"><code>3df1606</code></a>
Fix <code>filename-case</code> (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2242">#2242</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/a943b3ac6bcbc2e54a9679213ee07b93bfd1f4f7"><code>a943b3a</code></a>
Fix tests (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2241">#2241</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/7f66a2408651ab6c67d514924ea3ec3bd9420349"><code>7f66a24</code></a>
50.0.0</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/2a2240a4efab6b63bc006b98a950d63e6ca1182e"><code>2a2240a</code></a>
Tweaks</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/85bce3f9190196841c4d167fa1a2af22bde689a5"><code>85bce3f</code></a>
Remove <code>ecmaVersion</code> and <code>sourceType</code> from flat
configs (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2239">#2239</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/65711f984ad18975610ea54d288ff5728b09382e"><code>65711f9</code></a>
Support ESLint's new config system (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/1886">#1886</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/c91c6ade817e65b95b9c49b4a71033556929e0e1"><code>c91c6ad</code></a>
Add <code>test.only</code> helper to test a single case (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2236">#2236</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/9d7048c0d776bf623349a1c2f235a6fc84c42d66"><code>9d7048c</code></a>
<code>no-useless-undefined</code>: Add
<code>checkArrowFunctionBody</code> option (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2232">#2232</a>)</li>
<li><a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/commit/6708a30f763bcc9bb0b4d5053be4c14d13cd7bf0"><code>6708a30</code></a>
<code>prefer-negative-index</code>: Check
<code>TypedArray#subarray()</code> (<a
href="https://redirect.github.com/sindresorhus/eslint-plugin-unicorn/issues/2237">#2237</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v48.0.1...v50.0.1">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~fisker">fisker</a>, a new releaser for
eslint-plugin-unicorn since your current version.</p>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools)
from 4.36.1 to 5.14.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query-devtools</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v5.14.6</h2>
<p>Version 5.14.6 - 12/23/2023, 4:04 PM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>angular-query: fix optimistic result (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6575">#6575</a>)
(fdcdfdc6) by Arnoud</li>
</ul>
<h3>Chore</h3>
<ul>
<li>Update to Nx v17 (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6581">#6581</a>)
(1340d590) by Lachlan Collins</li>
<li>Update dependencies (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6580">#6580</a>)
(81cbf81f) by Lachlan Collins</li>
<li>Update publint (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6579">#6579</a>)
(50bf5ce3) by Lachlan Collins</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/eslint-plugin-query</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/query-broadcast-client-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/react-query</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/react-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/react-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/react-query-next-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/svelte-query</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/svelte-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/svelte-query-persist-client</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/vue-query</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/vue-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/angular-query-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/solid-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
<li><code>@​tanstack/angular-query-devtools-experimental</code><a
href="https://github.com/5"><code>@​5</code></a>.14.6</li>
</ul>
<h2>v5.14.5</h2>
<p>Version 5.14.5 - 12/21/2023, 3:05 PM</p>
<h2>Changes</h2>
<h3>Fix</h3>
<ul>
<li>query-devtools: remove automatic inclusion of font cdn link (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6573">#6573</a>)
(7579dc63) by R. Dylan Walker</li>
</ul>
<h3>Chore</h3>
<ul>
<li>angular-query: add angular adapter to bug template (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6572">#6572</a>)
(1b4121a0) by Arnoud</li>
</ul>
<h2>Packages</h2>
<ul>
<li><code>@​tanstack/query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.5</li>
<li><code>@​tanstack/react-query-devtools</code><a
href="https://github.com/5"><code>@​5</code></a>.14.5</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/TanStack/query/commit/67f76b15b597aaa8445e731c71df6af199c57444"><code>67f76b1</code></a>
release: v5.14.6</li>
<li><a
href="https://github.com/TanStack/query/commit/81cbf81f10b48cce6d44de4c75ab0ad537e12671"><code>81cbf81</code></a>
chore: Update dependencies (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6580">#6580</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/fd330979c3037a2d54f28dee43d3c0782783479c"><code>fd33097</code></a>
release: v5.14.5</li>
<li><a
href="https://github.com/TanStack/query/commit/7a6173364bfb756bcc637d0d837cd00be260096d"><code>7a61733</code></a>
release: v5.14.2</li>
<li><a
href="https://github.com/TanStack/query/commit/583c3a8001bf7150329c5d0f2aabc029f7b3c349"><code>583c3a8</code></a>
chore(React Import): Unification of React import method (<a
href="https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools/issues/6553">#6553</a>)</li>
<li><a
href="https://github.com/TanStack/query/commit/0f2db04f7ac6c4f9ecf6bc840bb988f26adc6460"><code>0f2db04</code></a>
release: v5.14.1</li>
<li><a
href="https://github.com/TanStack/query/commit/84e2ef21970b4df3f5a4b77d512ef52aace8f8f1"><code>84e2ef2</code></a>
release: v5.14.0</li>
<li><a
href="https://github.com/TanStack/query/commit/56983b3a0bce9b7b2bade3efd8a9c7217ce460a2"><code>56983b3</code></a>
release: v5.13.5</li>
<li><a
href="https://github.com/TanStack/query/commit/f459f28cce0109c6e7487f361f925ea90efe7032"><code>f459f28</code></a>
release: v5.13.4</li>
<li><a
href="https://github.com/TanStack/query/commit/9b1aa77010637506b929f529a12bd6dfc6f9001a"><code>9b1aa77</code></a>
release: v5.13.3</li>
<li>Additional commits viewable in <a
href="https://github.com/TanStack/query/commits/v5.14.6/packages/react-query-devtools">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [cypress](https://github.com/cypress-io/cypress) from 12.17.4 to
13.6.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/cypress-io/cypress/releases">cypress's
releases</a>.</em></p>
<blockquote>
<h2>v13.6.1</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-6-1">https://docs.cypress.io/guides/references/changelog#13-6-1</a></p>
<h2>v13.6.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-6-0">https://docs.cypress.io/guides/references/changelog#13-6-0</a></p>
<h2>v13.5.1</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-5-1">https://docs.cypress.io/guides/references/changelog#13-5-1</a></p>
<h2>v.13.5.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-5-0">https://docs.cypress.io/guides/references/changelog#13-5-0</a></p>
<h2>v13.4.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-4-0">https://docs.cypress.io/guides/references/changelog#13-4-0</a></p>
<h2>v13.3.3</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-3-3">https://docs.cypress.io/guides/references/changelog#13-3-3</a></p>
<h2>v13.3.2</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-3-2">https://docs.cypress.io/guides/references/changelog#13-3-2</a></p>
<h2>v13.3.1</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-3-1">https://docs.cypress.io/guides/references/changelog#13-3-1</a></p>
<h2>v13.3.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-3-0">https://docs.cypress.io/guides/references/changelog#13-3-0</a></p>
<h2>v13.2.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-2-0">https://docs.cypress.io/guides/references/changelog#13-2-0</a></p>
<h2>v13.1.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-1-0">https://docs.cypress.io/guides/references/changelog#13-1-0</a></p>
<h2>v13.0.0</h2>
<p>Changelog: <a
href="https://docs.cypress.io/guides/references/changelog#13-0-0">https://docs.cypress.io/guides/references/changelog#13-0-0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/cypress-io/cypress/commit/fff6ce9bfe51b6765138aedb7c73c59bc5c30d81"><code>fff6ce9</code></a>
chore: Release 13.6.1 (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28461">#28461</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/f53ca92f5c7376d98ef7877d4f0ce894b981a0a2"><code>f53ca92</code></a>
fix: no longer swallow stderr logs on linux (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28380">#28380</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/257861bd6e3f7de77a4c7ede64e9538370c0a2ed"><code>257861b</code></a>
fix: Fix issue with using privileged commands when baseUrl includes
basic aut...</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/57bb0b68eedb72975d96446a8561322d0d03262a"><code>57bb0b6</code></a>
fix: decode urls in prerequest (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28427">#28427</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/7ba92b91e5131252438c6beb413cc5cca971e249"><code>7ba92b9</code></a>
misc: persist upload timings to cy cloud (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28418">#28418</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/6a895d2a3c9f86d5dfe8bbdf403e1b25ed7fa072"><code>6a895d2</code></a>
chore: release <code>@​cypress/puppeteer-v0</code>.1.1</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/72225db03327744844dcfbcc72b40e85de6a2761"><code>72225db</code></a>
fix: Resolve types and dist issues with <code>@​cypress/puppeteer</code>
(<a
href="https://redirect.github.com/cypress-io/cypress/issues/28424">#28424</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/eb9fa1b9d92b9f3e9807508d64a16c1aad84ff85"><code>eb9fa1b</code></a>
chore: release <code>@​cypress/puppeteer-v0</code>.1.0</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/d5678c794ff9a9850a968b03391b826a1389dc9c"><code>d5678c7</code></a>
fix: don't inherit default message for request logging (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28411">#28411</a>)</li>
<li><a
href="https://github.com/cypress-io/cypress/commit/650d5cb7dae1a599029de89e120e0284838b4d6a"><code>650d5cb</code></a>
fix: Ensure basic auth headers are set on extra target requests (<a
href="https://redirect.github.com/cypress-io/cypress/issues/28387">#28387</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/cypress-io/cypress/compare/v12.17.4...v13.6.1">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

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


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [@swc/core](https://github.com/swc-project/swc) from 1.3.99 to
1.3.101.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/swc-project/swc/commit/2037f0da9b90ede4d934c5bbecb5f2a8337e34d7"><code>2037f0d</code></a>
chore: Publish <code>v1.3.101</code> with <code>swc_core</code>
<code>v0.87.2</code> (<a
href="https://redirect.github.com/swc-project/swc/issues/8432">#8432</a>)</li>
<li><a
href="https://github.com/swc-project/swc/commit/3550d0be26ebab7bcb7942e1a12a7d5fc3aedb17"><code>3550d0b</code></a>
chore: Publish 1.3.101-nightly-20231218.1</li>
<li><a
href="https://github.com/swc-project/swc/commit/d6cd2146faed9155ae6f2c625daa173ddc7c0064"><code>d6cd214</code></a>
chore: Publish crates</li>
<li><a
href="https://github.com/swc-project/swc/commit/56992e3dccad6f9ce37b70bf77363468c310d875"><code>56992e3</code></a>
fix(es/compat): Preserve comment for arrow body (<a
href="https://redirect.github.com/swc-project/swc/issues/8427">#8427</a>)</li>
<li><a
href="https://github.com/swc-project/swc/commit/45f62f7886ecb6d130bbf951332d1c8f1f46b545"><code>45f62f7</code></a>
chore: Publish crates</li>
<li><a
href="https://github.com/swc-project/swc/commit/7566ddf0b7802650f0f25ca7f7c607f58faa4972"><code>7566ddf</code></a>
fix(es/codegen): Fix codegen of ts specific syntax in class props (<a
href="https://redirect.github.com/swc-project/swc/issues/8426">#8426</a>)</li>
<li><a
href="https://github.com/swc-project/swc/commit/4bd15908c1e1c843e25dd4175c4593e3e52f6d70"><code>4bd1590</code></a>
chore: Publish crates</li>
<li><a
href="https://github.com/swc-project/swc/commit/8d47b9ab40ba2be876fe2fd74a9480ea00f8a86e"><code>8d47b9a</code></a>
chore(ci): Fix prepublish script by upgrading NAPI-RS cli (<a
href="https://redirect.github.com/swc-project/swc/issues/8430">#8430</a>)</li>
<li><a
href="https://github.com/swc-project/swc/commit/38b417b19074bc552853661525464fcdb44100bb"><code>38b417b</code></a>
chore: Publish 1.3.101-nightly-20231217.1</li>
<li><a
href="https://github.com/swc-project/swc/commit/80e2c238c01facd10a773c8a3c27f317cb17894e"><code>80e2c23</code></a>
chore: Publish 1.3.101-nightly-20231216.1</li>
<li>Additional commits viewable in <a
href="https://github.com/swc-project/swc/compare/v1.3.99...v1.3.101">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@swc/core&package-manager=npm_and_yarn&previous-version=1.3.99&new-version=1.3.101)](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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2024
Copy link

changeset-bot bot commented Jan 1, 2024

⚠️ No Changeset found

Latest commit: 59f89d1

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Jan 1, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
documentation ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 3, 2024 2:05am

alec-chernicki and others added 9 commits January 1, 2024 23:48
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## [email protected]

### Patch Changes

-   Updated dependencies [d693d39]
    -   [email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
-   Updated dependencies [d693d39]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## [email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## [email protected]

### Patch Changes

-   Updated dependencies [d693d39]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## [email protected]

### Patch Changes

-   Updated dependencies [d693d39]
    -   [email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
-   Updated dependencies [d693d39]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles

## [email protected]

### Patch Changes

-   d693d39: Update Commonality Studio styles
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## [email protected]

### Patch Changes

-   Updated dependencies [d693d39]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/vitejs/plugin-react-4.2.1 branch from fcd04ee to cf0c8b2 Compare January 2, 2024 20:34
alec-chernicki and others added 2 commits January 2, 2024 17:19
Bumps [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) from 4.2.0 to 4.2.1.
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.2.1/packages/plugin-react)

---
updated-dependencies:
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/vitejs/plugin-react-4.2.1 branch from cf0c8b2 to 80019b4 Compare January 2, 2024 22:20
github-actions bot and others added 2 commits January 2, 2024 21:00
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## [email protected]

### Patch Changes

-   74e1a9c: update engines

## @commonalityco/[email protected]

### Patch Changes

-   74e1a9c: update engines

## [email protected]

### Patch Changes

-   74e1a9c: update engines
-   74e1a9c: update checks package namne
-   Updated dependencies [74e1a9c]
    -   [email protected]

## @commonalityco/[email protected]

### Patch Changes

-   74e1a9c: update engines
-   74e1a9c: update checks package namne
-   Updated dependencies [74e1a9c]
-   Updated dependencies [74e1a9c]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## @commonalityco/[email protected]

### Patch Changes

-   74e1a9c: update engines
-   74e1a9c: update checks package namne

## @commonalityco/[email protected]

### Patch Changes

-   74e1a9c: update engines
-   74e1a9c: update checks package namne

## [email protected]

### Patch Changes

-   74e1a9c: update engines
-   74e1a9c: update checks package namne
-   Updated dependencies [74e1a9c]
-   Updated dependencies [74e1a9c]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

## [email protected]

### Patch Changes

-   Updated dependencies [74e1a9c]
-   Updated dependencies [74e1a9c]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]
    -   @commonalityco/[email protected]

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 3, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/vitejs/plugin-react-4.2.1 branch January 3, 2024 18:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant