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

Skip to content

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

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
Dec 9, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 28, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) ^18.11.9 -> ^18.11.12 age adoption passing confidence
@types/prompts (source) ^2.4.1 -> ^2.4.2 age adoption passing confidence
@vue/test-utils ^2.2.4 -> ^2.2.6 age adoption passing confidence
lint-staged ^13.0.3 -> ^13.1.0 age adoption passing confidence
pinia ^2.0.26 -> ^2.0.28 age adoption passing confidence
prettier (source) ^2.8.0 -> ^2.8.1 age adoption passing confidence
start-server-and-test ^1.14.0 -> ^1.15.2 age adoption passing confidence
vitest ^0.25.3 -> ^0.25.6 age adoption passing confidence
vue-tsc ^1.0.9 -> ^1.0.12 age adoption passing confidence

Release Notes

vuejs/test-utils

v2.2.6

Compare Source

What's Changed

Full Changelog: vuejs/test-utils@v2.2.5...v2.2.6

v2.2.5

Compare Source

What's Changed

New Contributors

Full Changelog: vuejs/test-utils@v2.2.4...v2.2.5

okonet/lint-staged

v13.1.0

Compare Source

Features

v13.0.4

Compare Source

Bug Fixes
  • deps: update all dependencies (336f3b5)
  • deps: update all dependencies (ec995e5)
vuejs/pinia

v2.0.28

Compare Source

Please refer to CHANGELOG.md for details.

v2.0.27

Compare Source

Please refer to CHANGELOG.md for details.

prettier/prettier

v2.8.1

Compare Source

diff

Fix SCSS map in arguments (#​9184 by @​agamkrbit)
// Input
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.0
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm
      ")-1})",
  ),
  $display-breakpoints
);

// Prettier 2.8.1
$display-breakpoints: map-deep-merge(
  (
    "print-only": "only print",
    "screen-only": "only screen",
    "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})",
  ),
  $display-breakpoints
);
Support auto accessors syntax (#​13919 by @​sosukesuzuki)

Support for Auto Accessors Syntax landed in TypeScript 4.9.

(Doesn't work well with babel-ts parser)

class Foo {
  accessor foo: number = 3;
}
bahmutov/start-server-and-test

v1.15.2

Compare Source

Bug Fixes
  • deps: update dependency wait-on to v6.0.1 (4e33599)

v1.15.1

Compare Source

Bug Fixes
  • deps: update dependency debug to v4.3.4 (9cfb60e)

v1.15.0

Compare Source

Features
  • use the --expect parameter to specify HTTP response code (#​343) (17a427c)
vitest-dev/vitest

v0.25.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.25.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
johnsoncodehk/volar

v1.0.12

Compare Source

  • feat: added @volar/vscode-language-client package (#​2181)
  • fix: document content messed up randomly (#​1807)
  • fix: "Show Virtual Files" mapping background color unclear with light theme (#​2147) (#​2170)
  • fix: props type checking not working for Element Plus components (#​2176) (#​2180)
  • fix: attribute values being wrapped in parentheses while typing (#​2182)
  • fix: formatting crashes (#​2077)
  • fix: cannot emit component type with DefineComponent when template has slots (#​2161)
Special Sponsor
Out Gold Sponsors
Out Silver Sponsors

v1.0.11

Compare Source

  • fix(vue-tsc): dts emit do not generated DefineComponent type (#​2161)
  • fix: global components types loss in vue 2 projects (#​2157)
  • fix: Vite / Nuxt app preview crash when template includes <html> tag

v1.0.10

Compare Source

  • feat: add volar.vueserver.json.customBlockSchemaUrls setting to support preset json schema urls for custom blocks (#​2079)
  • feat: add volar.vueserver.reverseConfigFilePriority setting to support customize tsconfig priority (#​1815)
  • feat: add volar.vueserver.disableFileWatcher setting for better performance (#​2027)
  • feat(vue-tsc): support for TypeScript 5.0 (#​2095)
  • feat: auto insert parentheses for instanceof expressions (#​2099)
  • feat: more accurate HTML attributes auto-complete
  • feat: add nativeTags instead of experimentalRuntimeMode to vueCompilerOptions for uni-app supports (#​2065)
  • feat: remove split editors icon and use command instead of
  • fix: goto definition not working with nvim-lspconfig (https://github.com/johnsoncodehk/volar/pull/1916#issuecomment-1293166322)
  • fix(preview): more accurate script judgment (#​2135)
  • fix: local components types should cover global components types (#​1886)
  • fix: auto insert parentheses for AsExpressions not working
  • fix: template code mapping confusion when undo with invalid template code (#​2151)
  • fix: output Server Stats through LSP API (#​2050)
  • fix: vite app preview not working if project path includes spaces (https://github.com/johnsoncodehk/vite-plugin-vue-component-preview/issues/7)
  • fix: avoid component preview create multiple terminals (#​2128)
  • fix: avoid folding when join split editors (#​1887)
  • fix: split editors command crash with empty document (#​2072)
  • fix: avoid escape &quot; (#​2091)
  • fix: script setup first variable jsdoc missing (https://github.com/johnsoncodehk/volar/issues/1327#issuecomment-1304784005)
  • fix: document symbols of SFC blocks range incorrect (#​2118)
  • fix: strictTemplates option works only bound props (#​2136)
  • fix: props required warning missing when jsxTemplates option enabled (#​2139)
  • fix: cannot infer events parameter type in recursive component (#​2140)
  • perf: faster semantic tokens parsing (#​2053) (#​2056)
  • perf: avoid create file watchers in syntactic server
  • perf: cache workspace configuration in language servers (#​2062)

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, check this box

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from a17b663 to 433ae19 Compare December 6, 2022 00:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 5e1de30 to 14899c5 Compare December 9, 2022 15:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 14899c5 to dd68279 Compare December 9, 2022 16:35
@haoqunjiang haoqunjiang merged commit 2902754 into main Dec 9, 2022
@haoqunjiang haoqunjiang deleted the renovate/all-minor-patch branch December 9, 2022 18:23
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.

1 participant