Update all non-major dependencies
Compare changes
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
+ 1
− 1
On July, 16th between 18:00 and 22:00 gitlab.tugraz.at may not be available (Reason: maintenance work / gitlab updates).
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@babel/core (source) | devDependencies | patch | 7.17.8 -> 7.17.9 |
@rollup/plugin-node-resolve | devDependencies | minor | 13.1.3 -> 13.2.0 |
eslint (source) | devDependencies | minor | 8.12.0 -> 8.13.0 |
eslint-plugin-jsdoc | devDependencies | minor | 39.1.0 -> 39.2.0 |
i18next (source) | dependencies | patch | 21.6.14 -> 21.6.16 |
jszip | dependencies | patch | 3.9.0 -> 3.9.1 |
lit (source) | dependencies | patch | 2.2.1 -> 2.2.2 |
playwright-core (source) | devDependencies | minor | 1.20.2 -> 1.21.0 |
rollup-plugin-license | devDependencies | minor | 2.6.1 -> 2.7.0 |
v7.17.9
babel-parser
, babel-standalone
@babel/standalone
(@nicolo-ribaudo)babel-traverse
babel-plugin-proposal-decorators
babel-parser
babel-generator
, babel-parser
babel-plugin-transform-classes
, babel-plugin-transform-modules-commonjs
, babel-preset-env
.mjs
and .js
files (@nicolo-ribaudo)babel-helper-create-class-features-plugin
, babel-plugin-proposal-class-properties
name
/length
(@nicolo-ribaudo)babel-plugin-proposal-decorators
jest-light-runner
from npm (@nicolo-ribaudo)babel-cli
babel-helper-function-name
, babel-helper-get-function-arity
@babel/helper-get-function-arity
package (@nicolo-ribaudo)babel-helpers
@babel/helpers
code (@nicolo-ribaudo)babel-core
, babel-highlight
, babel-parser
v13.2.0
2022-04-11
v8.13.0
c32482e
docs: Typo in space-infix-ops docs (#15754) (kmin-jeong)f2c2d35
docs: disambiguate types FormatterFunction
and LoadedFormatter
(#15727) (Francesco Trotta)v39.2.0
require-jsdoc
: add minLineCount
option to avoid reporting short functions/contexts; fixes #870 (199aa4a)minLineCount
(288363e)v39.1.1
v21.6.16
v21.6.15
v2.2.2
#2657 a6069c40
- Remove readonly restriction from StyleInfo
interface as addition, deletion, and updating of styles is valid. Expanded styleMap
documentation with links to lit.dev.
#2642 badc532c
- Add an additional security brand check to StaticValues; Similar to #2307
#2691 171143bd
- Fixes ref
bug when auto-bound class method used as a callback could incorrectly receive undefined
.
#2661 9a3a38cd
- Give a clearer error message when rendering into null/undefined
#2646 365cd09a
- Clarify that hacking around the template strings array brand error can create security vulnerabilities.
v1.21.0
New experimental role selectors that allow selecting elements by their ARIA role, ARIA attributes and accessible name.
// Click a button with accessible name "log in"
await page.click('role=button[name="log in"]')
To use role selectors, make sure to pass PLAYWRIGHT_EXPERIMENTAL_FEATURES=1
environment variable:
// playwright.config.js
process.env.PLAYWRIGHT_EXPERIMENTAL_FEATURES = '1';
module.exports = {
/* ... */
};
Read more in our documentation.
New scale
option in Page.screenshot
for smaller sized screenshots.
New caret
option in Page.screenshot
to control text caret. Defaults to "hide"
.
New method expect.poll
to wait for an arbitrary condition:
// Poll the method until it returns an expected result.
await expect.poll(async () => {
const response = await page.request.get('https://api.example.com');
return response.status();
}).toBe(200);
expect.poll
supports most synchronous matchers, like .toBe()
, .toContain()
, etc.
Read more in our documentation.
PLAYWRIGHT_EXPERIMENTAL_TS_ESM
env variable is
no longer required.mcr.microsoft.com/playwright
docker image no longer contains Python. Please use mcr.microsoft.com/playwright/python
as a Playwright-ready docker image with pre-installed Python.Locator.setInputFiles
API.This version was also tested against the following stable channels:
This MR has been generated by Renovate Bot.
For a faster browsing experience, some files are collapsed by default.