Skip to content

Update all non-major dependencies #45

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
Jan 5, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 29, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/node (source) 18.11.9 -> 18.11.18 age adoption passing confidence
prettier (source) 2.8.0 -> 2.8.1 age adoption passing confidence
terser (source) 5.16.0 -> 5.16.1 age adoption passing confidence
typescript (source) 4.9.3 -> 4.9.4 age adoption passing confidence
vite (source) 4.0.3 -> 4.0.4 age adoption passing confidence
vue-tsc 1.0.9 -> 1.0.21 age adoption passing confidence

Release Notes

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;
}
terser/terser

v5.16.1

Compare Source

  • Properly handle references in destructurings (const { [reference]: val } = ...)
  • Allow parsing of .#privatefield in nested classes
  • Do not evaluate operations that return large strings if that would make the output code larger
  • Make collapse_vars handle block scope correctly
  • Internal improvements: Typos (#​1311), more tests, small-scale refactoring
Microsoft/TypeScript

v4.9.4: TypeScript 4.9.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Changes:

This list of changes was auto generated.

vitejs/vite

v4.0.4

Compare Source

johnsoncodehk/volar

v1.0.21

Compare Source

  • fix: cannot jump to .vue definition from .ts with takeover mode
  • fix: cannot detect @volar/vue-language-plugin-pug installed (#​2272)
  • fix: ignore incremental update for v-for expression (#​2266)
  • fix: auto insert spaces for {{}} not working
  • fix: completion in template inserts stray leading dot (#​2155)
  • fix: if source document EOL is \r\n, virtual document mapping decorations range incorrect
Our Gold Sponsors
Our Silver Sponsors

v1.0.20

Compare Source

  • feat: support browser navigation for embedded preview
  • feat: released pug extension (#​2274)
  • feat: add volar.takeOverMode.extension setting for choice extension that takeover *.ts language support
  • fix(typescript-vue-plugin): can't always get latest status of .vue files (#​2271)
  • fix: multi-line template interpolation formatting indentation incorrect
  • refactor(framework): simplify LanguageServerPlugin api and dependency injection connection (#​2273)
  • refactor(framework): combine createLanguageService and createDocumentService

v1.0.19

Compare Source

  • feat: add experimentalAdditionalLanguageModules option for vueCompilerOptions (#​2267)
  • fix: TS typescript/javascript.preferences.autoImportFileExcludePatterns setting not working
  • fix: formatting not working for extra vue file extensions (#​2263)
  • fix(doctor): accidentally report @vue/compiler-dom warning (#​2262)
  • fix(vue-component-meta): required property incorrect (#​2256)
  • fix(preview): cannot start preview if project never start run vite server (#​2223)
  • fix: references codeLens not working

v1.0.18

Compare Source

  • feat: check deprecated properties for vueCompilerOptions in tsconfig
  • fix: auto add spaces for {{}} not working if template block not at the top
  • fix: remove duplicate file watchers for .vue files
  • fix: auto complete randomly report [TS Error] { } and failed (#​2190)
  • fix: cross-file renaming cannot be performed consecutively
  • fix: should not report unknown tag error without strictTemplates enabled (#​2255)

v1.0.17

Compare Source

  • feat: support syntax highlighting for lang="json5" (#​2244)
  • feat: support for generating virtual file from multiple sources (#​2253)
  • feat: display mapping data on hover for virtual document
  • feat: re-support component semantic token (#​2252)
  • fix(vue-tsc): cannot resolve hook path from extends options
  • fix: fixed workspace configs caching not working edge case (#​2062)
  • fix: cannot find volar.config.js for sub folder tsconfig project
  • fix: emmet abbreviation suggestion keeps disappearing every third letter (#​2240)
  • fix: {{ }} colorizedBracketPairs not working (#​1759)
  • fix: fixed volar-base language servers executePluginCommand duplicate registration error
  • fix: avoid throw on un-exist workspace folder (#​2039)
  • fix: ignore class, style attrs when v-bind exist (#​2166)
  • fix: functional component type check not working when return type includes props property (#​2206)
  • fix: v-slot error when noPropertyAccessFromIndexSignature is enabled (#​2236)
  • fix: skipTemplateCodegen should ignore template slots emit (#​2237)
  • fix: recursive closing of html tag edge cases (#​2238) (#​2247)
  • fix: double quotes not allowed in attribute value (#​2250)
  • perf: embedded files on demand calculation not working

v1.0.16

Compare Source

  • feat(component-meta): make schema.ignore accept functions (#​2232)
  • feat: add volar.icon.splitEditors setting (#​2163)
  • feat: support twoslash queries in .ts when using takeover mode
  • fix: fixed typescript-vue-plugin performance regression (#​2228)
  • fix: deleting space for {{ |}} become {{ | }} (#​2222)
  • fix: dynamic slot name type <slot :name="(name as 'a' | 'b')" /> not working (#​2233)
  • fix: typed template slots missing when template only exist dynamic slots (#​2233)
  • fix: fixed template Type 'void' has no call signatures errors (#​2225)
  • fix(vue-tsc): shim vue-tsc/out/proxy.js for vite-plugin-checker (https://github.com/fi3ework/vite-plugin-checker/issues/193)
  • perf: rewrite typescript-vue-plugin for much better performance and fixed path resolve edge case (#​2137)

v1.0.14

Compare Source

  • feat: add angular language server example (#​2215)
  • feat(vue-tsc): support for hook api (#​2217)
  • feat: add vue-tsc-eslint-hook module to support use eslint in vue-tsc (#​2220)
  • feat: add setting volar.vueserver.maxFileSize (#​2186)
  • feat: add setting volar.doctor.checkVueTsc and disable by default (#​2186)
  • feat: add setting volar.vueserver.configFilePath (#​2078)
  • feat: auto add space between double curly brackets (#​2088)
  • feat: support formatting for style v-bind (#​2105)
  • fix: virtual code mapping ignored offset 0 (#​2052)
  • fix: auto complete ref value with '.value' not working (#​2203)
  • fix: template AST broken by slot name incremental update (#​2207)
  • fix: preview not working for Vite v4 (#​2198)

v1.0.13

Compare Source

  • feat(web-ide): show loading file at status bar
  • feat(web-ide): support node_modules types via CDN
  • feat(web-ide): support locale typescript diagnostic messages
  • fix(web-ide): cannot use default typescript lib types
  • fix(web-ide): cannot found match tsconfig
  • fix: volar.config.js plugins dirty cache between different tsconfig projects

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)

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

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

@vercel
Copy link

vercel bot commented Nov 29, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
sortablejs-vue3 ✅ Ready (Inspect) Visit Preview Jan 5, 2023 at 1:12AM (UTC)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9cbc7cd to af6face Compare December 1, 2022 02:06
@renovate renovate bot changed the title Update dependency vue-tsc to v1.0.10 Update all non-major dependencies Dec 1, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af6face to 6709c30 Compare December 2, 2022 15:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6709c30 to 026fab4 Compare December 3, 2022 06:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 026fab4 to c0c8b36 Compare December 5, 2022 12:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c0c8b36 to d7a181d Compare December 5, 2022 22:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d7a181d to a3e20e4 Compare December 7, 2022 20:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a3e20e4 to b49bb7b Compare December 8, 2022 00:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b49bb7b to 13376ce Compare December 8, 2022 23:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 13376ce to a176c34 Compare December 10, 2022 20:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a176c34 to 95479b3 Compare December 12, 2022 03:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 95479b3 to 1b6f235 Compare December 13, 2022 06:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1b6f235 to 3ab1b8e Compare December 13, 2022 22:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3ab1b8e to 667b1c7 Compare December 16, 2022 22:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 667b1c7 to 4e947c4 Compare December 17, 2022 21:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4e947c4 to 128fb81 Compare December 18, 2022 09:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 128fb81 to ce2357d Compare December 20, 2022 09:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ce2357d to c051bbb Compare December 22, 2022 02:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c051bbb to 7d1afc9 Compare December 25, 2022 19:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7d1afc9 to ff696a6 Compare December 26, 2022 11:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ff696a6 to 81ddffb Compare December 26, 2022 18:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 81ddffb to 7e1b50c Compare December 27, 2022 20:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e1b50c to 37bd906 Compare December 31, 2022 02:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 37bd906 to 3bb70cc Compare January 3, 2023 13:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3bb70cc to c153dd8 Compare January 4, 2023 02:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c153dd8 to 3e17ef7 Compare January 5, 2023 01:11
@MaxLeiter MaxLeiter merged commit 85ba27d into main Jan 5, 2023
@MaxLeiter MaxLeiter deleted the renovate/all-minor-patch branch January 5, 2023 02:31
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.

1 participant