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

Update dependency svelte to v3.38.2 #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 22, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
svelte 3.29.0 -> 3.38.2 age adoption passing confidence

Release Notes

sveltejs/svelte

v3.38.2

Compare Source

  • Revert hydration optimisation for the time being (#​6279)

v3.38.1

Compare Source

v3.38.0

Compare Source

  • Avoid recreating DOM elements during hydration (#​1067)
  • Support passing CSS custom properties to component (#​5628)
  • Support :global() as part of compound CSS selectors (#​6222)
  • Fix updating <slot> contents when there's an aborted transition (#​3542)
  • Fix setting boolean attributes on custom elements (#​5951)
  • Add missing function overload for derived to allow explicitly setting an initial value for non-async derived stores (#​6172)
  • Fix dynamic href values erroneously triggering a11y warnings (#​5990)
  • Fix scope leak when updating an {#await} block (#​6173)
  • Pass full markup source to script/style preprocessors (#​6169)
  • Fix crossfade types to mark fallback as optional (#​6201)
  • Add missing "context" typing to SvelteComponent constructor options (#​6236)
  • Don't automatically switch to svg namespace when in foreign namespace (#​6257)

v3.37.0

Compare Source

  • Allow root-level context to be passed to the component constructor (#​6032)

v3.36.0

Compare Source

  • Add this: void typing to store functions (#​6094)
  • Export Spring, Tweened and EasingFunction interfaces (#​6070, #​6056)
  • Export interfaces for transition parameters (#​5207)
  • Export store's useful TypeScript definitions (#​5864)
  • Fix previous breaking change to svelte/preprocess types location (#​6100)
  • Fix missing slotted elements in AST (#​6066)

v3.35.0

Compare Source

  • Implement slotted components and <svelte:fragment slot="..."> (#​1037, #​2079)
  • Fix reactivity bug where slot="..." is specified after attributes that should be reactive (#​5626)

v3.34.0

Compare Source

  • Add a cssHash option for controlling the classname used for CSS scoping (#​570)

v3.33.0

Compare Source

  • In custom elements, call onMount functions when connecting and clean up when disconnecting (#​1152, #​2227, #​4522)
  • Allow destructured defaults to refer to other variables (#​5066)
  • Do not emit contextual-store warnings for function parameters or declared variables (#​6008)

v3.32.3

Compare Source

  • Fix removal of lone :host selectors (#​5982)

v3.32.2

Compare Source

  • Fix unnecessary additional invalidation with <Component bind:prop={obj.foo}/> (#​3075, #​4447, #​5555)
  • Fix scoping of selectors with :global() and ~ sibling combinators (#​5499)
  • Fix removal of :host selectors as unused when compiling to a custom element (#​5946)

v3.32.1

Compare Source

  • Warn when using module variables reactively, and close weird reactivity loophole (#​5847)
  • Throw a parser error for class: directives with an empty class name (#​5858)
  • Fix extraneous store subscription in SSR mode (#​5883)
  • Don't emit update code for class: directives whose expression is not dynamic (#​5919)
  • Fix type inference for derived stores (#​5935)
  • Make parameters of built-in animations and transitions optional (#​5936)
  • Make SvelteComponentDev typings more forgiving (#​5937)
  • Fix foreign elements incorrectly disallowing bind:this (#​5942)

v3.32.0

Compare Source

  • Allow multiple instances of the same action on an element (#​5516)
  • Support foreign namespace, which disables certain HTML5-specific behaviour and checks (#​5652)
  • Support inline comment sourcemaps in code from preprocessors (#​5854)

v3.31.2

Compare Source

  • Rework SSR store handling to subscribe and unsubscribe as in DOM mode (#​3375, #​3582, #​3636)
  • Fix error when removing elements that are already transitioning out (#​5789, #​5808)
  • Fix duplicate content race condition with {#await} blocks and out transitions (#​5815)
  • Deconflict variable names used for contextual actions (#​5834)

v3.31.1

Compare Source

  • Fix scrolling of element with resize listener by making the <iframe> have z-index: -1 (#​5448)
  • Fix location of automatically declared reactive variables (#​5749)
  • Warn when using className or htmlFor attributes (#​5777)
  • Fix checkbox bind:group in keyed {#each} where the array can be reordered (#​5779)
  • Fix checkbox bind:group in nested {#each} contexts (#​5811)
  • Add graphics roles as known ARIA roles (#​5822)
  • Fix local transitions if a parent has a cancelled outro transition (#​5829)
  • Support use:obj.some.deep.function as actions (#​5844)

v3.31.0

Compare Source

  • Use a separate SvelteComponentTyped interface for typed components (#​5738)

v3.30.1

Compare Source

  • Support consuming decoded sourcemaps as created by the source-map library's SourceMapGenerator (#​5722)
  • Actually export hasContext (#​5726)

v3.30.0

Compare Source

  • Add a typed SvelteComponent interface (#​5431)
  • Support spread into <slot> props (#​5456)
  • Fix setting reactive dependencies which don't appear in the template to undefined (#​5538)
  • Support preprocessor sourcemaps during compilation (#​5584)
  • Fix ordering of elements when using {#if} inside {#key} (#​5680)
  • Add hasContext lifecycle function (#​5690)
  • Fix missing walk types in svelte/compiler (#​5696)

v3.29.7

Compare Source

  • Include ./register in exports map (#​5670)

v3.29.6

Compare Source

  • Include ./package.json in export map (#​5659)

v3.29.5

Compare Source

  • Fix $$props and $$restProps when compiling to a custom element (#​5482)
  • Include an export map in package.json (#​5556)
  • Fix function calls in <slot> props that use contextual values (#​5565)
  • Fix handling aborted transitions in {:else} blocks (#​5573)
  • Add Element and Node to known globals (#​5586)
  • Fix $$slots when compiling to custom elements (#​5594)
  • Fix internal imports so that we're exposing a valid ES module (#​5617)

v3.29.4

Compare Source

  • Fix code generation error with ?? alongside logical operators (#​5558)

v3.29.3

Compare Source

  • Hopefully actually republish with proper UMD build for use in the REPL

v3.29.2

Compare Source

  • Republish with proper UMD build for use in the REPL

v3.29.1

Compare Source

  • Fix compiler hanging on <slot slot="..."> (#​5475)
  • Fix types on get function in svelte/store (#​5483)
  • Add missing end field on ASTs for non-top-level <style> elements (#​5487)
  • Fix {#if} inside {#await} with destructuring (#​5508)
  • Fix types on lifecycle hooks (#​5529)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title Update dependency svelte to v3.29.3 Update dependency svelte to v3.29.4 Oct 22, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.29.4 Update dependency svelte to v3.29.6 Nov 9, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.29.6 Update dependency svelte to v3.29.7 Nov 10, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.29.7 Update dependency svelte to v3.30.0 Nov 24, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.30.0 Update dependency svelte to v3.30.1 Nov 30, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.30.1 Update dependency svelte to v3.31.0 Dec 2, 2020
@renovate renovate bot changed the title Update dependency svelte to v3.31.0 Update dependency svelte to v3.31.2 Jan 5, 2021
@renovate renovate bot changed the title Update dependency svelte to v3.31.2 Update dependency svelte to v3.32.1 Feb 2, 2021
@renovate renovate bot changed the title Update dependency svelte to v3.32.1 Update dependency svelte to v3.32.2 Feb 10, 2021
@renovate renovate bot changed the title Update dependency svelte to v3.32.2 Update dependency svelte to v3.32.3 Feb 11, 2021
@renovate renovate bot changed the title Update dependency svelte to v3.32.3 Update dependency svelte to v3.37.0 Apr 26, 2021
@renovate renovate bot changed the title Update dependency svelte to v3.37.0 Update dependency svelte to v3.38.2 May 9, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant