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

Merged
merged 1 commit into from Oct 15, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 11, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild 0.15.10 -> 0.15.11 age adoption passing confidence
happy-dom ^7.5.5 -> ^7.5.12 age adoption passing confidence
unbuild ^0.8.11 -> ^0.9.2 age adoption passing confidence
vite (source) ^3.1.7 -> ^3.1.8 age adoption passing confidence
vitest ^0.24.1 -> ^0.24.3 age adoption passing confidence
vue (source) ^3.2.40 -> ^3.2.41 age adoption passing confidence

Release Notes

evanw/esbuild

v0.15.11

Compare Source

  • Fix various edge cases regarding template tags and this (#​2610)

    This release fixes some bugs where the value of this wasn't correctly preserved when evaluating template tags in a few edge cases. These edge cases are listed below:

    async function test() {
      class Foo { foo() { return this } }
      class Bar extends Foo {
        a = async () => super.foo``
        b = async () => super['foo']``
        c = async (foo) => super[foo]``
      }
      function foo() { return this }
      const obj = { foo }
      const bar = new Bar
      console.log(
        (await bar.a()) === bar,
        (await bar.b()) === bar,
        (await bar.c('foo')) === bar,
        { foo }.foo``.foo === foo,
        (true && obj.foo)`` !== obj,
        (false || obj.foo)`` !== obj,
        (null ?? obj.foo)`` !== obj,
      )
    }
    test()

    Each edge case in the code above previously incorrectly printed false when run through esbuild with --minify --target=es6 but now correctly prints true. These edge cases are unlikely to have affected real-world code.

capricorn86/happy-dom

v7.5.12

Compare Source

👷‍♂️ Patch fixes
  • HTMLOptionElement.value should not sanitize the value by removing new lines and trimming it. This caused a crash when the value was set to another type than "string". (#​620)

v7.5.11

Compare Source

👷‍♂️ Patch fixes
  • HTMLSelectElement.options.add() and HTMLSelectElement.options.remove() has to update the actual DOM
  • HTMLSelectElement.appendChild(), HTMLSelectElement.beforeChild() and HTMLSelectElement.removeChild() has to update the option elements in HTMLSelectElement.options
  • HTMLSelectElement.options.selectedIndex was not updated correctly after removing a selected option
  • Adds support for HTMLSelectElement.length
  • HTMLSelectElement now supports to do get options by index (e.g. select[1])

v7.5.10

Compare Source

👷‍♂️ Patch fixes
  • Adds check for if the active element is of type Element before handling custom elements by calling Element.getRootNode(). (#​467)

v7.5.9

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with Document.activeElement still pointing to an Element that has been disconnected from the DOM. (#​456)

v7.5.8

Compare Source

👷‍♂️ Patch fixes
  • Element.matches() not working properly with descendant combinators. (#​614)

v7.5.7

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to sending in other types of values than string to CSSStyleDeclaration properties, causing the property parser to throw an error. (#​612)

v7.5.6

Compare Source

👷‍♂️ Patch fixes
  • Does not set Event.target and Event.currrentTarget directly to solve a problem with Vitest typechecking the internals of Happy DOM. (#​544)
unjs/unbuild

v0.9.2

Compare Source

🩹 Fixes
  • rollup: Use inline implementation of esbuild (af41b01)
🏡 Chore
  • Use fixed build for rollup-plugin-dts (f7acbf4)
✅ Tests
❤️ Contributors
  • Pooya Parsa

v0.9.1

Compare Source

🩹 Fixes
  • Do not infer .json subpath exports to build (b57afec)
❤️ Contributors
  • Pooya Parsa

v0.9.0

Compare Source

🚀 Enhancements
  • ⚠️ Update rollup to v3 (#​129)
🏡 Chore
⚠️ Breaking Changes
  • ⚠️ Update rollup to v3 (#​129)
❤️ Contributors
  • Chris
  • Pooya Parsa
vitejs/vite

v3.1.8

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest

v0.24.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.24.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/core

v3.2.41

Compare Source

Bug Fixes
  • devtools: avoid memory leak caused by devtools event buffer (24f4c47), closes #​6591
  • devtools: use cleanupBuffer instead of modifying _buffer (#​6812) (35a113e)
  • effectScope: calling off() of a detached scope should not break currentScope (a71f9ac)
  • runtime-core: ensure that errors in slot function execution do not affect block tracking (#​5670) (82a73da), closes #​5657
  • runtime-core: fix v-for ref reactivity behavior difference between prod and dev (#​6714) (9ae796d), closes #​6697
  • runtime-dom: fix event timestamp check in iframes (5ee4053), closes #​2513 #​3933 #​5474

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, click this checkbox.

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

@renovate renovate bot changed the title chore(deps): update devdependency happy-dom to ^7.5.6 chore(deps): update devdependency happy-dom to ^7.5.7 Oct 11, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0597cbe to d5930f6 Compare October 12, 2022 15:50
@renovate renovate bot changed the title chore(deps): update devdependency happy-dom to ^7.5.7 chore(deps): update devdependency happy-dom to ^7.5.10 Oct 12, 2022
@renovate renovate bot changed the title chore(deps): update devdependency happy-dom to ^7.5.10 chore(deps): update all non-major dependencies Oct 13, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 33de07e to 6b5e54e Compare October 14, 2022 18:21
@danielroe danielroe merged commit 7fee300 into main Oct 15, 2022
@danielroe danielroe deleted the renovate/all-minor-patch branch October 15, 2022 11:17
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

1 participant