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

Merged
merged 1 commit into from Oct 10, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 10, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@jridgewell/trace-mapping ^0.3.15 -> ^0.3.16 age adoption passing confidence
@sveltejs/vite-plugin-svelte ^1.0.8 -> ^1.0.9 age adoption passing confidence
@types/prompts (source) ^2.0.14 -> ^2.4.1 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.38.1 -> ^5.39.0 age adoption passing confidence
@typescript-eslint/parser ^5.38.1 -> ^5.39.0 age adoption passing confidence
bcrypt ^5.0.1 -> ^5.1.0 age adoption passing confidence
core-js ^3.25.4 -> ^3.25.5 age adoption passing confidence
eslint (source) ^8.24.0 -> ^8.25.0 age adoption passing confidence
express (source) ^4.18.1 -> ^4.18.2 age adoption passing confidence
lit (source) ^2.3.1 -> ^2.4.0 age adoption passing confidence
magic-string ^0.26.5 -> ^0.26.7 age adoption passing confidence
magic-string ^0.26.6 -> ^0.26.7 age adoption passing confidence
pinia ^2.0.22 -> ^2.0.23 age adoption passing confidence
playwright-chromium (source) ^1.26.1 -> ^1.27.0 age adoption passing confidence
pnpm (source) 7.13.0 -> 7.13.3 age adoption passing confidence
pnpm (source) ^7.13.0 -> ^7.13.3 age adoption passing confidence
preact (source) ^10.11.0 -> ^10.11.1 age adoption passing confidence
react-router-dom ^6.4.1 -> ^6.4.2 age adoption passing confidence
semver ^7.3.7 -> ^7.3.8 age adoption passing confidence
terser (source) ^5.15.0 -> ^5.15.1 age adoption passing confidence
tsx ^3.9.0 -> ^3.10.1 age adoption passing confidence
vite (source) ^3.1.4 -> ^3.1.6 age adoption passing confidence
vitest ^0.23.4 -> ^0.24.0 age adoption passing confidence

Release Notes

jridgewell/trace-mapping

v0.3.16

Compare Source

What's Changed
New Contributors

Full Changelog: jridgewell/trace-mapping@v0.3.15...v0.3.16

sveltejs/vite-plugin-svelte

v1.0.9

Compare Source

