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

deps(deps): update dependencies-non-major #78

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@netlify/functions 2.6.0 -> 2.7.0 age adoption passing confidence
mapbox-gl 3.0.0 -> 3.4.0 age adoption passing confidence
svelte (source) 3.49.0 -> 3.59.2 age adoption passing confidence
svelte-spa-router 3.1.0 -> 3.3.0 age adoption passing confidence

Release Notes

netlify/functions (@​netlify/functions)

v2.7.0

Compare Source

Features
Bug Fixes

v2.6.3

Compare Source

Bug Fixes
mapbox/mapbox-gl-js (mapbox-gl)

v3.4.0

Compare Source

Features and improvements ✨
  • Add dynamic: true option for GeoJSON sources that enables partial update API with source.updateData method. Further optimizations for this mode are expected in future releases.
  • Add Map setConfig, getConfig, setSchema and getSchema methods for batch setting of style configuration options.
  • Add config option for the Map constructor and setStyle methods for conveniently setting style configuration options on map initialization.
  • Add icon-color-saturation, icon-color-contrast, icon-color-brightness-min and icon-color-brightness-max to control symbol layer appearance.
  • Introduce a new line-join mode: none to improve line pattern distortions around joins.
  • Extend model-id property to support URIs (in addition to style-defined model references).
  • Expose more parameters in map devtools UI.
Bug fixes 🐞
  • Fix an issue with flyTo ignoring padding in its options.
  • Respect padding in cameraForBounds on globe view. (h/t @​jonasnoki) #​13126
  • Fix preloadOnly not preloading tiles from style imports.
  • Fix queryRenderedFeatures for non-integer ID in non-tiled model sources
  • Fix model-scale property for large number of 3D models.
  • Fix flickering of raster-particle layer on globe view.
  • Improve rendering of low-resolution raster-array data.
  • Fix an issue with GL JS bundle not building locally on Windows.
  • Fix multiple edge cases when using symbol-z-elevate.
  • Fix rendering issues with raster-particle layer on certain Android devices.
  • Fix shadow and lighting rendering issues in certain areas when using Mapbox Standard.

v3.3.0

Compare Source

Features and improvements ✨
  • Add a new raster-array source type, representing a new experimental Mapbox Raster Tile format which encodes series of tiled raster data (such as weather time series).
  • Add a new raster-particle layer which animates particles of different speed and color based on underlying raster-array data.
  • Add addImport, moveImport, updateImport, and removeImport API methods.
  • Add getSlot, and setSlot API methods to control layers' slots.
  • Add landmarks and models support in queryRenderedFeatures.
  • Add raster-elevation support for tiled raster sources.
  • Add config expression support in fog.
  • Improve map loading performance.
Bug fixes 🐞
  • Fix zooming with the pitched camera and maxZoom.
  • Fix memory leak after removing the map. (h/t @​kamil-sienkiewicz-asi) #​13110, #​13116
  • Fix broken horizon line for some camera values.
  • Fix broken globe draping after updating style with setStyle.
  • Fix the z offset when the opacity is evaluated at 0 on the zoom change.
  • Fix the format expression in the config expression.
  • Fix adding a marker to the map that is not loaded when fog is enabled.
  • Fix symbol and icon rendering order when using symbol-sort-key property.

v3.2.0

Compare Source

Features and improvements ✨
  • Improve map loading performance.
  • Add a debug UI for the development build of GL JS, enabled with devtools: true in Map options.
  • Add imports support in map.areTilesLoaded.
  • Add support of rotation of elevated raster layers.
  • Add support of negative values for fill-extrusion-flood-light-ground-radius property.
  • Improve visual cutoff behavior of buildings when using fill-extrusion-cutoff-fade-range property.
Bug fixes 🐞
  • Fix an issue where map.flyTo with padding option was setting and overriding map's padding.
  • Issue a warning instead of a validation error if url or tiles is missing from source, i.e. in MapTiler source.
  • Fix the moiré effects on patterns in tilted map views.
  • Remove role attribute for non-visible alerts. (h/t @​jakubmakielkowski) #​13051
  • Fix an elevation of symbols above multiple fill extrusions, when some of them hidden or lowered.
  • Fix config expression chaining through nested styles and other issues related to config scope.
  • Fix a small callback-related memory leak. (h/t @​temas) #​13074
  • Fix config and format expressions not working together.

v3.1.2

Compare Source

Bug fixes 🐞
  • Fix attribution not being displayed for imported fragments (reintroducing the fix from v3.0.1 that was accidentally missing in v3.1.0).

v3.1.1

Compare Source

Bug fixes 🐞
  • Fix fill-extrusions not being displayed in alternative projections.
  • Fix an issue when WebGL might randomly crash to an unrecoverable state on some mobile devices, specifically Safari on iOS.

v3.1.0

Compare Source

Features and improvements ✨
  • Improve performance for maps with many textures (such as styles with satellite imagery), fixing excessive memory usage. (h/t @​tristan-morris) #​12924
  • Add raster-elevation property for elevating raster layers to a constant height (e.g. clouds over globe).
  • Add raster-emissive-strength and fill-extrusion-emissive-strength properties for controlling 3D lighting on buildings and raster layers.
  • Add Map getConfigProperty method for getting current style config values.
  • Add config support in terrain options.
  • Improve performance for pitched views with many fill extrusions on higher zoom levels.
  • Allow turning off the terrain that is defined in the imports on the root-level Style by setting it to null.
  • Allow the partial terrain exaggeration update without specifying the source.
  • Respect style schema restrictions (minValue, maxValue, stepValue, values, type) when evaluating config options.
Bug fixes 🐞
  • Fix an issue where center: [0, 0] and zoom: 0 map options were ignored in favor of style settings.
  • Fix an issue with the camera not taking the short route when animating between locations across the anti-meridian.
  • Fix an issue where a style with imports sometimes loaded in incomplete state.
  • Fix an issue with rendering styles with nested imports.
  • Fix an issue with sources not reloading when changing language and worldview.
  • Fix an issue where updating a style fragment URL didn't work correctly.
  • Fix an issue when adding a layer with explicit slot not taking precedence over the before parameter for layer order.
  • Fix an issue where updating an image before initial image is loaded produced an error. (h/t @​maciejmatu) #​12928
  • Fix an issue with incorrect collisions for elevated symbols.
  • Fix an issue with "camera-projection": "orthographic" not working in styles with imports.
  • Fix an issue with tiles sometimes missing in terrain mode on views from a hill down on a valley.
  • Fix compact attribution style when using global CSS that sets box-sizing: border-box. (h/t @​simondriesen) #​12982
  • Remove redundant aria-label attribute in attribution control that fails accessibility conformance. (h/t @​maggiewachs) #​12981
  • Disable terrain and hillshade when browser fingerprinting protection (e.g. in private browsing mode) prevents it from rendering correctly.
  • Fix layer rendering when import requests are failing.
  • Fix map load event not firing for the sources whose tiles are 404s.
  • Require either url or tiles for tiled sources during validation.
  • Validate for empty layer and source IDs in runtime.

v3.0.1

Compare Source

Mapbox GL JS v3 enables the Mapbox Standard Style, a new realistic 3D lighting system, building shadows and many other visual enhancements, and an ergonomic API for using a new kind of rich, evolving, configurable map styles and seamless integration with custom data. You can get more information about the new features in the Mapbox GL JS v3 migration guide.

v3.0.1

Bug fixes 🐞
  • Fix attribution not being displayed for imported fragments.
sveltejs/svelte (svelte)

v3.59.2

Compare Source

  • Fix escaping <textarea bind:value={...}> values in SSR

v3.59.1

