Skip to content
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

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

Merged
merged 1 commit into from
Sep 10, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 4, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/react (source) ^18.0.18 -> ^18.0.19 age adoption passing confidence
@vitejs/plugin-react (source) ^2.0.1 -> ^2.1.0 age adoption passing confidence
@vitejs/plugin-vue (source) ^3.0.3 -> ^3.1.0 age adoption passing confidence
pnpm (source) 7.9.5 -> 7.11.0 age adoption passing confidence
vite (source) ^3.0.9 -> ^3.1.0 age adoption passing confidence
vite-plugin-css-injected-by-js ^2.0.4 -> ^2.1.0 age adoption passing confidence
vue (source) ^3.2.38 -> ^3.2.39 age adoption passing confidence
vue-tsc ^0.40.5 -> ^0.40.13 age adoption passing confidence

Release Notes

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

v2.1.0

Compare Source

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

v3.1.0

Compare Source

pnpm/pnpm

v7.11.0

Compare Source

Minor Changes

  • pnpm patch: edit the patched package in a directory specified by the --edit-dir option. E.g., pnpm patch express@3.1.0 --edit-dir=/home/xxx/src/patched-express #​5304

Patch Changes

  • Auto installing a peer dependency in a workspace that also has it as a dev dependency in another project #​5144.
  • When an error happens during installation of a subdependency, print some context information in order to be able to locate that subdependency. Print the exact chain of packages that led to the problematic dependency.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: pnpm/pnpm@v7.10.0...v7.11.0

v7.10.0

Compare Source

Minor Changes

  • New time-based resolution strategy supported.

    When resolution-mode is set to time-based, pnpm will resolve dependencies the following way:

    1. Direct dependencies will be resolved to their lowest versions. So if there is foo@^1.1.0 in the dependencies, then 1.1.0 will be installed.
    2. Subdependencies will be resolved from versions that were published before the last direct dependency was published.

    With this resolution mode installations with hot cache are faster. It also reduces the chance of subdependency hijacking as subdependencies will be updated only if direct dependencies are updated.

    This resolution mode works only with npm's full metadata. So it is slower in some scenarios. However, if you use Verdaccio v5.15.1 or newer, you may set the registry-supports-time-field setting to true, and it will be really fast.

    Related RFC.

  • Enhance pnpm env with the remove command. To remove a Node.js version installed by pnpm, run:

    pnpm env remove --global <node.js version>
    

Patch Changes

  • pnpm store prune should remove all cached metadata.
  • Don't modify the manifest of the injected workspace project, when it has the same dependency in prod and peer dependencies.

Our Gold Sponsors

Our Silver Sponsors

What's Changed

New Contributors

Full Changelog: pnpm/pnpm@v7.9.5...v7.10.0

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

Marco-Prontera/vite-plugin-css-injected-by-js

v2.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: marco-prontera/vite-plugin-css-injected-by-js@v2.0.4...v2.1.0

vuejs/core

v3.2.39

Compare Source

Bug Fixes
johnsoncodehk/volar

v0.40.13

Compare Source

  • fix: cycle reactive reference lead to memory leak

v0.40.12

Compare Source

  • perf: fix incremental template compile not working
  • perf: cache path resolve result on getScriptVersion
  • perf: faster code mapping range transform
Our Sponsors

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)

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)

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" in timezone Asia/Shanghai, 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.

@renovate renovate bot added the dependencies label Sep 4, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 17bbb33 to 3a4d198 Compare September 8, 2022 04:29
| datasource | package                        | from    | to      |
| ---------- | ------------------------------ | ------- | ------- |
| npm        | @types/react                   | 18.0.18 | 18.0.19 |
| npm        | @types/react                   | 18.0.18 | 18.0.19 |
| npm        | @vitejs/plugin-react           | 2.0.1   | 2.1.0   |
| npm        | @vitejs/plugin-vue             | 3.0.3   | 3.1.0   |
| npm        | pnpm                           | 7.9.5   | 7.11.0  |
| npm        | vite                           | 3.0.9   | 3.1.0   |
| npm        | vite-plugin-css-injected-by-js | 2.0.4   | 2.1.0   |
| npm        | vue                            | 3.2.38  | 3.2.39  |
| npm        | vue                            | 3.2.38  | 3.2.39  |
| npm        | vue-tsc                        | 0.40.5  | 0.40.13 |
@Cphayim Cphayim merged commit a888695 into main Sep 10, 2022
@Cphayim Cphayim deleted the renovate/all-minor-patch branch September 10, 2022 15:21
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.

None yet

1 participant