Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
haoqunjiang merged 1 commit intomainfromrenovate/all-minor-patch
Jan 5, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovaterenovatebot commentedDec 12, 2022
edited
Loading

Mend Renovate

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidence
@playwright/test (source)^1.28.1 ->^1.29.1ageadoptionpassingconfidence
@types/node (source)^18.11.12 ->^18.11.18ageadoptionpassingconfidence
@vue/test-utils^2.2.6 ->^2.2.7ageadoptionpassingconfidence
cypress^12.0.2 ->^12.3.0ageadoptionpassingconfidence
husky (source)^8.0.2 ->^8.0.3ageadoptionpassingconfidence
vite (source)^4.0.0 ->^4.0.4ageadoptionpassingconfidence
vitest^0.25.6 ->^0.26.3ageadoptionpassingconfidence
vue-tsc^1.0.12 ->^1.0.22ageadoptionpassingconfidence

Release Notes

Microsoft/playwright

v1.29.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/18928 - [BUG] Electron firstWindow times out after upgrading to 1.28.0https://github.com/microsoft/playwright/issues/192466 - [BUG] Electron firstWindow times out after upgrading to 1.28.https://github.com/microsoft/playwright/issues/1941212 - [REGRESSION]: 1.28 does not work with electron-serve anymorhttps://github.com/microsoft/playwright/issues/19540540 - [BUG] electron.app.getAppPath() returns the path one level higher if you run electron pointing to the directhttps://github.com/microsoft/playwright/issues/195489548 - [REGRESSION]: Ubuntu 18 LTS not supported anymore

Browser Versions

  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108

v1.29.0

Compare Source

New APIs

  • New methodroute.fetch() and new optionjson forroute.fulfill():

    awaitpage.route('**/api/settings',asyncroute=>{// Fetch original settings.constresponse=awaitroute.fetch();// Force settings theme to a predefined value.constjson=awaitresponse.json();json.theme='Solorized';// Fulfill with modified data.awaitroute.fulfill({ json});});
  • New methodlocator.all() to iterate over all matching elements:

    // Check all checkboxes!constcheckboxes=page.getByRole('checkbox');for(constcheckboxofawaitcheckboxes.all())awaitcheckbox.check();
  • Locator.selectOption matches now by value or label:

    <selectmultiple><optionvalue="red">Red</div><optionvalue="green">Green</div><optionvalue="blue">Blue</div></select>
    awaitelement.selectOption('Red');
  • Retry blocks of code until all assertions pass:

    awaitexpect(async()=>{constresponse=awaitpage.request.get('https://api.example.com');awaitexpect(response).toBeOK();}).toPass();

    Read more inour documentation.

  • Automatically capturefull page screenshot on test failure:

    // playwright.config.tsimporttype{PlaywrightTestConfig}from'@&#8203;playwright/test';constconfig:PlaywrightTestConfig={use:{screenshot:{mode:'only-on-failure',fullPage:true,}}};exportdefaultconfig;

Miscellaneous

Browser Versions

  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108
vuejs/test-utils

v2.2.7

Compare Source

Fixes

Docs

Chore

New Contributors

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

cypress-io/cypress

v12.3.0

Compare Source

Changelog:https://docs.cypress.io/guides/references/changelog#&#8203;12-3-0

v12.2.0

Compare Source

Changelog:https://docs.cypress.io/guides/references/changelog#&#8203;12-2-0

v12.1.0

Compare Source

Changelog:https://docs.cypress.io/guides/references/changelog#&#8203;12-1-0

typicode/husky

v8.0.3

Compare Source

  • fix: add git not installed message#​1208
vitejs/vite

v4.0.4

Compare Source

v4.0.3

Compare Source

v4.0.2

Compare Source

v4.0.1

Compare Source

vitest-dev/vitest

v0.26.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.26.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.26.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.26.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.25.7

Compare Source

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

v1.0.22

Compare Source

  • fix: document folding ranges not working in .ts

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: addvolar.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): simplifyLanguageServerPlugin api and dependency injection connection (#​2273)
  • refactor(framework): combinecreateLanguageService andcreateDocumentService

v1.0.19

Compare Source

  • feat: addexperimentalAdditionalLanguageModules option forvueCompilerOptions (#​2267)
  • fix: TStypescript/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 forvueCompilerOptions 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 withoutstrictTemplates enabled (#​2255)

v1.0.17

Compare Source

  • feat: support syntax highlighting forlang="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 whenv-bind exist (#​2166)
  • fix: functional component type check not working when return type includesprops property (#​2206)
  • fix: v-slot error whennoPropertyAccessFromIndexSignature 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): makeschema.ignore accept functions (#​2232)
  • feat: addvolar.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 templateType 'void' has no call signatures errors (#​2225)
  • fix(vue-tsc): shimvue-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: addvue-tsc-eslint-hook module to support use eslint in vue-tsc (#​2220)
  • feat: add settingvolar.vueserver.maxFileSize (#​2186)
  • feat: add settingvolar.doctor.checkVueTsc and disable by default (#​2186)
  • feat: add settingvolar.vueserver.configFilePath (#​2078)
  • feat: auto add space between double curly brackets (#​2088)
  • feat: support formatting for stylev-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

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. Getconfig help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated byMend Renovate. View repository job loghere.

@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 7 times, most recently from379684a to092f6d4CompareDecember 16, 2022 23:06
@renovaterenovatebot changed the titlechore(deps): update all non-major dependenciesUpdate all non-major dependenciesDec 17, 2022
@renovaterenovatebot changed the titleUpdate all non-major dependencieschore(deps): update all non-major dependenciesDec 17, 2022
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 10 times, most recently from9821fb4 toe167e03CompareDecember 22, 2022 00:27
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 5 times, most recently from2645d54 toebd5f15CompareJanuary 1, 2023 14:48
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 5 times, most recently from9784f69 to3606f3eCompareJanuary 4, 2023 23:55
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from3606f3e to8f3af95CompareJanuary 5, 2023 03:15
@haoqunjianghaoqunjiang merged commitd9c0188 intomainJan 5, 2023
@haoqunjianghaoqunjiang deleted the renovate/all-minor-patch branchJanuary 5, 2023 06:31
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

1 participant
@haoqunjiang

[8]ページ先頭

©2009-2025 Movatter.jp