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 #4390

Merged
merged 1 commit into from
May 20, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 20, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@testing-library/vue ^8.0.3 -> ^8.1.0 age adoption passing confidence
@types/node (source) ^20.12.11 -> ^20.12.12 age adoption passing confidence
chart.js (source) ^4.4.2 -> ^4.4.3 age adoption passing confidence
esbuild ^0.21.2 -> ^0.21.3 age adoption passing confidence
lightningcss ^1.24.1 -> ^1.25.0 age adoption passing confidence
vitepress (source) ^1.1.4 -> ^1.2.0 age adoption passing confidence

Release Notes

testing-library/vue-testing-library (@​testing-library/vue)

v8.1.0

Compare Source

Features
  • Add types for props and slots in render function (d46ed8f)
chartjs/Chart.js (chart.js)

v4.4.3

Compare Source

Essential Links

  • #​11754 Fix error when object prototype is frozen

Bugs Fixed

  • #​11764 do not attempt to clear canvas if one does not exist
  • #​11755 #<!---->11450 hide bar by dataindex
  • #​11690 Create parsed object with correct keys
  • #​11707 platform.isAttached should return false if canvas is false-y

Documentation

Development

Thanks to @​DAcodedBEAT, @​EricWittrock, @​LeeLenaleee, @​LiamSwayne, @​dependabot and @​dependabot[bot]

evanw/esbuild (esbuild)

v0.21.3

Compare Source

  • Implement the decorator metadata proposal (#​3760)

    This release implements the decorator metadata proposal, which is a sub-proposal of the decorators proposal. Microsoft shipped the decorators proposal in TypeScript 5.0 and the decorator metadata proposal in TypeScript 5.2, so it's important that esbuild also supports both of these features. Here's a quick example:

    // Shim the "Symbol.metadata" symbol
    Symbol.metadata ??= Symbol('Symbol.metadata')
    
    const track = (_, context) => {
      (context.metadata.names ||= []).push(context.name)
    }
    
    class Foo {
      @&#8203;track foo = 1
      @&#8203;track bar = 2
    }
    
    // Prints ["foo", "bar"]
    console.log(Foo[Symbol.metadata].names)

    ⚠️ WARNING ⚠️

    This proposal has been marked as "stage 3" which means "recommended for implementation". However, it's still a work in progress and isn't a part of JavaScript yet, so keep in mind that any code that uses JavaScript decorator metadata may need to be updated as the feature continues to evolve. If/when that happens, I will update esbuild's implementation to match the specification. I will not be supporting old versions of the specification.

  • Fix bundled decorators in derived classes (#​3768)

    In certain cases, bundling code that uses decorators in a derived class with a class body that references its own class name could previously generate code that crashes at run-time due to an incorrect variable name. This problem has been fixed. Here is an example of code that was compiled incorrectly before this fix:

    class Foo extends Object {
      @&#8203;(x => x) foo() {
        return Foo
      }
    }
    console.log(new Foo().foo())
  • Fix tsconfig.json files inside symlinked directories (#​3767)

    This release fixes an issue with a scenario involving a tsconfig.json file that extends another file from within a symlinked directory that uses the paths feature. In that case, the implicit baseURL value should be based on the real path (i.e. after expanding all symbolic links) instead of the original path. This was already done for other files that esbuild resolves but was not yet done for tsconfig.json because it's special-cased (the regular path resolver can't be used because the information inside tsconfig.json is involved in path resolution). Note that this fix no longer applies if the --preserve-symlinks setting is enabled.

parcel-bundler/lightningcss (lightningcss)

v1.25.0

Compare Source

This release adds more granular options for CSS modules, implements some new CSS properties, and fixes bugs.

Added

  • Add granular options to control which identifiers are scoped in CSS modules. You can turn off scoping for grid, animation, and custom_idents. This may be useful when migrating from other tools. See docs. Thanks @​timneutkens! 83839a9
  • Optimize the all shorthand property to reset other properties except direction and unicode-bidi. d7aeff3
  • Implement animation-timeline property and add support for it in the animation shorthand f4408c7

Fixed

  • Prevent simplifying translate: none and scale: none which are distinct from translate: 0 and scale: 1. Thanks @​RobinMalfait! a4cc024
  • Fix crash on box-shadow with currentColor keyword. Thanks @​magic-akari! 06ba62f
  • Fix minifier removing zero channels in color() function to follow spec change 445def9
  • Fix CSS module scoping with variables in animation shorthand fb4b334
  • Update browser compatibility data ec9da43
vuejs/vitepress (vitepress)

v1.2.0

Compare Source

Bug Fixes
  • build: show file info on error (f0debd2)
  • dev: match dev and prod routing behavior (#​3837) (b360ac8)
  • markdown: entities and escapes not working properly (#​3882) (d5dbd70)
  • render 404 page completely on client to infer locale from browser path (#​3858) (728cb15)
  • style: prefer YaHei over DengXian (f0a37b4)
  • theme/regression: custom font not applying in Chinese docs because of specificity (fa2f38a), closes #​3864
  • theme: external link icon not visible for target _blank links (d08eeed), closes #​3327
  • theme: fix invalid vp-offset in ssr (9794877)
Features

1.1.4 (2024-04-27)

Bug Fixes
  • dev: multiple server instances being created when editing config too quickly (#​3835) (729a890)
  • theme/a11y: add unique name to footer prev / next navigation landmark (e60c101)
  • theme/a11y: remove duplicate assistive text from outline nav (#​3803) (733d986)
  • theme/i18n: 404 page not showing localized text (#​3833) (cc11b8e)
  • theme: disable keypress effect on search button (ccc37bb)
  • theme: don't use Chinese quotes on non-Chinese documents (#​3834) (75115f4)
  • theme: leaking event listener when going back/forward on Safari on iOS (#​3658) (#​3671) (1a72181)

1.1.3 (2024-04-18)

Bug Fixes
  • build/regression: markdown backslash escapes not working (d02d1e9), closes #​3808

1.1.1 (2024-04-18)

Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from jaapmarcus May 20, 2024 02:59
@jaapmarcus jaapmarcus merged commit ecac665 into main May 20, 2024
7 checks passed
@jaapmarcus jaapmarcus deleted the dependencies/all-minor-patch branch May 20, 2024 11:57
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

2 participants