Skip to content

Update all non-major dependencies #21

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
Sep 7, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vitejs/plugin-vue (source) 3.0.1 -> 3.1.0 age adoption passing confidence
terser (source) 5.14.2 -> 5.15.0 age adoption passing confidence
typescript (source) 4.7.4 -> 4.8.2 age adoption passing confidence
vite (source) 3.0.4 -> 3.1.0 age adoption passing confidence
vue-tsc 0.39.2 -> 0.40.11 age adoption passing confidence

Release Notes

vitejs/vite (@​vitejs/plugin-vue)

v3.1.0

Compare Source

v3.0.3

Compare Source

v3.0.2

Compare Source

terser/terser

v5.15.0

Compare Source

  • Basic support for ES2022 class static initializer blocks.
  • Add AudioWorkletNode constructor options to domprops list (#​1230)
  • Make identity function inliner not inline id(...expandedArgs)
Microsoft/TypeScript

v4.8.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v3.1.0

Compare Source

Main Changes
  • Vite now uses parse5, which parses HTML in the same way as the latest browser versions. This migration gives us a more robust HTML story moving forward (#​9678).
  • Vite now supports using objects as hooks to change execution order (#​9634). Check out the RFC and the implementation upstream at rollup/rollup#​4600 for details and rationale.
      import { resolve } from 'node:path';
      import { readdir } from 'node:fs/promises';
    
      export default function getFilesOnDisk() {
        return {
          name: 'getFilesOnDisk',
          writeBundle: {
            // run this hook sequentially even if the hook is parallel
            sequential: true,
            // push this hook to the 'post' stage, after all normal hooks
            order: 'post',
            // hook implementation
            async handler({ dir }) {
              const topLevelFiles = await readdir(resolve(dir))
              console.log(topLevelFiles)
            }
          }
        }
      }
    Read the updated Rollup Plugin docs for more information.

Note
After Vite 3.1, you are no longer going to see [vite] hot updated log messages in the browser console. These messages have been moved to the debug channel (#​8855). Check your browser docs to show debug logs.

Features
Bug Fixes
Previous Changelogs
3.1.0-beta.2 (2022-09-02)

See 3.1.0-beta.2 changelog

3.1.0-beta.1 (2022-08-29)

See 3.1.0-beta.1 changelog

3.1.0-beta.0 (2022-08-25)

See 3.1.0-beta.0 changelog

v3.0.9

Compare Source

v3.0.8

Compare Source

v3.0.7

Compare Source

v3.0.6

Compare Source

v3.0.5

Compare Source

johnsoncodehk/volar

v0.40.11

Compare Source

  • feat: support for typescript class/object literal method completions (#​1835)
  • fix: langauge server crash if client did not support onDidChangeWorkspaceFolders (#​1834)
  • fix: "Format Selection" embedded range incorrect with initialIndentBracket
  • fix: formatting break document with editor.formatOnPaste enabled (#​1840) (#​1841) (#​1842) (#​1843) (#​1835)
Our Sponsors

v0.40.10

Compare Source

  • feat: improve "Format Selection" for html content
  • feat: uniquely scope attribute shorthands (#​1812)
  • feat: add server name, version infos to LSP initialize response
  • fix: "Format Selection" should not format whole language block (#​1833)
  • fix: formatting break document content randomly (#​1827) (#​1832)
  • fix: pug syntax highlighting confuses element id with interpolation (#​1826)
  • fix: don't cache IDE settings if IDE do not support config change notification

v0.40.9

Compare Source

  • feat: improve vue document formatting
  • fix: script format loss indent (#​1823)

v0.40.8

Compare Source

v0.40.7

Compare Source

  • feat: support multiple workspaces for document features
  • feat: add initializationOptions.completion.ignoreTriggerCharacters for LSP-Volar (https://github.com/sublimelsp/LSP-volar/issues/114)
  • feat: add vueCompilerOptions.experimentalComponentOptionsWrapper option for custom component options warpper (#​1517)
  • fix: add missing surrounding pair "`" (#​1659)
  • fix: formatting edit range incorrect edge case (#​1814)
  • fix: typescript onType format do not respect typescript.format.enable
  • fix: document features stop working for script block (#​1813)
  • fix: pug formatter extra spaces in {{ }} (#​1784)
  • fix: template incremental parser broken when typing slot name

Breaking changes

  • vueCompilerOptions properties experimentalImplicitWrapComponentOptionsWithDefineComponent, experimentalImplicitWrapComponentOptionsWithVue2Extend replaced by experimentalComponentOptionsWrapper.

v0.40.6

Compare Source

  • feat: support language features for Web IDE (#​612)
  • feat: update vite problemMatcher (#​1801)
  • feat: add volar.vueserver.textDocumentSync option to disable incremental update (#​1807)
  • fix: v-for, v-if textmate scopes incorrect (#​1810)

v0.40.5

Compare Source

  • feat: suppor add or switch workspaces without restart server (#​1574)
  • fix: sfc offset incremental update broken when input at block start
  • fix: document incremental update break document content on Sublime LSP (https://github.com/sublimelsp/LSP-volar/issues/120)
  • fix: unexpected prop types behavior with compilerOptions.exactOptionalPropertyTypes (https://github.com/vuejs/core/issues/6532)
  • fix: false positive error on <input typeof="radio" value="..."> (#​1775)
  • fix: false positive style attribute inconsistent string type error (#​1781)
  • fix: langauge server broken with outDir + rootDir + composite/incremental tsconfig options (#​1782)
  • fix: json format should not trim first / end new line
  • fix: interpolation format adding redundant spaces (#​1784)

v0.40.4

Compare Source

  • feat: respect VSCode *.format.enable settings
  • fix: template should not compile if content no change
  • fix: component preview not working on windows (#​1737)

v0.40.3

Compare Source

  • perf: incremental update SFC blocks without full parse SFC and mitigate memory leak
  • perf: incremental update html template interpolation without recompile template
  • perf: cache ts.createSourceFile for tsx code gen
  • fix(vue-component-meta): cannot create checker with TS 4.8.2
  • fix: document features not working on Web IDE (#​1479)
  • fix: avoid auto complete triggers too aggressive in Sublime (https://github.com/sublimelsp/LSP-volar/issues/114)

v0.40.2

Compare Source

  • feat(vue-component-meta): add createComponentMetaCheckerByJsonConfig API to support create checker without tsconfig
  • feat: move highlight dom elements ☑ codeLens to status bar (#​1535)
  • feat: incremental update diagnostics cache range and avoid flicker (#​1718)
  • perf: incremental update TS script snapshot (#​1718)
  • perf: faster source map code mapping
  • fix: pug template tag mapping range incorrect (#​1723)
  • fix: vite plugin import path incorrect on windows (#​1772)
  • fix: false positive error on style attr when enabled compilerOptions.exactOptionalPropertyTypes (#​1560)
  • fix: .html intellisense of petite-vue not working
  • fix: .html intellisense of alpie not working
  • fix: intellisense not working for node_modules files with takeover mode on windows (#​1641)
  • fix: avoid vue-tsc type check .html, .md files (#​1661)
  • fix: compilerOptions.types resolve path incorrect on multiple workspaces (#​1679)
  • fix: cannot count script setup variable usage in template if disalbe jsx (#​1729)
  • fix: cannot resolve indirect circular reference components types (#​1708)
  • fix: cannot recognize namespace component (#​1726)
  • fix: template components types break by regular SFC components option (#​1731)
  • fix: indentation behavior incorrect (#​1762)
  • fix: TS1308 'async' error missing when use script setup (#​1753)

v0.40.1

Compare Source

  • fix: component context types missing in template if no script block (#​1688)
  • fix: organize imports added invalid code (#​1692)
  • fix: v-else template interpolation missing in virtual code (#​1694)
  • fix: template interpolation formatting broken (#​1697)
  • fix: inline css intellisense not working

v0.40.0

Compare Source

  • feat: support document highlights cross <script>, <template> (#​462)
  • feat: support reference types from script setup in template (#​891)
  • feat: support auto import in template (#​823)
  • feat: support plugin api (#​185) (#​1687)
  • fix: template scope variables completion missing (#​1284)
  • fix: prefer defineComponent instead of Vue.extend to wrap component options by default (#​1584)
  • fix: bracket pair colorization in VSCode v1.70 (#​1677)

v0.39.5

Compare Source

  • feat(vue-component-meta): add option to expose raw type (#​1674)
  • fix(vue-component-meta): recursive schema parsing (#​1660)
  • fix(vue-component-meta): parse defineProps in script setup with option (#​1665)
  • fix: SFC syntax broken in vscode v1.70.0 (#​1566) (#​1675)
  • fix: vite app preview not working (#​1668)
  • fix: diagnosis is slow on windows after v0.39.2 (#​1663)
  • fix: compilerOptions.types not working since v0.39.2 (#​1650)
  • fix: avoid auto-import path append .js (#​1667)
  • fix: avoid variables defined after export default report TS_2454
  • perf: cache semver result on auto-complete

v0.39.4

Compare Source

  • feat: support ESM project (#​1543)
  • fix: "Volar: Reload Project" command cannot detect node_modules change
  • fix: webview buttons show to unrelated extensions (#​1611)

v0.39.3

Compare Source

  • feat(vue-component-meta): component schema improves (#​1656)
  • feat(vue-component-meta): support options api props default (#​1649)
  • feat: add "Volar: Reload Project" command (#​1605)
  • fix: vue-tsc watch not working (#​1647)

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, click this checkbox.

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

@vercel
Copy link

vercel bot commented Jul 31, 2022

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

Name Status Preview Updated
sortablejs-vue3 ✅ Ready (Inspect) Visit Preview Sep 7, 2022 at 6:11PM (UTC)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 058efc6 to c25baa0 Compare July 31, 2022 14:13
@renovate renovate bot changed the title Update dependency vue-tsc to v0.39.3 Update dependency vue-tsc to v0.39.4 Jul 31, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c25baa0 to 008c8d3 Compare August 6, 2022 12:45
@renovate renovate bot changed the title Update dependency vue-tsc to v0.39.4 Update dependency vue-tsc to v0.39.5 Aug 6, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 008c8d3 to e368189 Compare August 9, 2022 11:51
@renovate renovate bot changed the title Update dependency vue-tsc to v0.39.5 Update all non-major dependencies Aug 9, 2022
@renovate renovate bot changed the title Update all non-major dependencies Update all non-major dependencies to v3.0.5 Aug 9, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e368189 to 6020cf9 Compare August 10, 2022 10:46
@renovate renovate bot changed the title Update all non-major dependencies to v3.0.5 Update all non-major dependencies Aug 10, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6020cf9 to d617766 Compare August 10, 2022 22:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d617766 to 73a21a9 Compare August 11, 2022 20:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 73a21a9 to 1bff5cc Compare August 12, 2022 16:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1bff5cc to 4447e6d Compare August 16, 2022 09:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4447e6d to f7a4c8e Compare August 19, 2022 14:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f7a4c8e to f4320ca Compare August 23, 2022 16:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f4320ca to df6db34 Compare August 26, 2022 00:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from df6db34 to 15c229c Compare August 27, 2022 22:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15c229c to 4c436d9 Compare August 28, 2022 19:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c436d9 to 3d76b0a Compare August 28, 2022 23:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3d76b0a to 24d705f Compare August 30, 2022 22:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 24d705f to c79e6f3 Compare September 3, 2022 18:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c79e6f3 to a3a820b Compare September 5, 2022 02:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a3a820b to 648d063 Compare September 5, 2022 13:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 648d063 to 86b1f9b Compare September 6, 2022 04:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 86b1f9b to 82e241a Compare September 6, 2022 10:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 82e241a to 3504b3b Compare September 6, 2022 22:16
@MaxLeiter MaxLeiter merged commit 0cd6319 into main Sep 7, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch September 7, 2022 21:24
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