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 npm dependencies #61

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.46.1 -> 1.47.2 age adoption passing confidence
@tauri-apps/cli 1.6.1 -> 1.6.2 age adoption passing confidence
@types/node (source) 20.16.2 -> 20.16.5 age adoption passing confidence
axios (source) 1.7.6 -> 1.7.7 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.30.0 age adoption passing confidence
eslint-plugin-solid 0.14.2 -> 0.14.3 age adoption passing confidence
husky 9.1.5 -> 9.1.6 age adoption passing confidence
jsdom 24.1.1 -> 24.1.3 age adoption passing confidence
postcss (source) 8.4.41 -> 8.4.47 age adoption passing confidence
socket.io-client (source) 4.7.5 -> 4.8.0 age adoption passing confidence
tailwindcss (source) 3.4.10 -> 3.4.12 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.2 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.1 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.47.2

Compare Source

Highlights

https://github.com/microsoft/playwright/pull/32699- [REGRESSION]: fix(codegen): use content_frame property in python/.NEThttps://github.com/microsoft/playwright/issues/327066- [REGRESSION]: page.pause() does not pause test timeout after 1.4https://github.com/microsoft/playwright/pull/3266161 - fix(trace-viewer): time delta between local and remote actions

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128

v1.47.1

Compare Source

v1.47.0

Compare Source

tauri-apps/tauri (@​tauri-apps/cli)

v1.6.2: @​tauri-apps/cli v1.6.2

Compare Source

[1.6.2]

Dependencies
  • Upgraded to tauri-cli@1.6.2
axios/axios (axios)

v1.7.7

Compare Source

Bug Fixes
  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#​6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#​5731) (364993f)
Contributors to this release
eslint/eslint (eslint)

v8.57.1

Compare Source

import-js/eslint-plugin-import (eslint-plugin-import)

v2.30.0

Compare Source

Added
Fixed
Changed
  • [Docs] no-extraneous-dependencies: Make glob pattern description more explicit ([#​2944], thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug [#​2866]
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap ([#​2982], thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic ([#​2985], thanks [@​soryy708])
  • [Docs] order: Add a quick note on how unbound imports and --fix ([#​2640], thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) ([#​2987], thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting ([#​2989], thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files ([#​2991], thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option ([#​3036], thanks [@​liby])
  • [readme] Clarify how to install the plugin ([#​2993], thanks [@​jwbth])
solidjs-community/eslint-plugin-solid (eslint-plugin-solid)

v0.14.3

Compare Source

What's Changed

New Contributors

Full Changelog: solidjs-community/eslint-plugin-solid@v0.14.2...v0.14.3

typicode/husky (husky)

v9.1.6

Compare Source

jsdom/jsdom (jsdom)

v24.1.3

Compare Source

  • Fixed calls to postMessage() that were done as a bare property (i.e., postMessage() instead of window.postMessage()).

v24.1.2

Compare Source

  • Fixed an issue with the in operator applied to EventTarget methods, e.g. 'addEventListener' in window, which only appeared in Node.js ≥22.5.0. (legendecas)
  • Fixed the events fired by blur(): it no longer fires focus and focusin on the Document, and blur and focusout no longer have their relatedTarget property set. (asamuzaK)
postcss/postcss (postcss)

v8.4.47

Compare Source

  • Removed debug code.

v8.4.46

Compare Source

  • Fixed Cannot read properties of undefined (reading 'before').

v8.4.45

Compare Source

  • Removed unnecessary fix which could lead to infinite loop.

v8.4.44

Compare Source

  • Another way to fix markClean is not a function error.

v8.4.43

Compare Source

  • Fixed markClean is not a function error.

v8.4.42

Compare Source

  • Fixed CSS syntax error on long minified files (by @​varpstar).
socketio/socket.io (socket.io-client)

v4.8.0

Compare Source

tailwindlabs/tailwindcss (tailwindcss)

v3.4.12

Compare Source

v3.4.11

Compare Source

microsoft/TypeScript (typescript)

v5.6.2

Compare Source

vitest-dev/vitest (vitest)

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "every weekend before 5:00am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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/npm-dependencies branch 11 times, most recently from 80de6df to 048d50b Compare September 5, 2024 23:09
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 11 times, most recently from df3e458 to 90cfbf7 Compare September 16, 2024 16:03
@renovate renovate bot force-pushed the renovate/npm-dependencies branch 4 times, most recently from 68c23a8 to 7bbdcfd Compare September 20, 2024 18:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants