chore(deps-dev): bump the development-dependencies group across 1 directory with 10 updates
Bumps the development-dependencies group with 8 updates in the / directory:
| Package | From | To |
|---|---|---|
| @custom-elements-manifest/analyzer | 0.8.4 |
0.10.2 |
| @playwright/test | 1.38.1 |
1.44.0 |
| @types/jasmine | 4.3.6 |
5.1.4 |
| @types/react | 18.2.24 |
18.3.1 |
| @web/test-runner | 0.17.1 |
0.18.1 |
| @web/test-runner-playwright | 0.10.1 |
0.11.0 |
| web-test-runner-jasmine | 0.0.5 |
0.0.6 |
| wireit | 0.14.0 |
0.14.4 |
Updates @custom-elements-manifest/analyzer from 0.8.4 to 0.10.2
Changelog
Sourced from @custom-elements-manifest/analyzer's changelog.
Release 0.10.2
- Mark fields and methods starting with
#asprivateRelease 0.10.1
- Escape newlines and whitespaces from object output
Release 0.10.0
- Added support for new
cssStateaddition to the schemaRelease 0.9.9
- Support
@attributejsdoc betterRelease 0.9.8
- Skip
...super.propertiesin lit'sstatic propertiesRelease 0.9.7
- Added
scheduleUpdateto lit's method denylistRelease 0.9.6
- Added
createRenderRootto lit's method denylistRelease 0.9.5
- When using
litPlugin, it now removes overriden lit specific lifecycle methods to be aligned with the behavior of overriding lit specific lifecycle methods in classesRelease 0.9.4
- Updated the internally used TS version to
~5.4.2. This is a breaking change for plugin authors, because the AST that typescript exposes has changed; specifically for decorators;node.decoratorsno longer exists, but decorators can now be found innode.modifiers. There may be other AST changes as well.Release 0.9.3
- Fix missing type for
initializehookRelease 0.9.2
- Apply inheritance for
slots,cssPartsandcssPropertiesRelease 0.9.1
- Correctly remove
resolveInitializers from attributes when usinglitPluginRelease 0.9.0
- Adds support for
initializehook for plugins. This also fixes a initialization issue when previously using TS's typechecker in combination withoverrideModuleCreation
Commits
- See full diff in compare view
Updates @playwright/test from 1.38.1 to 1.44.0
Release notes
Sourced from @playwright/test's releases.
v1.44.0
New APIs
Accessibility assertions
expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit');expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo');expect(locator).toHaveRole() checks if the element has the specified ARIA role:
const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button');Locator handler
- After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new
noWaitAfteroption.- You can use new
timesoption in page.addLocatorHandler() to specify maximum number of times the handler should be run.- The handler in page.addLocatorHandler() now accepts the locator as argument.
- New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator);Miscellaneous options
multipartoption inapiRequestContext.fetch()now acceptsFormDataand supports repeating fields with the same name.const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData
... (truncated)
Commits
a6aa50bchore: set version to 1.44.0 (#30680)54c157dcherry-pick(#30677): chore: print resolved host in the http server te… (#30679)2d437e8cherry-pick(#30646): feat(chromium): roll to r1117 (#30652)7637399cherry-pick(#30636): fix(role): extract tagName safely (#30639)9e091e7cherry-pick(#30611): chore: add common env vars for junit and json re… (#30624)154694bchore: update playwright-browsers to Mar 19 (#30599)fa7d4e5docs: releae notes 1.44 for js (#30596)b9f70f4docs(junit): document existing options and env (#30595)fb90797fix(last-run): remove globalOutputDir (#30571)96f3d19feat(ctrl_or_meta): add a universal ctrl-meta modifier (#30572)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by yurys, a new releaser for @playwright/test since your current version.
Updates @types/jasmine from 4.3.6 to 5.1.4
Commits
- See full diff in compare view
Updates @types/react from 18.2.24 to 18.3.1
Commits
- See full diff in compare view
Updates @web/test-runner from 0.17.1 to 0.18.1
Release notes
Sourced from @web/test-runner's releases.
@web/test-runner@0.18.1Patch Changes
- Updated dependencies [4cc90648]
@web/test-runner-chrome@0.16.0
Changelog
Sourced from @web/test-runner's changelog.
0.18.1
Patch Changes
- Updated dependencies [4cc90648]
@web/test-runner-chrome@0.16.00.18.0
Minor Changes
- c185cbaa: Set minimum node version to 18
Patch Changes
- Updated dependencies [c185cbaa]
0.17.3
Patch Changes
- Updated dependencies [43be7391]
- Updated dependencies [60dda46f]
0.17.2
Patch Changes
Commits
6aefbecVersion Packages400fe3cchore: remove unused ci stuff, other stuff runs in ci already now5792e9cAdd file extensions to file imports835bb24Version Packagesd0079c6Merge pull request #2394 from koddsson/set-node-engines-to-node-18f375cf6Version Packages379aa52Version Packages612580echore: add selectOption plugin correctlya3e3004set node version to 18- See full diff in compare view
Updates @web/test-runner-playwright from 0.10.1 to 0.11.0
Changelog
Sourced from @web/test-runner-playwright's changelog.
0.11.0
Minor Changes
- c185cbaa: Set minimum node version to 18
Patch Changes
0.10.3
Patch Changes
0.10.2
Patch Changes
Commits
Updates playwright from 1.38.1 to 1.44.0
Release notes
Sourced from playwright's releases.
v1.44.0
New APIs
Accessibility assertions
expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit');expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo');expect(locator).toHaveRole() checks if the element has the specified ARIA role:
const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button');Locator handler
- After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new
noWaitAfteroption.- You can use new
timesoption in page.addLocatorHandler() to specify maximum number of times the handler should be run.- The handler in page.addLocatorHandler() now accepts the locator as argument.
- New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator);Miscellaneous options
multipartoption inapiRequestContext.fetch()now acceptsFormDataand supports repeating fields with the same name.const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData
... (truncated)
Commits
a6aa50bchore: set version to 1.44.0 (#30680)54c157dcherry-pick(#30677): chore: print resolved host in the http server te… (#30679)2d437e8cherry-pick(#30646): feat(chromium): roll to r1117 (#30652)7637399cherry-pick(#30636): fix(role): extract tagName safely (#30639)9e091e7cherry-pick(#30611): chore: add common env vars for junit and json re… (#30624)154694bchore: update playwright-browsers to Mar 19 (#30599)fa7d4e5docs: releae notes 1.44 for js (#30596)b9f70f4docs(junit): document existing options and env (#30595)fb90797fix(last-run): remove globalOutputDir (#30571)96f3d19feat(ctrl_or_meta): add a universal ctrl-meta modifier (#30572)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by yurys, a new releaser for playwright since your current version.
Updates typescript from 5.2.2 to 5.4.5
Release notes
Sourced from typescript's releases.
TypeScript 5.4.5
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
- fixed issues query for Typescript 5.4.5 (Stable).
Downloads are available on:
TypeScript 5.4.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
- fixed issues query for Typescript 5.4.4 (Stable).
Downloads are available on:
TypeScript 5.4.3
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
- fixed issues query for Typescript 5.4.0 (Beta).
- fixed issues query for Typescript 5.4.1 (RC).
- fixed issues query for Typescript 5.4.2 (Stable).
- fixed issues query for Typescript 5.4.3 (Stable).
Downloads are available on:
TypeScript 5.4
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
... (truncated)
Commits
27bcd4cUpdate LKG9f33bf1🤖 Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...71b2f84Bump version to 5.4.5 and LKG892936f🤖 Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...38a7c05release-5.4: Always set node-version for setup-node (#58117)b754fc3🤖 Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...8eb3367Bump version to 5.4.4 and LKGde9096b🤖 Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...06aae98🤖 Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...6d8134e🤖 Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...- Additional commits viewable in compare view
Updates web-test-runner-jasmine from 0.0.5 to 0.0.6
Commits
- See full diff in compare view
Updates wireit from 0.14.0 to 0.14.4
Changelog
Sourced from wireit's changelog.
[0.14.4] - 2024-01-26
Fixed
- When listing a symlink that points to a directory in
outputfiles, the symlink will now be directly cached as a symlink, instead of its children being cached. This also fixes anfile already exists, symlinkexception that could occur in the same situation.[0.14.3] - 2024-01-10
Fixed
- Handle missing file errors thrown while trying to fingerprint an input file with a graceful abort.
[0.14.2] - 2024-01-10
Added
- Added a
defaultoption to theenvsetting for externally-provided environment variables to use when no value is provided.Changed
- The default logger for non-interactive environments has been switched to the 'quiet-ci' logger.
- The local cache strategy will now create copy-on-write files when supported. This can improve performance when copying output files either into the cache or restoring from out of it, as the files' underlying data doesn't need to be copied, only filesystem metadata.
- Unhandled exceptions will now be handled more gracefully.
[0.14.1] - 2023-10-20
Fixed
Fix our
npx wireitdetection so we continue to give a good error message with the latest version ofnpmwhen wireit is run this way.Fix a bug where wireit would hang with an empty spinner after being killed with CTRL-C when running a service whose dependencies were still starting.
Commits
9d76837Release 0.14.4 (#1032)f1fce60Fix bug relating to expanding symlinks to directories (#1031)1305ce8Bump prettier from 3.1.1 to 3.2.2 (#1016)4a69a44Bump@typescript-eslint/parserfrom 6.18.1 to 6.19.0 (#1019)802015aBump@types/nodefrom 18.19.6 to 18.19.7 (#1017)9dc7721Add missing tag links (#1018)e8126f0Release 0.14.3 (#1013)58c34a4HandleENOENTWhen Fingerprinting Deleted Files (#991)bd61903Bump our wireit version and the markdown-it dep (#1012)1a2232bRelease 0.14.2 (#1011)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions