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

Merged
merged 1 commit into from
Feb 7, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 17, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify/iconify (source) ^2.1.0 -> ^2.1.2 age adoption passing confidence
@types/file-saver ^2.0.4 -> ^2.0.5 age adoption passing confidence
@types/prismjs ^1.16.6 -> ^1.26.0 age adoption passing confidence
@vitejs/plugin-vue ^2.0.1 -> ^2.1.0 age adoption passing confidence
@vue/compiler-sfc ^3.2.26 -> ^3.2.30 age adoption passing confidence
jest (source) ^27.4.7 -> ^27.5.0 age adoption passing confidence
playwright-chromium (source) ^1.17.2 -> ^1.18.1 age adoption passing confidence
pytorch-ignite >=0.4.7 -> >=0.4.8 age adoption passing confidence
torch >=1.10.1 -> >=1.10.2 age adoption passing confidence
torchvision >=0.11.2 -> >=0.11.3 age adoption passing confidence
vite ^2.7.10 -> ^2.7.13 age adoption passing confidence
vue ^3.2.26 -> ^3.2.30 age adoption passing confidence

Release Notes

iconify/iconify

v2.1.2

Compare Source

v2.1.1

Compare Source

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

v2.1.0

Compare Source

Bug Fixes

2.0.1 (2021-12-14)

Bug Fixes
vuejs/core

v3.2.30

Compare Source

Features
  • ssr: support custom directive getSSRProps in optimized compilation (60cf175), closes #​5304
Performance Improvements
  • reactivity: optimize effect/effectScope active state tracking (2993a24)

v3.2.29

Compare Source

Bug Fixes

v3.2.28

Compare Source

v3.2.27

Compare Source

Bug Fixes
  • KeepAlive: remove cached VNode properly (#​5260) (2e3e183), closes #​5258
  • reactivity-transform: should not rewrite for...in / for...of scope variables (7007ffb)
  • sfc-playground: hide title to avoid overlap (#​5099) (44b9527)
  • ssr: make computed inactive during ssr, fix memory leak (f4f0966), closes #​5208
  • ssr: remove missing ssr directive transform error (55cc4af)
  • types/tsx: allow ref_for type on tsx elements (78df8c7)
  • types: fix shallowReadonly type (92f11d6)
  • types: handle ToRef (5ac7030), closes #​5188
  • types: KeepAlive match pattern should allow mixed array (3007d5b)
Features
  • types: simplify ExtractPropTypes to avoid props JSDocs being removed (#​5166) (a570b38)
Performance Improvements
  • improve memory usage for static vnodes (ed9eb62)
facebook/jest

v27.5.0

Compare Source

Features
  • [expect] Add asymmetric matcher expect.closeTo (#​12243)
  • [jest-mock] Added mockFn.mock.lastCall to retrieve last argument (#​12285)
Fixes
  • [expect] Add a fix for .toHaveProperty('') (#​12251)
  • [jest-each, @​jest/globals] Allow passing ReadonlyArray type of a table to describe.each and test.each (#​12297)
  • [@jest/globals] Add missing options argument to jest.doMock typing (#​12292)
  • [jest-environment-node] Add atob and btoa (#​12269)
  • [jest-matcher-utils] Correct diff for expected asymmetric matchers (#​12264)
  • [jest-message-util] Fix .getTopFrame() (and toMatchInlineSnapshot()) with mjs files (#​12277)
Chore & Maintenance
  • [*] Update graceful-fs to ^4.2.9 (#​11749)
Performance
  • [jest-resolve] perf: skip error creation on not found stat calls (#​11749)
Microsoft/playwright

v1.18.1

Compare Source

Highlights

This patch includes improvements to the TypeScript support and the following bug fixes:

https://github.com/microsoft/playwright/issues/11550 - [REGRESSION]: Errors inside route handler does not lead to unhandled rejections anymorehttps://github.com/microsoft/playwright/issues/115522 - [BUG] Could not resolve "C:\repo\framework\utils" in file C:\repo\tests\test.ts.

Browser Versions
  • Chromium 99.0.4812.0
  • Mozilla Firefox 95.0
  • WebKit 15.4

This version was also tested against the following stable channels:

  • Google Chrome 97
  • Microsoft Edge 97

v1.18.0

Compare Source

Locator Improvements

  • [locator.dragTo(locator)][locator.dragTo(locator)]
  • [expect(locator).toBeChecked({ checked })][expect(locator).toBeChecked({ checked })]
  • Each locator can now be optionally filtered by the text it contains:
    await page.locator('li', { hasText: 'my item' }).locator('button').click();
    Read more in locator documentation.

Testing API improvements

  • [expect(response).toBeOK()][expect(response).toBeOK()]
  • [testInfo.attach()][testInfo.attach()]
  • [test.info()][test.info()]

Improved TypeScript Support

  1. Playwright Test now respects tsconfig.json's baseUrl and paths, so you can use aliases
  2. There is a new environment variable PW_EXPERIMENTAL_TS_ESM that allows importing ESM modules in your TS code, without the need for the compile step. Don't forget the .js suffix when you are importing your esm modules. Run your tests as follows:
npm i --save-dev @​playwright/test@1.18.0
PW_EXPERIMENTAL_TS_ESM=1 npx playwright test

Create Playwright

The npm init playwright command is now generally available for your use:

### Run from your project's root directory
npm init playwright
### Or create a new project
npm init playwright new-project

This will scaffold everything needed to get started with Playwright Test: configuration file, optionally add examples, a GitHub Action workflow and a first test example.spec.ts.

New APIs & changes

  • new [testCase.repeatEachIndex][testCase.repeatEachIndex] API
  • [acceptDownloads][acceptDownloads] option now defaults to true

Breaking change: custom config options

Custom config options are a convenient way to parametrize projects with different values. Learn more in the parametrization guide.

Previously, any fixture introduced through [test.extend][test.extend] could be overridden in the [testProject.use][testProject.use] config section. For example,

// WRONG: THIS SNIPPET DOES NOT WORK SINCE v1.18.

// fixtures.js
const test = base.extend({
  myParameter: 'default',
});

// playwright.config.js
module.exports = {
  use: {
    myParameter: 'value',
  },
};

The proper way to make a fixture parametrized in the config file is to specify option: true when defining the fixture. For example,

// CORRECT: THIS SNIPPET WORKS SINCE v1.18.

// fixtures.js
const test = base.extend({
  // Fixtures marked as "option: true" will get a value specified in the config,
  // or fallback to the default value.
  myParameter: ['default', { option: true }],
});

// playwright.config.js
module.exports = {
  use: {
    myParameter: 'value',
  },
};

Browser Versions

  • Chromium 99.0.4812.0
  • Mozilla Firefox 95.0
  • WebKit 15.4

This version was also tested against the following stable channels:

  • Google Chrome 97
  • Microsoft Edge 97

(1.18.0-beta-1642620709000)

pytorch/ignite

v0.4.8

Compare Source

PyTorch-Ignite 0.4.8 - Release Notes
New Features
  • Added data as None option to Engine.run (#​2369)
  • Now Checkpoint.load_objects can accept str and load the checkpoint internally (#​2305)
Bug fixes
  • Fixed issue with DeterministicEngine.state_dict() (#​2412)
  • Fixed EMAHandler warm-up behaviour (#​2333)
  • Fixed _compute_nproc_per_node in case of bad dist configuration (#​2288)
  • Fixed state parameter scheduler to work with EMAHandler (#​2326)
  • Fixed a bug on StateParamScheduler.attach method (#​2316)
  • Fixed ClearMLLogger to retrieve current task before trying to create a new one (#​2344)
  • Added hashing a checkpoint utility: #​2272, #​2283, #​2273
  • Fixed config check issue with multi-node spawn method (#​2424)
Housekeeping (docs, CI, examples, tests, etc)
Acknowledgments

🎉 Thanks to our community and all our contributors for the issues, PRs and 🌟 ⭐️ 🌟 !
💯 We really appreciate your implication into the project (in alphabetical order):

@​Abo7atm, @​DevPranjal, @​Eunjnnn, @​FarehaNousheen, @​H4dr1en, @​Ishan-Kumar2, @​KickItLikeShika, @​Priyansi, @​bibhabasumohapatra, @​fco-dv, @​louis-she, @​sandylaker, @​sdesrozis, @​trsvchn, @​vfdev-5, @​ydcjeff

pytorch/vision

v0.11.3

Compare Source

This is a minor release compatible with PyTorch 1.10.2 and a minor bug fix.

Highlights
Bug Fixes
  • [CI] Skip jpeg comparison tests with PIL (#​5232)
vitejs/vite (vite)

v2.7.13

Compare Source

Please refer to CHANGELOG.md for details.

v2.7.12

Compare Source

Please refer to CHANGELOG.md for details.

v2.7.11

Compare Source

Please refer to CHANGELOG.md for details.


Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update dependencies label Jan 17, 2022
@netlify
Copy link

netlify bot commented Jan 17, 2022

✔️ Deploy Preview for code-generator ready!

🔨 Explore the source changes: 5f3ea5f

🔍 Inspect the deploy log: https://app.netlify.com/sites/code-generator/deploys/6200e7bd96b4c300083b37a7

😎 Browse the preview: https://deploy-preview-202--code-generator.netlify.app/

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from ca7c5da to 85a4f28 Compare January 24, 2022 11:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 202b492 to 177b870 Compare January 27, 2022 23:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a449f3e to 44f8eb4 Compare February 5, 2022 11:44
@ydcjeff ydcjeff merged commit a8b617e into main Feb 7, 2022
@ydcjeff ydcjeff deleted the renovate/all-minor-patch branch February 7, 2022 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants