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 all non-major dependencies #352

Merged
merged 1 commit into from
Jan 22, 2025
Merged

Update all non-major dependencies #352

merged 1 commit into from
Jan 22, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@internationalized/date (source) 3.6.0 -> 3.7.0 age adoption passing confidence
@sveltejs/adapter-node (source) 5.2.11 -> 5.2.12 age adoption passing confidence
@sveltejs/kit (source) 2.15.2 -> 2.16.1 age adoption passing confidence
bits-ui 1.0.0-next.77 -> 1.0.0-next.78 age adoption passing confidence
eslint (source) 9.17.0 -> 9.18.0 age adoption passing confidence
layerchart ^0.60.0 -> ^0.74.0 age adoption passing confidence
lucide-svelte (source) ^0.469.0 -> ^0.473.0 age adoption passing confidence
postcss (source) 8.4.49 -> 8.5.1 age adoption passing confidence
prettier-plugin-svelte 3.3.2 -> 3.3.3 age adoption passing confidence
prettier-plugin-tailwindcss 0.6.9 -> 0.6.10 age adoption passing confidence
runed (source) 0.23.0 -> 0.23.1 age adoption passing confidence
svelte (source) 5.17.3 -> 5.19.2 age adoption passing confidence
svelte-check 4.1.3 -> 4.1.4 age adoption passing confidence
svelte-dnd-action 0.9.54 -> 0.9.55 age adoption passing confidence
svelte-ux ^0.77.0 -> ^0.90.0 age adoption passing confidence
sveltekit-superforms (source) 2.22.1 -> 2.23.1 age adoption passing confidence
tailwind-variants 0.3.0 -> 0.3.1 age adoption passing confidence
typescript-eslint (source) 8.19.1 -> 8.21.0 age adoption passing confidence
vite (source) 6.0.7 -> 6.0.11 age adoption passing confidence

Release Notes

adobe/react-spectrum (@​internationalized/date)

v3.7.0

Compare Source

sveltejs/kit (@​sveltejs/adapter-node)

v5.2.12

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/kit)

v2.16.1

Compare Source

Patch Changes
  • fix: avoid overwriting headers for sub-requests made while loading the error page (#​13341)

  • fix: correctly resolve index file entrypoints such as src/service-worker/index.js (#​13354)

  • fix: correctly handle relative anchors when using the hash router (#​13356)

v2.16.0

Compare Source

Minor Changes
  • feat: add ability to invalidate a custom identifier on goto() (#​13256)

  • feat: remove the postinstall script to support pnpm 10 (#​13304)

    NOTE: users should add "prepare": "svelte-kit sync" to their package.json in order to avoid the following warning upon first running Vite:

    ▲ [WARNING] Cannot find base config file "./.svelte-kit/tsconfig.json" [tsconfig.json]
    
        tsconfig.json:2:12:
          2 │   "extends": "./.svelte-kit/tsconfig.json",
            ╵              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
  • feat: provide PageProps and LayoutProps types (#​13308)

Patch Changes
  • perf: shorten chunk file names (#​13003)

  • fix: strip internal data before passing URL to reroute (#​13092)

  • fix: support absolute URLs and reroutes with data-sveltekit-preload-code="viewport" (#​12217)

  • fix: use current window.fetch for server load fetch requests (#​13315)

  • fix: resolve symlinks when handling routes (#​12740)

  • fix: prevent infinite reload when using the hash router and previewing /index.html (#​13296)

  • fix: service worker base path in dev mode (#​12577)

  • chore: error during development when using use:enhance with +server (#​13197)

  • chore: add most common status codes to redirect() JS documentation (#​13301)

  • fix: correctly link to assets inlined by the inlineStyleThreshold option (#​13068)

  • fix: fall back to importing dynamic dependencies relative to SvelteKit package (#​12532)

  • fix: use arrow function types over bound funcs (#​12955)

  • fix: correctly navigate when hash router is enabled and the browser encodes extra hashes (#​13321)

v2.15.3

Compare Source

Patch Changes
  • fix: fix race-condition when not using SSR when pressing back before initial load (#​12925)

  • fix: remove ":$" from virtual module ids to allow dev server to work with proxies (#​12157)

  • fix: upgrade esm-env to remove warning when NODE_ENV is not set (#​13291)

  • fix: handle Redirect thrown from root layout load function when client-side navigating to a non-existent page (#​12005)

  • fix: make param matchers generated type import end with .js (#​13286)

huntabyte/bits-ui (bits-ui)

v1.0.0-next.78

Compare Source

Patch Changes
  • Allow <Button/> with href to be disabled. (#​1055)

  • BREAKING: Select - change default value of allowDeselect to false to align with native HTML <select> (#​1049)

  • fix: ensure disabled is passed through to Dialog.Trigger and Dialog.Close (#​1057)

eslint/eslint (eslint)

v9.18.0

Compare Source

techniq/layerchart (layerchart)

v0.74.0

Compare Source

Minor Changes
  • breaking(Bar|Bars): Replaced inset: number prop with insets: Insets | undefined. (#​321)

    To migrate from inset to insets replace inset = n with:

    • insets = { x: n / 2 } if orientation="vertical"
    • insets = { y: n / 2 } if orientation="horizontal"
  • feat(BarChart): Add stackPadding prop, which adds a padding between stacked bars. (#​321)

v0.73.0

Compare Source

Minor Changes
  • feat: Support passing props.tooltip to all simplified charts, applying to Tooltip.Root, Tooltip.Item, etc (58d70fc)

v0.72.2

Compare Source

Patch Changes
  • fix(BarChart): Compatibility with Svelte 3/4 after accidental introduction of typescript in markup (59dc772)

v0.72.1

Compare Source

Patch Changes
  • fix: Compatibility with Svelte 3/4 after accidental introduction of typescript in markup (bec9207)

v0.72.0

Compare Source

Minor Changes
  • feat: Add onTooltipClick callback event for all simplified charts (AreaChart, BarChart, LineChart, PieChart, and ScatterChart) (#​322)

  • feat(BarChart): Add onBarClick callback event (useful for multi-series charts) (#​322)

  • feat(AreaChart|LineChart): Add onPointClick callback event (useful for multi-series charts) (#​322)

  • feat(PieChart): Add onArcClick callback event (#​322)

  • feat(Bars): Add onBarClick callback event (#​322)

  • feat(Highlight): Add onAreaClick, onBarClick, and onPointClick callback events (#​322)

Patch Changes
  • fix(BarChart): Fix Tooltip handling with separate series data (6708650)

v0.71.3

Compare Source

Patch Changes
  • fix(Tooltip): Only attempt repositiong if not fixed (ie. pointer/data) (7461788)

v0.71.2

Compare Source

Patch Changes
  • fix(Spline): Remove redundant {...$restProps} which also caused default classes to be overridden (ex. fill-none) (487357a)

v0.71.1

Compare Source

Patch Changes
  • fix(Bar): Fix strokeWidth prop (#​316)
  • fix(Spline): Pass {...$restProps} to underlying <path> element (#​316)

v0.71.0

Compare Source

Minor Changes
  • feat(Tooltip): Support contained="window" to keep tooltip within window/viewport (along with container and false) (e00528a)

v0.70.4

Compare Source

Patch Changes
  • feat(Axis): Add classes properties for rule, tick, and tickLabel for convenient styling ([5433da5`](5433da5))

v0.70.3

Compare Source

Patch Changes
  • fix(AreaChart|LineChart): Handling finding closest series data point with complex data types (ex. Date) when using seperate series data (a75f612)

v0.70.2

Compare Source

Patch Changes
  • fix(AreaChart): Fix Area handling of separate series data (6a7be43)

  • fix(LineChart|AreaChart): Fix Tooltip/Highlight handling of separate series data (6a7be43)

v0.70.1

Compare Source

Patch Changes
  • fix: Use relative import instead of alias to fix npm usage (9c4a07a)

v0.70.0

Compare Source

Minor Changes
  • feat: Improve Canvas implementation with render registration system including synchronized invalidation / redrawing (#​295)

  • feat: Support Canvas context for most primatives (Arc, Area, Circle, Group, Line, LinearGradient, Rect, Spline, and Text). Also updates components using these primatives (Axis, Bar, Grid, Rule, and more) (#​295)

  • feat: Update all simplified charts to support renderContext prop to switch between Svg (default) and Canvas (AreaChart, BarChart, LineChart, PieChart, and ScatterChart) (#​295)

  • feat: Add renderPathData() canvas util to simplify rendering SVG path data onto canvas context with CSS variable and class support (#​295)

  • feat: Add renderRect() canvas util to simplify rendering rectangles onto canvas context with CSS variable and class support (#​295)

  • feat: Add renderText() canvas util to simplify rendering text onto canvas context with CSS variable and class support (#​295)

  • feat: Add ComputedStyles component to easily resolve classes / CSS variable values (useful when working with ) (#​295)

  • feat(Canvas): Support center prop (similar to Svg) to translate children to center (useful for radial layouts) (#​295)

  • breaking(LinearGradient|RadialGradient): Rename url slot prop to gradient. Improves name, especially within canvas context (#​295)

  • breaking(GeoPath): Simplify render prop use case by leveraging renderPathData() (ex. HitCanvas) (#​295)

  • breaking: Reduce likihood of clipping for Canvas-rendered simplified charts by increasing default padding (and add top)) (#​295)

Patch Changes
  • fix(Canvas): Support multiple children (fix infinite loops, coordinating redraws, etc). Resolves issue #​158 (#​295)

  • feat: Add scaleCanvas util (#​295)

  • feat: Add spikePath() util (#​295)

  • feat: Add clearCanvasContext() util (#​295)

  • fix(circlePath): Correctly handle sweep argument (#​295)

lucide-icons/lucide (lucide-svelte)

v0.473.0: New icons 0.473.0

Compare Source

Modified Icons 🔨

v0.472.0: New icons 0.472.0

Compare Source

New icons 🎨

What's Changed

Full Changelog: lucide-icons/lucide@0.471.1...0.472.0

v0.471.0: Dynamic Icon component Lucide React and new icons 0.471.0

Compare Source

New Dynamic Icon Component (lucide-react)

This is an easier approach than the previous dynamicIconImports we exported in the library. This one supports all environments.
We removed the examples in the docs of how you can make a dynamic icon yourself with a dedicated DynamicIcon component.
This one fetches the icon data itself and renders it instead of fetching the Icon component from the library.
This makes it more flexible with all the frontend frameworks and libraries that exist for React.

🚨
Not recommended for regular applications that work fine with the regular static icon components.
Using the dynamic icon component increases build time, separate bundles, and separate network requests for each icon.

How to use

DynamicIcon is useful for applications that want to show icons dynamically by icon name, for example when using a content management system where icon names are stored in a database.

const App = () => (
  <DynamicIcon name="camera" color="red" size={48} />
);
Possible Breaking changes

We have switched to the "exports" property in package.json. This can cause issues if you have directly imported scripts from the package. Please open an issue if we need to refine this export map.

New icons 🎨

v0.470.0: New icons 0.470.0

Compare Source

New icons 🎨

Modified Icons 🔨

postcss/postcss (postcss)

v8.5.1

Compare Source

v8.5.0: 8.5 “Duke Alloces”

Compare Source

President Alloces seal

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)

v3.3.3

Compare Source

tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.6.10

Compare Source

  • Add support for @zackad/prettier-plugin-twig (#​327)
  • Drop support for @zackad/prettier-plugin-twig-melody (#​327)
  • Update Prettier options types (#​325)
  • Don't remove whitespace inside template literals in Svelte (#​332)
svecosystem/runed (runed)

v0.23.1

Compare Source

Patch Changes
  • fix: remove PURE from global exports (#​200)
sveltejs/svelte (svelte)

v5.19.2

Compare Source

Patch Changes
  • fix: address regression with untrack (#​15079)

v5.19.1

Compare Source

Patch Changes
  • fix: omit unnecessary nullish coallescing in template expressions (#​15056)

  • fix: more efficient template effect grouping (#​15050)

  • fix: ensure untrack correctly retains the active reaction (#​15065)

  • fix: initialize files bind on hydration (#​15059)

v5.19.0

Compare Source

Minor Changes
  • feat: Expose ClassValue from svelte/elements (#​15035)
Patch Changes
  • fix: create fewer deriveds for concatenated strings (#​15041)

  • fix: correctly parse leading comments in function binding (#​15020)

v5.18.0

Compare Source

Minor Changes
  • feat: allow <template> elements to contain any child (#​15007)
Patch Changes
  • fix: ensure resume effects are scheduled in topological order (#​15012)

  • fix: bump esrap (#​15015)

  • fix: remove listener on bind_current_time teardown (#​15013)

v5.17.5

Compare Source

Patch Changes
  • feat: allow const tag inside svelte:boundary (#​14993)

  • fix: ensure signal write invalidation within effects is consistent (#​14989)

v5.17.4

Compare Source

Patch Changes
  • fix: never consider inert boundary effects (#​14999)

  • fix: store access on component destroy (#​14968)

  • fix: correctly transform pre with no content (#​14973)

  • fix: wrap each block expression in derived to encapsulate effects (#​14967)

sveltejs/language-tools (svelte-check)

v4.1.4

Compare Source

  • fix: don't hoist types/snippets referencing stores or destructured variables (#​2661)
isaacHagoel/svelte-dnd-action (svelte-dnd-action)

v0.9.55

Compare Source

Fixed logic that could leave the shadow element invisible after drop if the dom wasn't yet updated to reflect the data list (rare)

techniq/svelte-ux (svelte-ux)

v0.90.0

Compare Source

Minor Changes
  • breaking: Migrate to @​layerstack/* packages (#​489)

  • breaking: Replace tailwind plugin svelte-ux/plugins/tailwind.cjs with @layerstack/tailwind/plugin (#​489)

v0.77.1

Compare Source

Patch Changes
  • Update dependencies (c9f7a27)

  • feat(TextField): Add bind:inputEl support when using multiline (textarea) (d51c505)

  • Bump dependencies (f55562d)

ciscoheat/sveltekit-superforms (sveltekit-superforms)

v2.23.1

Removed
  • Rolled back runes option for SuperDebug, it wasn't compatible with Svelte 4.

v2.23.0

Compare Source

Added
Fixed
  • Fixed dateProxy for time formats, previously it returned an invalid date. If you only care about the time part in the date, use time-utc as format to avoid timezone changes.
  • Vite 6 bundling fixed by introducing a default field into exports in package.json.
Changed
  • Arktype 2.0 is finally released! Adapter updated, please check it out, it's validation on the next level.
  • Arktype is now displaying errors with problem instead of message, for nicer output.
  • Zod peerDependency updated to 3.24.1 to be compatible with its latest fix.
  • VineJS adapter updated to 3.0.0.
heroui-inc/tailwind-variants (tailwind-variants)

v0.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: heroui-inc/tailwind-variants@v0.3.0...v0.3.1

typescript-eslint/typescript-eslint (typescript-eslint)

v8.21.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.20.0

Compare Source

🚀 Features
  • eslint-plugin: [no-misused-spread] add new rule (#​10551)
❤️ Thank You
  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v6.0.11

Compare Source

v6.0.10

Compare Source

v6.0.9

Compare Source

  • fix!: check host header to prevent DNS rebinding attacks and introduce server.allowedHosts (bd896fb)
  • fix!: default server.cors: false to disallow fetching from untrusted origins (b09572a)
  • fix: verify token for HMR WebSocket connection (029dcd6)

v6.0.8

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 71838d8 to d970f5c Compare January 10, 2025 22:46
@renovate renovate bot changed the title Update dependency lucide-svelte to ^0.471.0 Update all non-major dependencies Jan 10, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 23 times, most recently from 5014850 to 0a45511 Compare January 19, 2025 20:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from d458798 to bbde280 Compare January 21, 2025 09:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 0946cd4 to 31851a2 Compare January 22, 2025 04:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 31851a2 to 7a16153 Compare January 22, 2025 17:42
@ptlthg ptlthg merged commit 84a26c5 into main Jan 22, 2025
3 checks passed
@ptlthg ptlthg deleted the renovate/all-minor-patch branch January 22, 2025 20:59
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.

1 participant