Patch Changes
  • Use esnext for useVitePreprocess (#​452)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.39.0

Compare Source

Features
  • eslint-plugin: allow using void as a default type for a generic argument if allowInGenericTypeArguments is specified (#​5671) (bb46ef0)

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.39.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/parser

kelektiv/node.bcrypt.js

v5.1.0

Compare Source

  • Update node-pre-gyp to 1.0.10
    • Replace nodeunit with jest as the testing library
zloirock/core-js

v3.25.5

Compare Source

  • Fixed regression with an error on reuse of some built-in methods from another realm, #​1133
eslint/eslint

v8.25.0

Compare Source

Features

  • 173e820 feat: Pass --max-warnings value to formatters (#​16348) (Brandon Mills)
  • 6964cb1 feat: remove support for ignore files in FlatESLint (#​16355) (Milos Djermanovic)
  • 1cc4b3a feat: id-length counts graphemes instead of code units (#​16321) (Sosuke Suzuki)

Documentation

Chores

expressjs/express

v4.18.2

Compare Source

===================

  • Fix regression routing a large stack in a single route
  • deps: body-parser@1.20.1
    • deps: qs@6.11.0
    • perf: remove unnecessary object clone
  • deps: qs@6.11.0
lit/lit

v2.4.0

Compare Source

Minor Changes
  • #​3318 21313077 - Adds an isServer variable export to lit and lit-html/is-server.js which will be true in Node and false in the browser. This can be used when authoring components to change behavior based on whether or not the component is executing in an SSR context.
Patch Changes
  • #​3320 305852d4 - The lit package now specifies and "types" export condition allowing TypeScript moduleResolution to be nodenext.

  • Updated dependencies [21313077]:

    • lit-html@2.4.0
rich-harris/magic-string

v0.26.7

Compare Source

Bug Fixes

v0.26.6

Compare Source

Features
  • add update method as safer alternative to overwrite (#​212) (9a312e3)
vuejs/pinia

v2.0.23

Compare Source

Please refer to CHANGELOG.md for details.

Microsoft/playwright

v1.27.0

Compare Source

Locators

With these new APIs, inspired by Testing Library, writing locators is a joy:

await page.getByLabel('User Name').fill('John');

await page.getByLabel('Password').fill('secret-password');

await page.getByRole('button', { name: 'Sign in' }).click();

await expect(page.getByText('Welcome, John!')).toBeVisible();

All the same methods are also available on Locator, FrameLocator and Frame classes.

Other highlights
  • workers option in the playwright.config.ts now accepts a percentage string to use some of the available CPUs. You can also pass it in the command line:

    npx playwright test --workers=20%
  • New options host and port for the html reporter.

    reporters: [['html', { host: 'localhost', port: '9223' }]]
  • New field FullConfig.configFile is available to test reporters, specifying the path to the config file if any.

  • As announced in v1.25, Ubuntu 18 will not be supported as of Dec 2022. In addition to that, there will be no WebKit updates on Ubuntu 18 starting from the next Playwright release.

Behavior Changes
  • expect(locator).toHaveAttribute(name, value, options) with an empty value does not match missing attribute anymore. For example, the following snippet will succeed when button does not have a disabled attribute.

    await expect(page.getByRole('button')).toHaveAttribute('disabled', '');
  • Command line options --grep and --grep-invert previously incorrectly ignored grep and grepInvert options specified in the config. Now all of them are applied together.

Browser Versions
  • Chromium 107.0.5304.18
  • Mozilla Firefox 105.0.1
  • WebKit 16.0

This version was also tested against the following stable channels:

  • Google Chrome 106
  • Microsoft Edge 106
pnpm/pnpm

v7.13.3

Compare Source

Patch Changes

  • Don't crash when auto-install-peers is set to true and installation is done on a workspace with that has the same dependencies in multiple projects #​5454.
  • Add global option in pnpm link --help #​5461.
  • Show execution time on install, update, add, and remove #​1021.
  • Fix the return path of pnpm pack, when a custom destination directory is used #​5471.

Our Gold Sponsors

Our Silver Sponsors

v7.13.2

Compare Source

Patch Changes

  • When linking commands to a directory, remove any .exe files that are already present in that target directory by the same name.

    This fixes an issue with pnpm global update on Windows. If pnpm was installed with the standalone script and then updated with pnpm using pnpm add --global pnpm, the exe file initially created by the standalone script should be removed.

  • When a direct dependency fails to resolve, print the path to the project directory in the error message.

  • pnpm patch-commit should work when the patch directory is specified with a trailing slash #​5449.

Our Gold Sponsors

Our Silver Sponsors

v7.13.1

Compare Source

Patch Changes
  • pnpm update --interactive should not list dependencies ignored via the pnpm.updateConfig.ignoreDependencies setting.
Our Gold Sponsors
Our Silver Sponsors
preactjs/preact

v10.11.1

Compare Source

Bug Fixes

remix-run/react-router

v6.4.2

Compare Source

Patch Changes
  • Respect basename in useFormAction (#​9352)
  • Enhance console error messages for invalid usage of data router hooks (#​9311)
  • If an index route has children, it will result in a runtime error. We have strengthened our RouteObject/RouteProps types to surface the error in TypeScript. (#​9366)
  • Updated dependencies:
    • react-router@6.4.2
    • @remix-run/router@1.0.2
npm/node-semver

v7.3.8

Compare Source

Bug Fixes
Documentation
7.3.7 (2022-04-11)
Bug Fixes
Dependencies
7.3.6 (2022-04-05)
Bug Fixes
Documentation
  • clarify * range behavior (cb1ca1d)
Dependencies
terser/terser

v5.15.1

Compare Source

  • Fixed missing parentheses around optional chains
  • Avoid bare let or const as the bodies of if statements (#​1253)
  • Small internal fixes (#​1271)
  • Avoid inlining a class twice and creating two equivalent but !== classes.
esbuild-kit/tsx

v3.10.1

Compare Source

Bug Fixes

v3.10.0

Compare Source

Features
vitejs/vite

v3.1.6

Compare Source

Please refer to CHANGELOG.md for details.

v3.1.5

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest

v0.24.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "before 3am 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, click this checkbox.

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Oct 10, 2022
@patak-dev patak-dev merged commit f519423 into main Oct 10, 2022
@patak-dev patak-dev deleted the renovate/all-minor-patch branch October 10, 2022 07:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant