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

chore(deps): Update js minor and patch #46

Merged
merged 1 commit into from
Jan 15, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 15, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hypermode/modus-sdk-as 0.16.0 -> 0.16.2 age adoption passing confidence
embla-carousel-react (source) 8.5.1 -> 8.5.2 age adoption passing confidence
framer-motion 11.15.0 -> 11.17.0 age adoption passing confidence
input-otp (source) 1.4.1 -> 1.4.2 age adoption passing confidence
lucide-react (source) ^0.454.0 -> ^0.471.0 age adoption passing confidence
next (source) 15.1.3 -> 15.1.4 age adoption passing confidence
react-markdown 9.0.1 -> 9.0.3 age adoption passing confidence

Release Notes

hypermodeinc/modus (@​hypermode/modus-sdk-as)

v0.16.2

Compare Source

No changes. Re-released previous version to fix release issue.

davidjerleke/embla-carousel (embla-carousel-react)

v8.5.2

Compare Source

Support

Embla Carousel is an open source MIT licensed project. If you are interested in supporting this project you can sponsor it here:

What's Changed
New Contributors

Full Changelog: davidjerleke/embla-carousel@v8.5.1...v8.5.2

motiondivision/motion (framer-motion)

v11.17.0

Compare Source

Added
  • Added propagate to AnimatePresence. This prop allows parent exit animations to be propagated to children.
Removed
  • Removed exitBeforeEnter from AnimatePresence.

v11.16.7

Compare Source

Fixed
  • Fixing timelines where a string label is used as the first segment.

v11.16.6

Compare Source

Changed
  • More movement values like height and top are now blocked by reduced motion.

v11.16.4

Compare Source

Fixed
  • Fix type of attachTimeline when skipLibCheck is disabled.

v11.16.3

Compare Source

Fixed
  • Checking return of press, hover, and inView callbacks before calling.

v11.16.2

Compare Source

Fixed
  • Restoring missing type exports.

v11.16.1

Compare Source

Fixed
  • Adding displayName to motion components.
  • Ensure press doesn't override tabindex when explicitly set.

v11.16.0

Compare Source

Added
  • Added view() alpha to early access.
guilhermerodz/input-otp (input-otp)

v1.4.2

Compare Source

  • chore(input): remove unintentional log within internal pasteListener
lucide-icons/lucide (lucide-react)

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 🔨

v0.469.0: New icons 0.469.0

Compare Source

Modified Icons 🔨

v0.468.0: New icons 0.468.0

Compare Source

New icons 🎨

v0.467.0: New icons 0.467.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.466.0: New icons 0.466.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.465.0: New icons 0.465.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.464.0: New icons 0.464.0

Compare Source

Modified Icons 🔨

v0.463.0: New icons 0.463.0

Compare Source

Modified Icons 🔨

v0.462.0: New icons 0.462.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.461.0: New icons 0.461.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.460.0: New icons 0.460.0

Compare Source

New icons 🎨

v0.459.0: New icons 0.459.0

Compare Source

New icons 🎨

v0.458.0: New icons 0.458.0

Compare Source

New icons 🎨

Modified Icons 🔨

Other Changes

Full Changelog: lucide-icons/lucide@0.457.0...0.458.0

v0.457.0: New icons 0.457.0

Compare Source

New icons 🎨

Modified Icons 🔨

v0.456.0: Choosing import name style 0.456.0

Compare Source

What's Changed

Adjustable icon naming imports

Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.

  1. Turn off autocomplete in your IDE:
    Add the following to your settings.json
{
  "typescript.preferences.autoImportFileExcludePatterns": [
    "lucide-react",
    "lucide-preact",
    "lucide-react-native",
    "lucide-vue-next"
  ]
}
  1. Create a custom module declaration file:

It allows you to choose the import name style.

For React:

declare module "lucide-react" {
  // Prefixed import names
  export * from "lucide-react/dist/lucide-react.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-react/dist/lucide-react.suffixed";
}

For Vue:

declare module "lucide-vue-next" {
  // Prefixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}

v0.455.0: New icons 0.455.0

Compare Source

New icons 🎨

Modified Icons 🔨

vercel/next.js (next)

v15.1.4

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • backport: force module format for virtual client-proxy (#​74608)
  • Fix prerender tags when notFound is called (#​74607)
  • Use provided waitUntil for pending revalidates (#​74604)
  • Feature: next/image: add support for images.qualities in next.config (#​74588)
  • Chore: docs: add missing search: '' on remotePatterns (#​74587)
  • Chore: docs: update version history of next/image (#​73923) (#​74570)
  • Chore: next/image: improve imgopt api bypass detection for unsupported images (#​74569)
Credits

Huge thanks to @​ and @​ for helping!

remarkjs/react-markdown (react-markdown)

v9.0.3

Compare Source

(same as 9.0.2 but now with d.ts files)

Full Changelog: remarkjs/react-markdown@9.0.2...9.0.3

v9.0.2

Compare Source

Types
Miscellaneous

Full Changelog: remarkjs/react-markdown@9.0.1...9.0.2


Configuration

📅 Schedule: Branch creation - "on Wednesday" (UTC), 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 requested a review from a team as a code owner January 15, 2025 02:22
ryanfoxtyler
ryanfoxtyler previously approved these changes Jan 15, 2025
@renovate renovate bot force-pushed the renovate/js-minor-and-patch branch from bb653ec to 16af9f0 Compare January 15, 2025 13:21
@ryanfoxtyler ryanfoxtyler merged commit c8864b6 into main Jan 15, 2025
17 checks passed
@ryanfoxtyler ryanfoxtyler deleted the renovate/js-minor-and-patch branch January 15, 2025 13:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant