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 #142

Merged
merged 1 commit into from Dec 29, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 24, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config 0.31.0 -> 0.34.0 age adoption passing confidence
@commitlint/cli (source) 17.2.0 -> 17.3.0 age adoption passing confidence
@commitlint/config-conventional (source) 17.2.0 -> 17.3.0 age adoption passing confidence
@playwright/test (source) 1.28.0 -> 1.29.1 age adoption passing confidence
@types/node (source) 18.11.9 -> 18.11.18 age adoption passing confidence
@vueuse/core 9.5.0 -> 9.9.0 age adoption passing confidence
axios (source) 1.1.3 -> 1.2.1 age adoption passing confidence
dayjs (source) 1.11.6 -> 1.11.7 age adoption passing confidence
echarts (source) 5.4.0 -> 5.4.1 age adoption passing confidence
electron 21.3.0 -> 21.3.3 age adoption passing confidence
eslint (source) 8.27.0 -> 8.30.0 age adoption passing confidence
naive-ui (source) 2.33.5 -> 2.34.3 age adoption passing confidence
pnpm (source) 7.16.1 -> 7.21.0 age adoption passing confidence
typescript (source) 4.9.3 -> 4.9.4 age adoption passing confidence
unocss 0.46.5 -> 0.48.0 age adoption passing confidence
vite (source) 3.2.4 -> 3.2.5 age adoption passing confidence
vite-plugin-electron 0.10.4 -> 0.11.1 age adoption passing confidence
vitest 0.25.2 -> 0.26.2 age adoption passing confidence
vue-echarts 6.2.3 -> 6.3.3 age adoption passing confidence
vue-tsc 1.0.9 -> 1.0.18 age adoption passing confidence

Release Notes

antfu/eslint-config

v0.34.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.33.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.33.0

Compare Source

   🐞 Bug Fixes
  • Type aware linting when trigged by tsconfig.eslint.json  -  by @​antfu (1c426)
    View changes on GitHub

v0.32.0

Compare Source

   🚀 Features
    View changes on GitHub

v0.31.1

Compare Source

   🚀 Features
    View changes on GitHub
conventional-changelog/commitlint (@​commitlint/cli)

v17.3.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.3.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

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 method route.fetch() and new option json for route.fulfill():

    await page.route('**/api/settings', async route => {
      // Fetch original settings.
      const response = await route.fetch();
    
      // Force settings theme to a predefined value.
      const json = await response.json();
      json.theme = 'Solorized';
    
      // Fulfill with modified data.
      await route.fulfill({ json });
    });
  • New method locator.all() to iterate over all matching elements:

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

    <select multiple>
      <option value="red">Red</div>
      <option value="green">Green</div>
      <option value="blue">Blue</div>
    </select>
    await element.selectOption('Red');
  • Retry blocks of code until all assertions pass:

    await expect(async () => {
      const response = await page.request.get('https://api.example.com');
      await expect(response).toBeOK();
    }).toPass();

    Read more in our documentation.

  • Automatically capture full page screenshot on test failure:

    // playwright.config.ts
    import type { PlaywrightTestConfig } from '@&#8203;playwright/test';
    
    const config: PlaywrightTestConfig = {
      use: {
        screenshot: {
          mode: 'only-on-failure',
          fullPage: true,
        }
      }
    };
    
    export default config;
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

v1.28.1

Compare Source

Highlights

This patch release includes the following bug fixes:

https://github.com/microsoft/playwright/issues/18928 - [BUG] Electron firstWindow times out after upgrading to 1.28.0https://github.com/microsoft/playwright/issues/189200 - [BUG] [expanded=false] in role selector returns elements without aria-expanded attribuhttps://github.com/microsoft/playwright/issues/18865865 - [BUG] regression in killing web server process in 1.28.0

Browser Versions

  • Chromium 108.0.5359.29
  • Mozilla Firefox 106.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 107
  • Microsoft Edge 107
vueuse/vueuse

v9.9.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v9.8.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.8.1

Compare Source

   🐞 Bug Fixes
  • useStorage: Resume the watch after setting the value, fix loop updates  -  by @​antfu (c3851)
    View changes on GitHub

v9.8.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v9.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v9.6.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
axios/axios

v1.2.1

Compare Source

Changed
  • feat(exports): export mergeConfig #​5151
Fixed
  • fix(CancelledError): include config #​4922
  • fix(general): removing multiple/trailing/leading whitespace #​5022
  • fix(headers): decompression for responses without Content-Length header #​5306
  • fix(webWorker): exception to sending form data in web worker #​5139
Refactors
  • refactor(types): AxiosProgressEvent.event type to any #​5308
  • refactor(types): add missing types for static AxiosError.from method #​4956
Chores
  • chore(docs): remove README link to non-existent upgrade guide #​5307
  • chore(docs): typo in issue template name #​5159
Contributors to this release

v1.2.0

Compare Source

Changed
  • changed: refactored module exports #​5162
  • change: re-added support for loading Axios with require('axios').default #​5225
Fixed
  • fix: improve AxiosHeaders class #​5224
  • fix: TypeScript type definitions for commonjs #​5196
  • fix: type definition of use method on AxiosInterceptorManager to match the the README #​5071
  • fix: __dirname is not defined in the sandbox #​5269
  • fix: AxiosError.toJSON method to avoid circular references #​5247
  • fix: Z_BUF_ERROR when content-encoding is set but the response body is empty #​5250
Refactors
  • refactor: allowing adapters to be loaded by name #​5277
Chores
  • chore: force CI restart #​5243
  • chore: update ECOSYSTEM.md #​5077
  • chore: update get/index.html #​5116
  • chore: update Sandbox UI/UX #​5205
  • chore:(actions): remove git credentials after checkout #​5235
  • chore(actions): bump actions/dependency-review-action from 2 to 3 #​5266
  • chore(packages): bump loader-utils from 1.4.1 to 1.4.2 #​5295
  • chore(packages): bump engine.io from 6.2.0 to 6.2.1 #​5294
  • chore(packages): bump socket.io-parser from 4.0.4 to 4.0.5 #​5241
  • chore(packages): bump loader-utils from 1.4.0 to 1.4.1 #​5245
  • chore(docs): update Resources links in README #​5119
  • chore(docs): update the link for JSON url #​5265
  • chore(docs): fix broken links #​5218
  • chore(docs): update and rename UPGRADE_GUIDE.md to MIGRATION_GUIDE.md #​5170
  • chore(docs): typo fix line #​856 and #​920 #​5194
  • chore(docs): typo fix #​800 #​5193
  • chore(docs): fix typos #​5184
  • chore(docs): fix punctuation in README.md #​5197
  • chore(docs): update readme in the Handling Errors section - issue reference #​5260 #​5261
  • chore: remove \b from filename #​5207
  • chore(docs): update CHANGELOG.md #​5137
  • chore: add sideEffects false to package.json #​5025
Contributors to this release
iamkun/dayjs

v1.11.7

Compare Source

Bug Fixes
apache/echarts

v5.4.1

Compare Source

  • [Feature] [i18n] Add Hungarian(hu_HU) translation. #​17978 (ifjkovacsik)
  • [Feature] [svg] Support gradients and patterns for background color in SVG renderer. #​959 (plainheart)
  • [Feature] [candlestick] Provide borderColorDoji option for custom doji color. #​17717 (Ovilia)
  • [Feature] [sankey] Support edgeLabel. #​16767 (susiwen8)
  • [Feature] [graph] Make graph node draggable in none and circular layout. #​15428 (kongmoumou)
  • [Feature] [util] Use native Map if available. #​965 (JonasBa)
  • [Feature] [type] Export ECElementEvent for TypeScript. #​17892 (keita-determined)
  • [Fix] [i18n] Rename language code of Ukrainian to UK. #​17812 (striezel)
  • [Fix] [pie] Fix percent isn't updated after the legend is changed. #​17734 (plainheart)
  • [Fix] [pie] Fix potential null access to labelLine when minShowLabelRadian is set. #​17715 (plainheart)
  • [Fix] [pie] Fix center may not be converted to correct point when coordinate system is specified. #​17920 (plainheart)
  • [Fix] [heatmap] Fix heatmap label may overlap when dataZoom is enabled. #​17876 (plainheart)
  • [Fix] [animation] Fix incorrect dataGroupId for old data items in universalTransition. #​17559 (tyn1998)
  • [Fix] [dataZoom] Fallback to extent start/end when value or percent is invalid. #​17934 (plainheart)
  • [Fix] [timeline] Fix chart can't work when axis line is not shown. #​17647 (plainheart)
  • [Fix] [tooltip] Fix tooltip arrow may cover the content when border is wide. #​17875 (plainheart)
  • [Fix] [marker] Fix markArea doesn't show when using x/y pixel but coord is not defined. #​17217 (jiawulin001)
  • [Fix] [marker] markArea of bar series now covers whole specified categories. #​17098 (jiawulin001)
  • [Fix] [legend] Fix legend inverse doesn't work if series data have the same name. #​17510 (caiwukun)
  • [Fix] [gauge] Render gauge sectors in the order of the "clockwise" option. #​17691 (ZeekoZhu)
  • [Fix] [ssr] Fix wrong expression for extracting the font size. #​968 (plainheart)
  • [Fix] [svg] Fix shape may disappear after morphing animation is finished in SVG renderer. (plainheart)
  • [Fix] [type] Fix EChartsInitOpts type error about height and width. #​17727 (MainHou)
  • [Fix] [type] Add overflow property to AxisLabelBaseOption interface. #​17808 (breizh24)
  • [Fix] [type] Add string & number type into the center option of pie series. #​17917 (plainheart)
  • [Fix] [type] Add missing function callback into lineStyle.color for lines series. #​17780 (plainheart)
electron/electron

v21.3.3: electron v21.3.3

Compare Source

Release Notes for v21.3.3

Fixes

  • Removed unneeded --turbo-profiling-input argument from mksnapshot_args. #​36495 (Also in 22)

Other Changes

  • Updated Chromium to 106.0.5249.199. #​36448

v21.3.1: electron v21.3.1

Compare Source

Release Notes for v21.3.1

Other Changes

  • Updated common.gypi for native modules to support C++17 features in V8. #​36383 (Also in 20)
eslint/eslint

v8.30.0

Compare Source

Features
Bug Fixes
  • 1a327aa fix: Ensure flat config unignores work consistently like eslintrc (#​16579) (Nicholas C. Zakas)
  • 9b8bb72 fix: autofix recursive functions in no-var (#​16611) (Milos Djermanovic)
Documentation
Chores

v8.29.0

Compare Source

Features

  • 49a07c5 feat: add allowParensAfterCommentPattern option to no-extra-parens (#​16561) (Nitin Kumar)
  • e6a865d feat: prefer-named-capture-group add suggestions (#​16544) (Josh Goldberg)
  • a91332b feat: In no-invalid-regexp validate flags also for non-literal patterns (#​16583) (trosos)

Documentation

Chores

v8.28.0

Compare Source

Features

  • 63bce44 feat: add ignoreClassFieldInitialValues option to no-magic-numbers (#​16539) (Milos Djermanovic)
  • 8385ecd feat: multiline properties in rule key-spacing with option align (#​16532) (Francesco Trotta)
  • a4e89db feat: no-obj-calls support Intl (#​16543) (Sosuke Suzuki)

Bug Fixes

  • c50ae4f fix: Ensure that dot files are found with globs. (#​16550) (Nicholas C. Zakas)
  • 9432b67 fix: throw error for first unmatched pattern (#​16533) (Milos Djermanovic)
  • e76c382 fix: allow * 1 when followed by / in no-implicit-coercion (#​16522) (Milos Djermanovic)

Documentation


Configuration

📅 Schedule: Branch creation - "before 6pm on Friday" 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, check this box

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Nov 24, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from fa15ec1 to 143d53c Compare December 3, 2022 22:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 206b08a to e755576 Compare December 12, 2022 04:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 704f534 to 6de3f59 Compare December 13, 2022 07:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d69aaef to 22e47e5 Compare December 17, 2022 04:07
@renovate renovate bot changed the title chore(deps): update all non-major dependencies Update all non-major dependencies Dec 17, 2022
@renovate renovate bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 17, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 6c64238 to ff8d3c9 Compare December 24, 2022 17:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from ed85eb0 to 54fa4b1 Compare December 26, 2022 19:07
@SharerMax SharerMax merged commit 0171415 into main Dec 29, 2022
@SharerMax SharerMax deleted the renovate/all-minor-patch branch December 29, 2022 05:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant