chore(deps): update dependency vue-tsc to v0.37.3 #2021

Merged
konrad merged 1 commits from renovate/vue-tsc-0.x into main 2022-06-07 19:35:00 +00:00
Member

This PR contains the following updates:

Package Type Update Change
vue-tsc devDependencies minor 0.36.0 -> 0.37.3

Release Notes

johnsoncodehk/volar

v0.37.3

Compare Source

  • feat: support find file references
  • feat: improve vitepress markdown parse reliability (#​1410)
  • feat: vueCompilerOptions.experimentalSuppressInvalidJsxElementTypeErrors default true (#​1405)
  • fix: fixed TS error with props beginning with data* (#​1413)
Our Sponsors

v0.37.2

Compare Source

  • feat: show deprecation message for experimentalCompatMode
  • fix: kebab case component type broken in vue 2 (#​1405)

v0.37.1

Compare Source

  • feat: add experimentalSuppressInvalidJsxElementTypeErrors option to ignore missing component import error (#​1404)
  • perf: support auto-import cache even TS version < 4.7 (#​1406)
  • perf: simplify template generated tsx code

v0.37.0

Compare Source

  • feat: VitePress support (#​1399)
  • feat: support html.autoCreateQuotes for pug
  • feat: enabled references codeLens for slots when use script setup
  • feat: detect missing component import (#​1203)
  • feat: support --generateTrace for vue-tsc (#​1375)
  • fix: dynamic slot name breaks template type checking (#​1392)
  • fix: don't report property does not exist error for data-* and aria-*
  • fix: html selection highlight ranges incorrect (#​1393)
  • fix: avoid DefineComponent type loss when use script setup (#​1391)
  • fix: css module $style inconsistent between vue-tsc and vscode (#​1089)
  • fix: css class name and v-bind should not active in style comments
  • fix: unused console.log to adapt vim-lsp (#​1391)
  • fix: language server stuck on incomplete style variable injection expression (#​1359)
  • fix: remove __VLS_ result from code actions

Breaking changes

  • vueCompilerOptions.experimentalCompatMode is renamed to vueCompilerOptions.target.

    {
    	"vueCompilerOptions": {
    -		"experimentalCompatMode": 2
    +		"target": 2
    	},
    }
    

v0.36.1

Compare Source

  • feat: add vueCompilerOptions.experimentalSuppressUnknownJsxPropertyErrors option for unkonwn props reporting
  • fix: template slots types missing when use export default in <script> with <script setup> (#​1389)
  • fix: fixed false positive __VLS_radioBinding on radio input tag. (#​1390)

Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [vue-tsc](https://github.com/johnsoncodehk/volar) | devDependencies | minor | [`0.36.0` -> `0.37.3`](https://renovatebot.com/diffs/npm/vue-tsc/0.36.0/0.37.3) | --- ### Release Notes <details> <summary>johnsoncodehk/volar</summary> ### [`v0.37.3`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0373-202268) [Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.37.2...v0.37.3) - feat: support find file references - feat: improve vitepress markdown parse reliability ([#&#8203;1410](https://github.com/johnsoncodehk/volar/issues/1410)) - feat: `vueCompilerOptions.experimentalSuppressInvalidJsxElementTypeErrors` default true ([#&#8203;1405](https://github.com/johnsoncodehk/volar/issues/1405)) - fix: fixed TS error with props beginning with data\* ([#&#8203;1413](https://github.com/johnsoncodehk/volar/issues/1413)) ##### Our Sponsors <a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company_compact/sponsors.svg"> <img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/company_compact/sponsors.svg"/> </a> ### [`v0.37.2`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0372-202267) [Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.37.1...v0.37.2) - feat: show deprecation message for `experimentalCompatMode` - fix: kebab case component type broken in vue 2 ([#&#8203;1405](https://github.com/johnsoncodehk/volar/issues/1405)) ### [`v0.37.1`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0371-202267) [Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.37.0...v0.37.1) - feat: add `experimentalSuppressInvalidJsxElementTypeErrors` option to ignore missing component import error ([#&#8203;1404](https://github.com/johnsoncodehk/volar/issues/1404)) - perf: support auto-import cache even TS version < 4.7 ([#&#8203;1406](https://github.com/johnsoncodehk/volar/issues/1406)) - perf: simplify template generated tsx code ### [`v0.37.0`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0370-202266) [Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.36.1...v0.37.0) - feat: VitePress support ([#&#8203;1399](https://github.com/johnsoncodehk/volar/issues/1399)) - feat: support `html.autoCreateQuotes` for pug - feat: enabled references codeLens for slots when use script setup - feat: detect missing component import ([#&#8203;1203](https://github.com/johnsoncodehk/volar/issues/1203)) - feat: support `--generateTrace` for vue-tsc ([#&#8203;1375](https://github.com/johnsoncodehk/volar/issues/1375)) - fix: dynamic slot name breaks template type checking ([#&#8203;1392](https://github.com/johnsoncodehk/volar/issues/1392)) - fix: don't report property does not exist error for `data-*` and `aria-*` - fix: html selection highlight ranges incorrect ([#&#8203;1393](https://github.com/johnsoncodehk/volar/issues/1393)) - fix: avoid `DefineComponent` type loss when use script setup ([#&#8203;1391](https://github.com/johnsoncodehk/volar/issues/1391)) - fix: css module `$style` inconsistent between vue-tsc and vscode ([#&#8203;1089](https://github.com/johnsoncodehk/volar/issues/1089)) - fix: css class name and v-bind should not active in style comments - fix: unused `console.log` to adapt vim-lsp ([#&#8203;1391](https://github.com/johnsoncodehk/volar/issues/1391)) - fix: language server stuck on incomplete style variable injection expression ([#&#8203;1359](https://github.com/johnsoncodehk/volar/issues/1359)) - fix: remove `__VLS_` result from code actions **Breaking changes** - `vueCompilerOptions.experimentalCompatMode` is renamed to `vueCompilerOptions.target`. ```diff { "vueCompilerOptions": { - "experimentalCompatMode": 2 + "target": 2 }, } ``` ### [`v0.36.1`](https://github.com/johnsoncodehk/volar/blob/master/CHANGELOG.md#&#8203;0361-202264) [Compare Source](https://github.com/johnsoncodehk/volar/compare/v0.36.0...v0.36.1) - feat: add `vueCompilerOptions.experimentalSuppressUnknownJsxPropertyErrors` option for unkonwn props reporting - fix: template slots types missing when use export default in `<script>` with `<script setup>` ([#&#8203;1389](https://github.com/johnsoncodehk/volar/issues/1389)) - fix: fixed false positive `__VLS_radioBinding` on radio input tag. ([#&#8203;1390](https://github.com/johnsoncodehk/volar/issues/1390)) </details> --- ### Configuration 📅 **Schedule**: 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate added the
dependencies
label 2022-06-04 11:02:50 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://2021-renovate-vue-tsc-0-x--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://2021-renovate-vue-tsc-0-x--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
renovate changed title from chore(deps): update dependency vue-tsc to v0.36.1 to chore(deps): update dependency vue-tsc to v0.37.0 2022-06-06 15:02:49 +00:00
renovate force-pushed renovate/vue-tsc-0.x from 1ef25cd8b6 to d809af3902 2022-06-06 15:02:50 +00:00 Compare
renovate changed title from chore(deps): update dependency vue-tsc to v0.37.0 to chore(deps): update dependency vue-tsc to v0.37.1 2022-06-07 02:02:55 +00:00
renovate force-pushed renovate/vue-tsc-0.x from d809af3902 to a86c2058f1 2022-06-07 02:02:55 +00:00 Compare
renovate changed title from chore(deps): update dependency vue-tsc to v0.37.1 to chore(deps): update dependency vue-tsc to v0.37.2 2022-06-07 10:02:54 +00:00
renovate force-pushed renovate/vue-tsc-0.x from a86c2058f1 to 4f9bfec57f 2022-06-07 10:02:55 +00:00 Compare
renovate changed title from chore(deps): update dependency vue-tsc to v0.37.2 to chore(deps): update dependency vue-tsc to v0.37.3 2022-06-07 18:02:53 +00:00
renovate force-pushed renovate/vue-tsc-0.x from 4f9bfec57f to 3a1ee65c5f 2022-06-07 18:02:54 +00:00 Compare
renovate force-pushed renovate/vue-tsc-0.x from 3a1ee65c5f to 77694838d2 2022-06-07 19:03:09 +00:00 Compare
konrad merged commit 20711c3bae into main 2022-06-07 19:35:00 +00:00
konrad deleted branch renovate/vue-tsc-0.x 2022-06-07 19:35:00 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.