Compare Source

  • Handle dynamic values in a11y-autocomplete-valid (#​8567)

v3.59.0

Compare Source

  • Add ResizeObserver bindings contentRect/contentBoxSize/borderBoxSize/devicePixelContentBoxSize (#​8022)
  • Add devicePixelRatio binding for <svelte:window> (#​8285)
  • Add fullscreenElement and visibilityState bindings for <svelte:document> (#​8507)
  • Add a11y-autocomplete-valid warning (#​8520)
  • Fix handling of width/height attributes when spreading (#​6752)
  • Fix updating of interpolated style: directive when using spread (#​8438)
  • Remove style: directive property when value is undefined (#​8462)
  • Fix type of VERSION compiler export (#​8498)
  • Relax a11y-no-redundant-roles warning (#​8536)
  • Handle nested array rest destructuring (#​8552, #​8554)

v3.58.0

Compare Source

  • Add bind:innerText for contenteditable elements (#​3311)
  • Add support for CSS @container queries (#​6969)
  • Respect preserveComments in DOM output (#​7182)
  • Allow use of document for target in typings (#​7554)
  • Add a11y-interactive-supports-focus warning (#​8392)
  • Fix equality check when updating dynamic text (#​5931)
  • Relax a11y-no-noninteractive-element-to-interactive-role warning (#​8402)
  • Properly handle microdata attributes (#​8413)
  • Prevent name collision when using computed destructuring variables (#​8417)
  • Fix escaping <textarea value={...}> values in SSR (#​8429)

v3.57.0

Compare Source

  • Add <svelte:document> (#​3310)
  • Add a11y no-noninteractive-element-to-interactive-role (#​8167)
  • Stop intro transition from triggering incorrectly (#​6152, #​6812)
  • Support computed and literal properties when destructuring objects in the template (#​6609)
  • Give style: directive precedence over style= attribute (#​7475)
  • Select <option> with selected attribute when initial state is undefined (#​8361)
  • Prevent derived store callbacks after store is unsubscribed from (#​8364)
  • Account for bind:group members being spread across multiple control flow blocks (#​8372)
  • Revert buggy reactive statement optimization (#​8374)
  • Support CSS units in the fly and blur transitions (#​7623)

v3.56.0

Compare Source

  • Add |stopImmediatePropagation event modifier (#​5085)
  • Add axis parameter to slide transition (#​6182)
  • Add readonly utility to convert writable store to readonly (#​6518)
  • Add readyState binding for media elements (#​6666)
  • Generate valid automatic component names when the filename contains only special characters (#​7143)
  • Add naturalWidth and naturalHeight bindings (#​7771)
  • Support <!-- svelte-ignore ... --> on components (#​8082)
  • Add a11y warnings:
    • aria-activedescendant-has-tabindex: checks that elements with aria-activedescendant have a tabindex (#​8172)
    • role-supports-aria-props: checks that the (implicit) element role supports the given aria attributes (#​8195)
  • Add data-sveltekit-replacestate and data-sveltekit-keepfocus attribute typings (#​8281)
  • Compute node dimensions immediately before crossfading (#​4111)
  • Fix potential infinite invalidate loop with <svelte:component> (#​4129)
  • Ensure bind:offsetHeight updates initially (#​4233)
  • Don't set selected options if value is unbound or not passed (#​5644)
  • Validate component :global() selectors (#​6272)
  • Improve warnings:
    • Make noreferrer warning less zealous (#​6289)
    • Omit a11y warnings on <video aria-hidden="true"> (#​7874)
    • Omit a11y warnings on <svelte:element> (#​7939)
    • Detect unused empty attribute CSS selectors (#​8042)
    • Omit "no child content" warning on elements with aria-label (#​8296)
  • Check value equality for <input type="search"> and <input type="url"> (#​7027)
  • Do not select a disabled <option> by default when the initial bound value is undefined (#​7041)
  • Handle {@&#8203;html} tags inside <template> tags (#​7364)
  • Ensure afterUpdate is not called after onDestroy (#​7476)
  • Improve handling of inert attribute (#​7500)
  • Reduce use of template literals in SSR output for better performance (#​7539)
  • Ensure <input> value persists when swapping elements with spread attributes in an {#each} block (#​7578)
  • Simplify generated code for reactive statements if dependencies are all static (#​7942)
  • Fix race condition on <svelte:element> with transitions (#​7948)
  • Allow assigning to a property of a const when destructuring (#​7964)
  • Match browser behavior for decoding malformed HTML entities (#​8026)
  • Ensure trusted-types CSP compatibility for Web Components (#​8134)
  • Optimise <svelte:element> output code for static tag and static attribute (#​8161)
  • Don't throw when calling unsubscribing from a store twice (#​8186)
  • Clear inputs when bind:group value is set to undefined (#​8214)
  • Fix handling of nested arrays with keyed {#each} containing a non-keyed {#each} (#​8282)

v3.55.1

Compare Source

  • Fix draw transition with delay showing a dot at the beginning of the path (#​6816)
  • Fix infinity runtime call stack when propagating bindings (#​7032)
  • Fix static <svelte:element> optimization in production mode (#​7937)
  • Fix svelte-ignore comment breaking named slot (#​8075)
  • Revert change to prevent running init binding unnecessarily (#​8103)
  • Fix adding duplicate event listeners with <svelte:element on:event> (#​8129)
  • Improve detection of promises that are also functions (#​8162)
  • Avoid mutating spread component props during SSR (#​8171)
  • Add missing typing for global part attribute (#​8181)
  • Add missing submitter property to on:submit event type

v3.55.0

Compare Source

  • Add svelte/elements for HTML/Svelte typings (#​7649)

v3.54.0

Compare Source

  • Pass options.direction argument to custom transition functions (#​3918)
  • Support fallback a11y WAI-ARIA roles (#​8044)
  • Prevent running init binding unnecessarily (#​5689, #​6298)
  • Allow updating variables from @const declared function (#​7843)
  • Do not emit a11y-no-noninteractive-tabindex warning if element has a tabpanel (#​8025)
  • Fix escaping SSR'd values in style: directive (#​8085)

v3.53.1

Compare Source

  • Fix exception in rel= attribute check with dynamic values (#​7994)
  • Do not emit deprecation warnings for css compiler options for now (#​8009)
  • Make compiler run in browser again (#​8010)
  • Upgrade tslib (#​8013)

v3.53.0

Compare Source

  • Check whether parentNode exists before removing child (#​6037)
  • Upgrade various dependencies, notably css-tree to 2.2.1 (#​7572, #​7982)
  • Extend css compiler option with 'external' | 'injected' | 'none' settings and deprecate old true | false values (#​7914)

v3.52.0

Compare Source

  • Throw compile-time error when attempting to update const variable (#​4895)
  • Warn when using <a target="_blank"> without rel="noreferrer" (#​6188)
  • Support style:foo|important modifier (#​7365)
  • Fix hydration regression with {@&#8203;html} and components in <svelte:head> (#​7941)

v3.51.0

Compare Source

  • Add a11y warnings:
    • a11y-click-events-have-key-events: check if click event is accompanied by key events (#​5073)
    • a11y-no-noninteractive-tabindex: check for tabindex on non-interactive elements (#​6693)
  • Warn when two-way binding to {...rest} object in {#each} block (#​6860)
  • Support --style-props on <svelte:component> (#​7461)
  • Supports nullish values for component event handlers (#​7568)
  • Supports SVG elements with <svelte:element>(#​7613)
  • Treat inert as boolean attribute (#​7785)
  • Support --style-props for SVG components (#​7808)
  • Fix false positive dev warnings about unset props when they are bound (#​4457)
  • Fix hydration with {@&#8203;html} and components in <svelte:head> (#​4533, #​6463, #​7444)
  • Support scoped style for <svelte:element> (#​7443)
  • Improve error message for invalid value for <svelte:component this={...}> (#​7550)
  • Improve error message when using logic blocks or tags at invalid location (#​7552)
  • Warn instead of throwing error if <svelte:element> is a void tag (#​7566)
  • Supports custom elements in <svelte:element> (#​7733)
  • Fix calling component unmount if a component is mounted and then immediately unmounted (#​7817)
  • Do not generate a11y-role-has-required-aria-props warning when elements match their semantic role (#​7837)
  • Improve performance of custom element data setting in <svelte:element> (#​7869)

v3.50.1

Compare Source

  • Add all global objects and functions as known globals (#​3805, #​7223)
  • Fix regression with style manager (#​7828)

v3.50.0

Compare Source

  • Add a11y warnings:
    • a11y-incorrect-aria-attribute-type: check ARIA state and property values (#​6978)
    • a11y-no-abstract-role: check that ARIA roles are non-abstract (#​6241)
    • a11y-no-interactive-element-to-noninteractive-role: check for non-interactive roles used on interactive elements (#​5955)
    • a11y-role-has-required-aria-props: check that elements with role attribute have all required attributes for that role (#​5852)
  • Add ComponentEvents convenience type (#​7702)
  • Add SveltePreprocessor utility type (#​7742)
  • Enhance action typings (#​7805)
  • Remove empty stylesheets created from transitions (#​4801, #​7164)
  • Make a11y-label-has-associated-control warning check all descendants for input control (#​5528)
  • Only show lowercase component name warnings for non-HTML/SVG elements (#​5712)
  • Disallow invalid CSS selectors starting with a combinator (#​7643)
  • Use Node.parentNode instead of Node.parentElement for legacy browser support (#​7723)
  • Handle arrow function on <slot> inside <svelte:fragment> (#​7485)
  • Improve parsing speed when encountering large blocks of whitespace (#​7675)
  • Fix class: directive updates in aborted/restarted transitions (#​7764)
ItalyPaleAle/svelte-spa-router (svelte-spa-router)

v3.3.0

Compare Source

This is a maintenance release that includes a few fixes.

New features:

  • A new public function restoreScroll is available to programmatically restore the scroll state to a given object - thanks @​nathaniel-daniel

Fixes:

  • Restoring scroll state works correctly now even when the page was scrolled on the X axis only - thanks @​Jan-Kruse
  • The WrapOptions type is now exported - thanks @​notiv-nt
  • Remove 'undefined' from history.replaceState() optional URL parameter for improved IE11 compatibility - thanks @​dipscom

v3.2.0

Compare Source

This release adds a few new features and fixes.

New features:

  • In the object that callbacks for routeLoading, routeLoaded and conditionsFailed receive, there's now a params property that contains the matches params
  • The router now exports a $params readable store that contains all params matched.
  • The use:link action now supports passing an object with options, including href and a new disable boolean which disables the link when true; the change maintains backwards-compatibility for when a string is passed rather than an object (#​163 - thanks @​omerman)

Fixes:


Configuration

📅 Schedule: Branch creation - "every 2 weeks on Monday before 7am" in timezone Europe/Berlin, Automerge - 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate bot requested review from Esshahn and ff6347 as code owners March 26, 2023 23:47
@socket-security
Copy link

socket-security bot commented Mar 26, 2023

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 73a13c9 to 26f40ea Compare May 29, 2023 17:59
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 26f40ea to 1513820 Compare December 1, 2023 09:32
Copy link

socket-security bot commented Dec 1, 2023

Updated and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Packages Version New capabilities Transitives Size Publisher
svelte-spa-router 3.1.0...3.3.0 None +1/-1 76.6 kB italypaleale

🚮 Removed packages: svelte@3.49.0

@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 5 times, most recently from d4b21d5 to d075f14 Compare December 4, 2023 10:08
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from d075f14 to a6d9d24 Compare December 8, 2023 14:14
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch 2 times, most recently from 057e0a2 to 92bb71c Compare January 25, 2024 17:39
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 92bb71c to 7e5fe63 Compare January 25, 2024 19:55
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 7e5fe63 to e99cb1b Compare March 1, 2024 14:33
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from e99cb1b to 542857b Compare April 10, 2024 15:24
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 542857b to 38a1adf Compare May 3, 2024 19:55
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from 38a1adf to c0a5c68 Compare May 16, 2024 17:37
@renovate renovate bot force-pushed the renovate/dependencies-non-major branch from c0a5c68 to a825dbe Compare May 24, 2024 11:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants