Skip to content

fix(deps): update dependencies #56

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

Merged
merged 1 commit into from
Feb 27, 2024
Merged

fix(deps): update dependencies #56

merged 1 commit into from
Feb 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 12, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@docusaurus/core (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/module-type-aliases (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/plugin-sitemap (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/preset-classic (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/theme-live-codeblock (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/theme-mermaid (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@docusaurus/types (source) 3.0.0 -> 3.1.1 age adoption passing confidence
@mdx-js/react (source) 3.0.0 -> 3.0.1 age adoption passing confidence
clsx 2.0.0 -> 2.1.0 age adoption passing confidence
prism-react-renderer 2.3.0 -> 2.3.1 age adoption passing confidence

Release Notes

facebook/docusaurus (@​docusaurus/core)

v3.1.1

Compare Source

🐛 Bug Fix
  • docusaurus-types, docusaurus
    • #​9791 fix(core): broken links optimization behaves differently than non-optimized logic (@​slorber)
  • docusaurus
  • docusaurus-utils
  • create-docusaurus
  • docusaurus-theme-common
    • #​9727 fix(theme-common): fix missing code block MagicComments style in Visual Basic (.NET) 16 (@​tats-u)
  • docusaurus-theme-classic, docusaurus-theme-mermaid
  • docusaurus-module-type-aliases, docusaurus-theme-classic, docusaurus-theme-common, docusaurus-utils, docusaurus
🏃‍♀️ Performance
💅 Polish
Committers: 6

v3.1.0

Compare Source

🚀 New Feature
  • docusaurus-mdx-loader, docusaurus-module-type-aliases, docusaurus-theme-classic, docusaurus-types, docusaurus-utils, docusaurus
    • #​9528 feat(core): make broken link checker detect broken anchors - add onBrokenAnchors config (@​OzakIOne)
  • docusaurus-mdx-loader, docusaurus-types, docusaurus
    • #​9674 feat(mdx-loader): add support for siteConfig.markdown.remarkRehypeOptions (@​slorber)
  • docusaurus-theme-common
    • #​9671 feat(theme-common): code block MagicComments support for (Visual) Basic/Batch/Fortran/COBOL/ML (@​tats-u)
  • docusaurus-mdx-loader, docusaurus-plugin-content-blog, docusaurus-plugin-content-docs, docusaurus-plugin-content-pages, docusaurus-types, docusaurus-utils, docusaurus
  • docusaurus-utils
🐛 Bug Fix
  • docusaurus-theme-classic, docusaurus-theme-live-codeblock
  • create-docusaurus
    • #​9696 fix(create-docusaurus): fix init template code blocks, and little improvements (@​slorber)
  • docusaurus-plugin-pwa
  • docusaurus
  • docusaurus-theme-live-codeblock
    • #​9631 fix(live-codeblock): stabilize react-live transformCode callback, fix editor/preview desync (@​slorber)
  • docusaurus-utils
  • docusaurus-module-type-aliases
  • docusaurus-plugin-content-blog
  • docusaurus-theme-translations
    • #​9477 fix(i18n): complete translations for theme-common.json Brazilian Portuguese (pt-BR) (@​c0h1b4)
💅 Polish
  • docusaurus-theme-common
    • #​9335 refactor(theme-common): allow optional desktopBreakpoint param in useWindowSize (@​jgarrow)
🔧 Maintenance
Committers: 8

v3.0.1

Compare Source

🐛 Bug Fix
  • docusaurus-utils
  • create-docusaurus, docusaurus-theme-classic, docusaurus-theme-common
    • #​9567 fix(theme): upgrade prism-react-renderer, fix html script and style tag highlighting (@​slorber)
  • docusaurus-theme-common
  • docusaurus-theme-classic
  • create-docusaurus
🤖 Dependencies
  • docusaurus-plugin-debug
  • create-docusaurus, docusaurus-theme-classic, docusaurus-theme-common
    • #​9572 chore: upgrade prism-react-renderer to 2.3.0 to avoid older clsx (@​harryzcy)
    • #​9567 fix(theme): upgrade prism-react-renderer, fix html script and style tag highlighting (@​slorber)
  • create-docusaurus, docusaurus-plugin-pwa, docusaurus-theme-classic, docusaurus-theme-common, docusaurus-theme-live-codeblock, docusaurus-theme-search-algolia
  • docusaurus
  • docusaurus-plugin-pwa, docusaurus
Committers: 6
mdx-js/mdx (@​mdx-js/react)

v3.0.1

Compare Source

Fix
Types
Site

Full Changelog: mdx-js/mdx@3.0.0...3.0.1

lukeed/clsx (clsx)

v2.1.0

Compare Source

Features

  • Add new clsx/lite submodule for string-only usage: 1a49142

    This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx usage pattern:

    clsx('foo bar', props.maybe && 'conditional classes', props.className);

    Important: This clsx/lite module ignores all non-string arguments and is therefore not a 1:1 replacement for clsx itself!

    import { clsx } from 'clsx';
    import { clsx as lite } from 'clsx/lite';
    
    // strings-only usage is identical
    clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    
    // clsx/lite ignores all non-strings
    clsx('foo', { a: true, b: false, c: true }); //=> "foo a c"
    lite('foo', { a: true, b: false, c: true }); //=> "foo"

Full Changelog: lukeed/clsx@v2.0.1...v2.1.0

v2.0.1

Compare Source

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#​26): deff09b
    Adds 5 bytes (+2%) for ~3% avg performance gain
    Thank you @​jalalazimi

Chores


Full Changelog: lukeed/clsx@v2.0.0...v2.0.1

FormidableLabs/prism-react-renderer (prism-react-renderer)

v2.3.1

Compare Source

Patch Changes
  • Export normalizeTokens and useTokenize utility functions.
    (#​237)

Configuration

📅 Schedule: Branch creation - "after 9pm on sunday" in timezone Asia/Calcutta, 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 force-pushed the renovate/dependencies branch 3 times, most recently from 52333d1 to 85ddadd Compare March 21, 2023 13:03
@renovate renovate bot force-pushed the renovate/dependencies branch 4 times, most recently from 3482f37 to 443a78e Compare April 4, 2023 16:30
@renovate renovate bot force-pushed the renovate/dependencies branch from 443a78e to 2177323 Compare April 8, 2023 02:00
@renovate renovate bot force-pushed the renovate/dependencies branch 7 times, most recently from 415a3be to 4dc9178 Compare April 23, 2023 03:37
@renovate renovate bot force-pushed the renovate/dependencies branch 6 times, most recently from 0f287ff to 6e4d178 Compare May 2, 2023 23:06
@renovate renovate bot force-pushed the renovate/dependencies branch from 6e4d178 to ead5013 Compare May 5, 2023 23:55
@renovate renovate bot force-pushed the renovate/dependencies branch 5 times, most recently from cc3a4e7 to 53b978e Compare June 6, 2023 00:51
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from f7b8dec to cb3e093 Compare June 10, 2023 06:52
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from af4d6d1 to 71ffdb3 Compare October 17, 2023 11:07
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 0a3a1b9 to 10be4ed Compare October 25, 2023 12:23
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 7741dde to 0d1d51c Compare November 9, 2023 07:33
@renovate renovate bot force-pushed the renovate/dependencies branch 3 times, most recently from 727e106 to 79b4679 Compare November 20, 2023 15:36
@renovate renovate bot changed the title chore(deps): update dependencies chore(deps): update dependencies - autoclosed Nov 24, 2023
@renovate renovate bot closed this Nov 24, 2023
@renovate renovate bot deleted the renovate/dependencies branch November 24, 2023 07:46
@renovate renovate bot changed the title chore(deps): update dependencies - autoclosed chore(deps): update dependencies Nov 30, 2023
@renovate renovate bot reopened this Nov 30, 2023
@renovate renovate bot restored the renovate/dependencies branch November 30, 2023 18:49
@renovate renovate bot changed the title chore(deps): update dependencies fix(deps): update dependencies to v3.0.1 Nov 30, 2023
@renovate renovate bot force-pushed the renovate/dependencies branch from 79b4679 to fe41670 Compare November 30, 2023 21:30
@renovate renovate bot force-pushed the renovate/dependencies branch from fe41670 to edffe93 Compare December 18, 2023 15:05
@renovate renovate bot changed the title fix(deps): update dependencies to v3.0.1 fix(deps): update dependencies Dec 18, 2023
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 08d768e to 91cdd8b Compare January 5, 2024 18:49
@renovate renovate bot force-pushed the renovate/dependencies branch from 91cdd8b to e8cd0e7 Compare January 26, 2024 14:37
@renovate renovate bot force-pushed the renovate/dependencies branch from e8cd0e7 to 68428e7 Compare February 12, 2024 13:56
@renovate renovate bot force-pushed the renovate/dependencies branch from 68428e7 to c38edd8 Compare February 27, 2024 12:24
@charlypa charlypa merged commit ee4e9be into main Feb 27, 2024
@charlypa charlypa deleted the renovate/dependencies branch February 27, 2024 12:25
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