Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): update all non-major dependencies #199

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 5, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 5, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.41.1 -> ^1.41.2 age adoption passing confidence
@tanstack/vue-query (source) ^5.17.19 -> ^5.18.1 age adoption passing confidence
@types/node (source) ^20.11.10 -> ^20.11.16 age adoption passing confidence
cypress (source) ^13.6.3 -> ^13.6.4 age adoption passing confidence
eslint-plugin-playwright ^0.22.1 -> ^0.22.2 age adoption passing confidence
geckodriver ^4.3.1 -> ^4.3.2 age adoption passing confidence
husky ^9.0.2 -> ^9.0.10 age adoption passing confidence
lint-staged ^15.2.0 -> ^15.2.1 age adoption passing confidence
nightwatch (source) ^3.3.8 -> ^3.4.0 age adoption passing confidence
npm-run-all2 ^6.1.1 -> ^6.1.2 age adoption passing confidence
prettier (source) ^3.2.4 -> ^3.2.5 age adoption passing confidence
vue-i18n (source) ^9.9.0 -> ^9.9.1 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.41.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120
TanStack/query (@​tanstack/vue-query)

v5.18.1

Compare Source

Version 5.18.1 - 2/2/2024, 7:58 AM (Manual Release)

Changes
Ci
  • Update example dependencies when publishing (#​6809) (2c115f8) by Lachlan Collins
Packages

v5.18.0

Compare Source

Version 5.18.0 - 1/30/2024, 5:32 PM

Changes
Feat
  • fix potential xss injection (1244043) by Dominik Dorfmeister
Chore
Docs
Other
Doc
  • Change the onMutate optional description to capitalize. (#​6773) (58b3de8) by Jeong-Sik Yun
Ci
Packages
cypress-io/cypress (cypress)

v13.6.4

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-6-4

playwright-community/eslint-plugin-playwright (eslint-plugin-playwright)

v0.22.2

Compare Source

Bug Fixes
  • Add toPass to missing-playwright-await test matchers (#​206) (3a8f674)
  • Fix prefer-to-have-count false positive (510e71c), closes #​207
  • Use checked property of toBeChecked when it is not a boolean literal (3563148), closes #​205
webdriverio-community/node-geckodriver (geckodriver)

v4.3.2: Release 4.3.2

Compare Source

typicode/husky (husky)

v9.0.10

Compare Source

v9.0.9

Compare Source

v9.0.8

Compare Source

v9.0.7

Compare Source

v9.0.6

Compare Source

v9.0.5

Compare Source

v9.0.4

Compare Source

v9.0.3

Compare Source

okonet/lint-staged (lint-staged)

v15.2.1

Compare Source

Patch Changes
  • #​1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
nightwatchjs/nightwatch (nightwatch)

v3.4.0

Compare Source


What's Changed

Fixed and improvements:
Dependency updates:
  • Upgraded Selenium to 4.16 by David Burns in #​4008. This upgrade brings improved stability, new features, and bug fixes, enhancing the overall testing capabilities with Nightwatch.
  • Updated nightwatch-axe-verbose dependency to enhance accessibility testing features, including improved axe-core integration and support for advanced configurations. by Priyansh Garg in #​3993
Full Changelog

View Complete History

bcomnes/npm-run-all2 (npm-run-all2)

v6.1.2

Compare Source

Merged
  • feat: move to read-package-json-fast #130
  • Upgrade: Bump c8 from 8.0.1 to 9.0.0 #127
  • Upgrade: Bump github/codeql-action from 2 to 3 #126
  • Upgrade: Bump actions/setup-node from 3 to 4 #123
Commits
  • Publish the whole project 3dde20c
  • Utilize CJS require for 'read-package-json-fast' 605ca15
  • Update FUNDING.yml c838ee9
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
intlify/vue-i18n-next (vue-i18n)

v9.9.1

Compare Source

This changelog is generated by GitHub Releases

What's Changed

🐛 Bug Fixes
📝️ Documentations

New Contributors

Full Changelog: intlify/vue-i18n@v9.9.0...v9.9.1


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 added the dependencies Pull requests that update a dependency file label Feb 5, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 10c3ea0 to 0d412bf Compare February 5, 2024 10:03
@Yordan-Ramchev Yordan-Ramchev merged commit 1e56c38 into main Feb 5, 2024
@Yordan-Ramchev Yordan-Ramchev deleted the renovate/all-minor-patch branch February 5, 2024 10:05
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.

1 participant