Bump svelte from 3.31.0 to 3.49.0 in /examples/todo/svelte #67

Closed
dependabot[bot] wants to merge 1 commit from dependabot/npm_and_yarn/examples/todo/svelte/svelte-3.49.0 into master
dependabot[bot] commented 2022-07-15 09:23:20 -07:00 (Migrated from github.com)

Bumps svelte from 3.31.0 to 3.49.0.

Changelog

Sourced from svelte's changelog.

3.49.0

  • Improve performance of string escaping during SSR (#5701)
  • Add ComponentType and ComponentProps convenience types (#6770)
  • Add support for CSS @layer (#7504)
  • Export CompileOptions from svelte/compiler (#7658)
  • Fix DOM-less components not being properly destroyed (#7488)
  • Fix class: directive updates with <svelte:element> (#7521, #7571)
  • Harden attribute escaping during SSR (#7530)

3.48.0

  • Allow creating cancelable custom events with createEventDispatcher (#4623)
  • Support {@const} tag in {#if} blocks #7241
  • Return the context object in setContext #7427
  • Allow comments inside {#each} blocks when using animate: (#3999)
  • Fix |local transitions in {#key} blocks (#5950)
  • Support svg namespace for {@html} (#7002, #7450)
  • Fix {@const} tag not working inside a component when there's no let: #7189
  • Remove extraneous leading newline inside <pre> and <textarea> (#7264)
  • Fix erroneous setting of textContent for \<template> elements (#7297)
  • Fix value of let: bindings not updating in certain cases (#7440)
  • Fix handling of void tags in <svelte:element> (#7449)
  • Fix handling of boolean attributes in <svelte:element> (#7478)
  • Add special style scoping handling of [open] selectors on <dialog> elements (#7495)

3.47.0

  • Add support for dynamic elements through <svelte:element> (#2324)
  • Miscellaneous variable context fixes in {@const} (#7222)
  • Fix {#key} block not being reactive when the key variable is not otherwise used (#7408)
  • Add Symbol as a known global (#7418)

3.46.6

  • Actually include action TypeScript interface in published package (#7407)

3.46.5

  • Add TypeScript interfaces for typing actions (#6538)
  • Do not generate unused-export-let warning inside <script context="module"> blocks (#7055)
  • Do not collapse whitespace-only CSS vars (#7152)
  • Add aria-description to the list of allowed ARIA attributes (#7301)
  • Fix attribute escaping during SSR (#7327)
  • Prevent .innerHTML optimization from being used when style: directive is present (#7386)

3.46.4

  • Avoid maximum call stack size exceeded errors on large components (#4694)
  • Preserve leading space with preserveWhitespace: true (#4731)

... (truncated)

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 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 use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [svelte](https://github.com/sveltejs/svelte) from 3.31.0 to 3.49.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/svelte/blob/master/CHANGELOG.md">svelte's changelog</a>.</em></p> <blockquote> <h2>3.49.0</h2> <ul> <li>Improve performance of string escaping during SSR (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/5701">#5701</a>)</li> <li>Add <code>ComponentType</code> and <code>ComponentProps</code> convenience types (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/6770">#6770</a>)</li> <li>Add support for CSS <code>@layer</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7504">#7504</a>)</li> <li>Export <code>CompileOptions</code> from <code>svelte/compiler</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/7658">#7658</a>)</li> <li>Fix DOM-less components not being properly destroyed (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7488">#7488</a>)</li> <li>Fix <code>class:</code> directive updates with <code>&lt;svelte:element&gt;</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7521">#7521</a>, <a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7571">#7571</a>)</li> <li>Harden attribute escaping during SSR (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/7530">#7530</a>)</li> </ul> <h2>3.48.0</h2> <ul> <li>Allow creating cancelable custom events with <code>createEventDispatcher</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/4623">#4623</a>)</li> <li>Support <code>{@const}</code> tag in <code>{#if}</code> blocks <a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7241">#7241</a></li> <li>Return the context object in <code>setContext</code> <a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7427">#7427</a></li> <li>Allow comments inside <code>{#each}</code> blocks when using <code>animate:</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/3999">#3999</a>)</li> <li>Fix <code>|local</code> transitions in <code>{#key}</code> blocks (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/5950">#5950</a>)</li> <li>Support svg namespace for <code>{@html}</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7002">#7002</a>, <a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7450">#7450</a>)</li> <li>Fix <code>{@const}</code> tag not working inside a component when there's no <code>let:</code> <a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7189">#7189</a></li> <li>Remove extraneous leading newline inside <code>&lt;pre&gt;</code> and <code>&lt;textarea&gt;</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7264">#7264</a>)</li> <li>Fix erroneous setting of <code>textContent</code> for <code>\&lt;template&gt;</code> elements (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/7297">#7297</a>)</li> <li>Fix value of <code>let:</code> bindings not updating in certain cases (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7440">#7440</a>)</li> <li>Fix handling of void tags in <code>&lt;svelte:element&gt;</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7449">#7449</a>)</li> <li>Fix handling of boolean attributes in <code>&lt;svelte:element&gt;</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7478">#7478</a>)</li> <li>Add special style scoping handling of <code>[open]</code> selectors on <code>&lt;dialog&gt;</code> elements (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7494">#7495</a>)</li> </ul> <h2>3.47.0</h2> <ul> <li>Add support for dynamic elements through <code>&lt;svelte:element&gt;</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/2324">#2324</a>)</li> <li>Miscellaneous variable context fixes in <code>{@const}</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/7222">#7222</a>)</li> <li>Fix <code>{#key}</code> block not being reactive when the key variable is not otherwise used (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7408">#7408</a>)</li> <li>Add <code>Symbol</code> as a known global (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7418">#7418</a>)</li> </ul> <h2>3.46.6</h2> <ul> <li>Actually include action TypeScript interface in published package (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/pull/7407">#7407</a>)</li> </ul> <h2>3.46.5</h2> <ul> <li>Add TypeScript interfaces for typing actions (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/6538">#6538</a>)</li> <li>Do not generate <code>unused-export-let</code> warning inside <code>&lt;script context=&quot;module&quot;&gt;</code> blocks (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7055">#7055</a>)</li> <li>Do not collapse whitespace-only CSS vars (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7152">#7152</a>)</li> <li>Add <code>aria-description</code> to the list of allowed ARIA attributes (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7301">#7301</a>)</li> <li>Fix attribute escaping during SSR (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7327">#7327</a>)</li> <li>Prevent <code>.innerHTML</code> optimization from being used when <code>style:</code> directive is present (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7386">#7386</a>)</li> </ul> <h2>3.46.4</h2> <ul> <li>Avoid <code>maximum call stack size exceeded</code> errors on large components (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/4694">#4694</a>)</li> <li>Preserve leading space with <code>preserveWhitespace: true</code> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/4731">#4731</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/svelte/commit/52153dbce0237f0c36e4ff36377398d7f95276ef"><code>52153db</code></a> -&gt; v3.49.0</li> <li><a href="https://github.com/sveltejs/svelte/commit/3798808e7484b7eeee6acb2860c45bb2e59d84bd"><code>3798808</code></a> update changelog</li> <li><a href="https://github.com/sveltejs/svelte/commit/0fa0a38d5168a1767843fdb0a43c00aa30b8670f"><code>0fa0a38</code></a> [fix] export CompileOptions (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7658">#7658</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/a3ecb44b5346dbf116c5bec5dcf47cd7f459784d"><code>a3ecb44</code></a> update changelog</li> <li><a href="https://github.com/sveltejs/svelte/commit/7e1691cd62df0593882480d00eb7e9a7616bb029"><code>7e1691c</code></a> [fix] support <a href="https://github.com/layer"><code>@​layer</code></a> (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7514">#7514</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/4583b170842208bcafcbb095221c8ac12689f739"><code>4583b17</code></a> Update CHANGELOG.md</li> <li><a href="https://github.com/sveltejs/svelte/commit/02f60fbebf7cdb036472d1aec8dc9d9f8215cd7a"><code>02f60fb</code></a> [fix]destroy empty component (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7492">#7492</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/31e5f8b5de24e2e058cb1a70467c0092e422ee5d"><code>31e5f8b</code></a> [docs] &quot;What's new in Svelte&quot; July newsletter (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7637">#7637</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/6f575715073f4a1eb1abdd7a2d22a75ae6017cf7"><code>6f57571</code></a> [feat] add convenience types ComponentType and ComponentProps (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/6770">#6770</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/2f562d9e2817d911d0eec437d2b0e45074ec8291"><code>2f562d9</code></a> [docs] use npm create instead of npm init (<a href="https://github-redirect.dependabot.com/sveltejs/svelte/issues/7641">#7641</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sveltejs/svelte/compare/v3.31.0...v3.49.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=svelte&package-manager=npm_and_yarn&previous-version=3.31.0&new-version=3.49.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 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 use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/sciactive/nymph-examples/network/alerts). </details>
dependabot[bot] commented 2022-12-11 10:23:28 -08:00 (Migrated from github.com)

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.

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

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`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.
Commenting is not possible because the repository is archived.
No reviewers
No milestone
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
sciactive/nymph-examples!67
No description provided.