-
Notifications
You must be signed in to change notification settings - Fork 0
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
Release 2014-10-31 #281
Merged
Release 2014-10-31 #281
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.6.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](microsoft/TypeScript@v5.5.4...v5.6.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.39 to 8.4.47. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.39...8.4.47) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Gcolon021 <34667267+Gcolon021@users.noreply.github.com>
Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.46.1 to 1.48.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases"><code>@playwright/test</code>'s releases</a>.</em></p> <blockquote> <h2>v1.48.0</h2> <h2>WebSocket routing</h2> <p>New methods <a href="https://playwright.dev/docs/api/class-page#page-route-web-socket">page.routeWebSocket()</a> and <a href="https://playwright.dev/docs/api/class-browsercontext#browser-context-route-web-socket">browserContext.routeWebSocket()</a> allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a <code>"request"</code> with a <code>"response"</code>.</p> <pre lang="js"><code>await page.routeWebSocket('/ws', ws => { ws.onMessage(message => { if (message === 'request') ws.send('response'); }); }); </code></pre> <p>See <a href="https://playwright.dev/docs/api/class-websocketroute">WebSocketRoute</a> for more details.</p> <h2>UI updates</h2> <ul> <li>New "copy" buttons for annotations and test location in the HTML report.</li> <li>Route method calls like <a href="https://playwright.dev/docs/api/class-route#route-fulfill">route.fulfill()</a> are not shown in the report and trace viewer anymore. You can see which network requests were routed in the network tab instead.</li> <li>New "Copy as cURL" and "Copy as fetch" buttons for requests in the network tab.</li> </ul> <h2>Miscellaneous</h2> <ul> <li>Option <a href="https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-fetch-option-form"><code>form</code></a> and similar ones now accept <a href="https://playwright.dev/docs/api/class-formdata">FormData</a>.</li> <li>New method <a href="https://playwright.dev/docs/api/class-page#page-request-gc">page.requestGC()</a> may help detect memory leaks.</li> <li>New option <a href="https://playwright.dev/docs/api/class-test#test-step-option-location"><code>location</code></a> to pass custom step location.</li> <li>Requests made by <a href="https://playwright.dev/docs/api/class-apirequestcontext">APIRequestContext</a> now record detailed timing and security information in the HAR.</li> </ul> <h2>Browser Versions</h2> <ul> <li>Chromium 130.0.6723.19</li> <li>Mozilla Firefox 130.0</li> <li>WebKit 18.0</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 129</li> <li>Microsoft Edge 129</li> </ul> <h2>v1.47.2</h2> <h3>Highlights</h3> <p><a href="https://redirect.github.com/microsoft/playwright/pull/32699-">microsoft/playwright#32699</a> [REGRESSION]: fix(codegen): use content_frame property in python/.NET <a href="https://redirect.github.com/microsoft/playwright/issues/32706-">microsoft/playwright#32706</a> [REGRESSION]: page.pause() does not pause test timeout after 1.47 <a href="https://redirect.github.com/microsoft/playwright/pull/32661">microsoft/playwright#32661</a> - fix(trace-viewer): time delta between local and remote actions</p> <h2>Browser Versions</h2> <ul> <li>Chromium 129.0.6668.29</li> <li>Mozilla Firefox 130.0</li> <li>WebKit 18.0</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 128</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/playwright/commit/0cdbb11068f86671c05d57391ac3701610f853df"><code>0cdbb11</code></a> chore: mark v1.48.0 (<a href="https://redirect.github.com/microsoft/playwright/issues/33009">#33009</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/ca368d43fa310e80067faca73afe18fc52949ed1"><code>ca368d4</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32991">#32991</a>): fix(routeWebSocket): do not show in the trace (<a href="https://redirect.github.com/microsoft/playwright/issues/33004">#33004</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/c329c5c1ec6e7bddc7f8f67dcf27c8cc6769d7af"><code>c329c5c</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/33005">#33005</a>): chore(driver): roll driver to recent Node.js LTS version</li> <li><a href="https://github.com/microsoft/playwright/commit/97aaa12be46f211d94559c8dcadc33052c45bac2"><code>97aaa12</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32956">#32956</a>): fix(fetch): listener leaks on Socket</li> <li><a href="https://github.com/microsoft/playwright/commit/0c17732e91a7400fd11030b57ff60e624ff5a814"><code>0c17732</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32949">#32949</a>): feat(chromium): roll to r1140</li> <li><a href="https://github.com/microsoft/playwright/commit/530f04304e90bbab73128b4601d449dadc4aa3cb"><code>530f043</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32938">#32938</a>): feat(firefox): roll to r1465</li> <li><a href="https://github.com/microsoft/playwright/commit/1054930edd066847d2a6a2e1fa9b9164855d3f6c"><code>1054930</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32924">#32924</a>): docs: fix Java/.NET types for docs rolling</li> <li><a href="https://github.com/microsoft/playwright/commit/e732f68eeeef74fe843fed45ad0e59390cb030fb"><code>e732f68</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32906">#32906</a>): feat(chromium): roll to r1139</li> <li><a href="https://github.com/microsoft/playwright/commit/dfa0e8bf356e8d9ff636e4bb239c6a648822cb85"><code>dfa0e8b</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32905">#32905</a>): chore: remove 'screenshot instead of snapshot' usages</li> <li><a href="https://github.com/microsoft/playwright/commit/7155356e3cee47eb51d7cb1c2bc42e82cdfc8dcf"><code>7155356</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32880">#32880</a>): chore: unflake 'should record'</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/playwright/compare/v1.46.1...v1.48.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.46.1&new-version=1.48.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) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: James <Jamestp19@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 1.5.0 to 2.1.2. <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.2</h2> <h3> 🐞 Bug Fixes</h3> <ul> <li>Move <code>Vitest.setServer</code> to post <code>configureServer</code> hook to enable import analysis for workspace config loading - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6584">vitest-dev/vitest#6584</a> <a href="https://github.com/vitest-dev/vitest/commit/e7f35214"><!-- raw HTML omitted -->(e7f35)<!-- raw HTML omitted --></a></li> <li><strong>benchmark</strong>: <ul> <li>Clear <code>BenchmarkResult.samples</code> array to reduce memory usage - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> and <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6541">vitest-dev/vitest#6541</a> <a href="https://github.com/vitest-dev/vitest/commit/a6407afc"><!-- raw HTML omitted -->(a6407)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>browser</strong>: <ul> <li>Fix dynamic import inside worker - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6569">vitest-dev/vitest#6569</a> <a href="https://github.com/vitest-dev/vitest/commit/ea2d429b"><!-- raw HTML omitted -->(ea2d4)<!-- raw HTML omitted --></a></li> <li>Fix browser mock factory event race condition - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6530">vitest-dev/vitest#6530</a> <a href="https://github.com/vitest-dev/vitest/commit/f131f93b"><!-- raw HTML omitted -->(f131f)<!-- raw HTML omitted --></a></li> <li>Serve ui assets as static - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6564">vitest-dev/vitest#6564</a> <a href="https://github.com/vitest-dev/vitest/commit/adcdaee8"><!-- raw HTML omitted -->(adcda)<!-- raw HTML omitted --></a></li> <li>Update solidjs testing library lib - by <a href="https://github.com/CamilleTeruel"><code>@CamilleTeruel</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6548">vitest-dev/vitest#6548</a> <a href="https://github.com/vitest-dev/vitest/commit/91442dfc"><!-- raw HTML omitted -->(91442)<!-- raw HTML omitted --></a></li> <li>Use <code>data:</code> protocol on preview provider file upload - by <a href="https://github.com/userquin"><code>@userquin</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6501">vitest-dev/vitest#6501</a> <a href="https://github.com/vitest-dev/vitest/commit/e9821f70"><!-- raw HTML omitted -->(e9821)<!-- raw HTML omitted --></a></li> <li>Fix base for client script - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6510">vitest-dev/vitest#6510</a> <a href="https://github.com/vitest-dev/vitest/commit/f952874e"><!-- raw HTML omitted -->(f9528)<!-- raw HTML omitted --></a></li> <li>Throw an error if "<code>@vitest/browser/</code>context" is imported outside of the browser mode - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6570">vitest-dev/vitest#6570</a> <a href="https://github.com/vitest-dev/vitest/commit/383f1791"><!-- raw HTML omitted -->(383f1)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>coverage</strong>: <ul> <li>Remove empty coverage folder on test failure too - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6547">vitest-dev/vitest#6547</a> <a href="https://github.com/vitest-dev/vitest/commit/1371ca6a"><!-- raw HTML omitted -->(1371c)<!-- raw HTML omitted --></a></li> <li>Include <code>*.astro</code> by default - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6565">vitest-dev/vitest#6565</a> <a href="https://github.com/vitest-dev/vitest/commit/f8ff76a9"><!-- raw HTML omitted -->(f8ff7)<!-- raw HTML omitted --></a></li> <li><code>cleanOnRerun: false</code> to invalidate previous results - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6592">vitest-dev/vitest#6592</a> <a href="https://github.com/vitest-dev/vitest/commit/88bde99c"><!-- raw HTML omitted -->(88bde)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>expect</strong>: <ul> <li>Fix <code>toBeDefined</code> with <code>expect.poll</code> - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6562">vitest-dev/vitest#6562</a> <a href="https://github.com/vitest-dev/vitest/commit/f7da6199"><!-- raw HTML omitted -->(f7da6)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>forks</strong>: <ul> <li>Fix <code>--cpu-prof</code> and <code>--heap-prof</code> not working by default - by <a href="https://github.com/AriPerkkio"><code>@AriPerkkio</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/pull/6555">vitest-dev/vitest#6555</a> <a href="https://github.com/vitest-dev/vitest/commit/2e4d894"><!-- raw HTML omitted -->(2e4d894)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>runner</strong>: <ul> <li>Mark tests as skipped when <code>beforeAll</code> failed - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6524">vitest-dev/vitest#6524</a> <a href="https://github.com/vitest-dev/vitest/commit/fb79792d"><!-- raw HTML omitted -->(fb797)<!-- raw HTML omitted --></a></li> <li>Support fixture parsing of lowered async syntax - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6531">vitest-dev/vitest#6531</a> <a href="https://github.com/vitest-dev/vitest/commit/b553c7d6"><!-- raw HTML omitted -->(b553c)<!-- raw HTML omitted --></a></li> <li>Fix fixture parsing of lowered async syntax for non arrow functions - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6575">vitest-dev/vitest#6575</a> <a href="https://github.com/vitest-dev/vitest/commit/3de00ab6"><!-- raw HTML omitted -->(3de00)<!-- raw HTML omitted --></a></li> <li>Guard test hook callback - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6604">vitest-dev/vitest#6604</a> <a href="https://github.com/vitest-dev/vitest/commit/1497134e"><!-- raw HTML omitted -->(14971)<!-- raw HTML omitted --></a></li> <li>Run <code>onTestFinished</code> and <code>onTestFailed</code> during <code>retry</code> and <code>repeats</code> - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6609">vitest-dev/vitest#6609</a> <a href="https://github.com/vitest-dev/vitest/commit/c5e29098"><!-- raw HTML omitted -->(c5e29)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>ui</strong>: <ul> <li>List tests on ui when <code>--standalone</code> - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6577">vitest-dev/vitest#6577</a> <a href="https://github.com/vitest-dev/vitest/commit/d0bf89d3"><!-- raw HTML omitted -->(d0bf8)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vite-node</strong>: <ul> <li>Fix esm false-detection inside comment - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6506">vitest-dev/vitest#6506</a> <a href="https://github.com/vitest-dev/vitest/commit/91f85997"><!-- raw HTML omitted -->(91f85)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>vitest</strong>: <ul> <li>Install dependencies with the same version when prompted - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6611">vitest-dev/vitest#6611</a> <a href="https://github.com/vitest-dev/vitest/commit/ed8b7c08"><!-- raw HTML omitted -->(ed8b7)<!-- raw HTML omitted --></a></li> <li>Make env.SSR consistent between different pools - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6616">vitest-dev/vitest#6616</a> <a href="https://github.com/vitest-dev/vitest/commit/8a8d3f03"><!-- raw HTML omitted -->(8a8d3)<!-- raw HTML omitted --></a></li> <li>Don't start a websocket server if api is disabled - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6617">vitest-dev/vitest#6617</a> <a href="https://github.com/vitest-dev/vitest/commit/821400b8"><!-- raw HTML omitted -->(82140)<!-- raw HTML omitted --></a></li> </ul> </li> <li><strong>workspace</strong>: <ul> <li>Fix glob pattern detection - by <a href="https://github.com/hi-ogawa"><code>@hi-ogawa</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6502">vitest-dev/vitest#6502</a> <a href="https://github.com/vitest-dev/vitest/commit/7727ca87"><!-- raw HTML omitted -->(7727c)<!-- raw HTML omitted --></a></li> <li>Ignore DS_Store by default - by <a href="https://github.com/sheremet-va"><code>@sheremet-va</code></a> in <a href="https://redirect.github.com/vitest-dev/vitest/issues/6571">vitest-dev/vitest#6571</a> <a href="https://github.com/vitest-dev/vitest/commit/d2a86ff5"><!-- raw HTML omitted -->(d2a86)<!-- raw HTML omitted --></a></li> </ul> </li> </ul> <h5> <a href="https://github.com/vitest-dev/vitest/compare/v2.1.1...v2.1.2">View changes on GitHub</a></h5> <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> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitest-dev/vitest/commit/0ce26a4c70093dd90ca6b5a592f1ea43bd0e4228"><code>0ce26a4</code></a> chore: release v2.1.2</li> <li><a href="https://github.com/vitest-dev/vitest/commit/383f17916608768858beafcbfcce645190ca4ec8"><code>383f179</code></a> fix(browser): throw an error if "<code>@vitest/browser/</code>context" is imported outside...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/821400b8c17f8cffff6f6521c8dfa4a66b1f8372"><code>821400b</code></a> fix(vitest): don't start a websocket server if api is disabled (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6617">#6617</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/8a8d3f0346c6faf5a400b8c5c15f0424f82b0982"><code>8a8d3f0</code></a> fix(vitest): make env.SSR consistent between different pools (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6616">#6616</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/ed8b7c087a99098888febfae91a3e7dddad205d2"><code>ed8b7c0</code></a> fix(vitest): install dependencies with the same version when prompted (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6611">#6611</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/d2a86ff57a3a32efbd05f55286f7765c4ee91853"><code>d2a86ff</code></a> fix(workspace): ignore DS_Store by default (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6571">#6571</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/88bde99cda26ff833220293ad0d0b350d61b358a"><code>88bde99</code></a> fix(coverage): <code>cleanOnRerun: false</code> to invalidate previous results (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6592">#6592</a>)</li> <li><a href="https://github.com/vitest-dev/vitest/commit/5f757900b5f55eced4517b26e90d02ae2e6ed2f7"><code>5f75790</code></a> refactor: replace <code>strip-ansi</code> with <code>stripVTControlCharacters</code> from `node:uti...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/e7f35214c8fdcf218679b9ed2f6f68854c1b1e0b"><code>e7f3521</code></a> fix: move <code>Vitest.setServer</code> to post <code>configureServer</code> hook to enable import ...</li> <li><a href="https://github.com/vitest-dev/vitest/commit/891d6fe57c50a16900e7993461c64054a5431a50"><code>891d6fe</code></a> docs: deprecate <code>benchmark.outputFile</code> option (<a href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6591">#6591</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitest-dev/vitest/commits/v2.1.2/packages/vitest">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vitest&package-manager=npm_and_yarn&previous-version=1.5.0&new-version=2.1.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: James <Jamestp19@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[ALS-6742] FIX: Google Consents - The default consent is now set on every page appropriately. - Removed `security_storage` and replaced it with `ad_user_data`. > - Updated unit test to reflect this change. - Moved all related code into a single `GoogleTracking.svelte` class. This made it easier to ensure things are loaded in the expected order and to maintain the code.
Bumps node from 22.9.0-alpine3.19 to 23.0.0-alpine3.19. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=node&package-manager=docker&previous-version=22.9.0-alpine3.19&new-version=23.0.0-alpine3.19)](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: James <Jamestp19@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.6.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/TypeScript/releases">typescript's releases</a>.</em></p> <blockquote> <h2>TypeScript 5.6.3</h2> <p>For release notes, check out the <a href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-6/">release announcement</a>.</p> <p>For the complete list of fixed issues, check out the</p> <ul> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.3%22+is%3Aclosed+">fixed issues query for Typescript 5.6.3 (Stable)</a>.</li> </ul> <p>Downloads are available on:</p> <ul> <li><a href="https://www.npmjs.com/package/typescript">npm</a></li> <li><a href="https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild">NuGet package</a></li> </ul> <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&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.1%22+is%3Aclosed+">fixed issues query for Typescript 5.6.1 (RC)</a>.</li> <li><a href="https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93&q=milestone%3A%22TypeScript+5.6.2%22+is%3Aclosed+">fixed issues query for Typescript 5.6.2 (Stable)</a>.</li> </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&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&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&q=milestone%3A%22TypeScript+5.6.0%22+is%3Aclosed+">fixed issues query for Typescript 5.6.0 (Beta)</a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/TypeScript/commit/d48a5cf89a62a62d6c6ed53ffa18f070d9458b85"><code>d48a5cf</code></a> Bump version to 5.6.3 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/fefa70aa18df825b6b06e79ae3d5b54f17571128"><code>fefa70a</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60083">#60083</a> (Don't issue implicit any when obtai...) into release-5.6 (#...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/ff716921496ab538e74450d32443c899afbf4657"><code>ff71692</code></a> [release-5.6] Remove tsbuildInfo specification error now that we need it for ...</li> <li><a href="https://github.com/microsoft/TypeScript/commit/1f44dcf4e1d7db05fab64dea6949fe3c0e642d25"><code>1f44dcf</code></a> 🤖 Pick PR <a href="https://redirect.github.com/microsoft/TypeScript/issues/60157">#60157</a> (fix automatic type acquisition) into release-5.6 (<a href="https://redirect.github.com/microsoft/TypeScript/issues/60169">#60169</a>)</li> <li><a href="https://github.com/microsoft/TypeScript/commit/a7e3374f13327483fbe94e32806d65785b0b6cda"><code>a7e3374</code></a> Bump version to 5.6.2 and LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/20633579fcf88f6b61774349740de4841d2b8b5c"><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="https://github.com/microsoft/TypeScript/commit/4fe7e41ea1a92ecbd59119666be2d60164785391"><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="https://github.com/microsoft/TypeScript/commit/1a03e5340ae0b83ce1b1f743763625f89e92ca91"><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="https://github.com/microsoft/TypeScript/commit/6212132b835145b1a8fd49982680ac668caf3ddc"><code>6212132</code></a> Update LKG</li> <li><a href="https://github.com/microsoft/TypeScript/commit/bbb5faf7e749df52adafdcd37c09ac7fff30ddaf"><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>Additional commits viewable in <a href="https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typescript&package-manager=npm_and_yarn&previous-version=5.5.4&new-version=5.6.3)](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: James <Jamestp19@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.