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): bump the minor-and-patch-updates group with 7 updates #23

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2024

Bumps the minor-and-patch-updates group with 7 updates:

Package From To
@playwright/test 1.46.1 1.47.0
@sveltejs/kit 2.5.25 2.5.26
@ukic/fonts 2.6.1 2.6.2
@ukic/web-components 2.26.0 2.27.1
n3 1.21.0 1.21.1
postcss 8.4.43 8.4.45
vite 5.4.2 5.4.3

Updates @playwright/test from 1.46.1 to 1.47.0

Release notes

Sourced from @​playwright/test's releases.

v1.47.0

Network Tab improvements

The Network tab in the UI mode and trace viewer has several nice improvements:

  • filtering by asset type and URL
  • better display of query string parameters
  • preview of font assets

Network tab now has filters

Credit to @​kubajanik for these wonderful improvements!

--tsconfig CLI option

By default, Playwright will look up the closest tsconfig for each imported file using a heuristic. You can now specify a single tsconfig file in the command line, and Playwright will use it for all imported files, not only test files:

# Pass a specific tsconfig
npx playwright test --tsconfig tsconfig.test.json

APIRequestContext now accepts URLSearchParams and string as query parameters

You can now pass URLSearchParams and string as query parameters to APIRequestContext:

test('query params', async ({ request }) => {
  const searchParams = new URLSearchParams();
  searchParams.set('userId', 1);
  const response = await request.get(
      'https://jsonplaceholder.typicode.com/posts',
      {
        params: searchParams // or as a string: 'userId=1'
      }
  );
  // ...
});

Miscellaneous

  • The mcr.microsoft.com/playwright:v1.47.0 now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use mcr.microsoft.com/playwright:v1.47.0-jammy instead.
  • The :latest tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.
  • New option behavior in page.removeAllListeners(), browser.removeAllListeners() and browserContext.removeAllListeners() to wait for ongoing listeners to complete.
  • TLS client certificates can now be passed from memory by passing cert and key as buffers instead of file paths.
  • Attachments with a text/html content type can now be opened in a new tab in the HTML report. This is useful for including third-party reports or other HTML content in the Playwright test report and distributing it to your team.
  • noWaitAfter in locator.selectOption() was deprecated.
  • We've seen reports of WebGL in Webkit misbehaving on GitHub Actions macos-13. We recommend upgrading GitHub Actions to macos-14.

... (truncated)

Commits

Updates @sveltejs/kit from 2.5.25 to 2.5.26

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.5.26

Patch Changes

  • fix: exclude service worker directory from tsconfig (#12196)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.5.26

Patch Changes

  • fix: exclude service worker directory from tsconfig (#12196)
Commits

Updates @ukic/fonts from 2.6.1 to 2.6.2

Updates @ukic/web-components from 2.26.0 to 2.27.1

Changelog

Sourced from @​ukic/web-components's changelog.

2.27.1 (2024-09-05)

Bug Fixes

  • react: update accordion story to be lowercase (246332d)

2.27.0 (2024-09-04)

Bug Fixes

  • react: update story book for test to react horizontal (849a69d)

Features

  • react: add chip and typography stories for in AG Grid (e9d5561)
  • react: add Cypress tests for icon button variants with tooltip (04b06f5)
Commits
  • 44512a5 chore(release): [ci skip] components publish
  • 246332d fix(react): update accordion story to be lowercase
  • bb0e87b chore(release): [ci skip] components publish
  • 04b06f5 feat(react): add Cypress tests for icon button variants with tooltip
  • bafd4e1 build(react): audit fix
  • 24fa718 Merge pull request #2337 from mi6/fix/2022-radio-group-toggle-disabled
  • dae0f6e Merge pull request #2330 from mi6/2057-high-contrast-visual-regression-tests-...
  • dbdcca3 test(react): add E2E and visual tests for setting / updating disabled prop on...
  • 5d26bf3 test(react): adding high contrast visual regression tests
  • See full diff in compare view

Updates n3 from 1.21.0 to 1.21.1

Release notes

Sourced from n3's releases.

v1.21.1

1.21.1 (2024-09-08)

Performance Improvements

Commits
  • 9eea4b6 perf: compute intersection over indices (#438)
  • f71ef64 chore(deps-dev): Bump deep-taxonomy-benchmark from 1.2.0 to 2.0.0 (#431)
  • 4746f0a chore(deps-dev): Bump the minor group with 2 updates (#430)
  • e7b7924 chore(docs): Writer.add -> Writer.addQuads (#429)
  • 8baa72e chore(deps-dev): Bump elliptic from 6.5.5 to 6.5.7 (#428)
  • 19692c4 chore(deps-dev): Bump the minor group across 1 directory with 2 updates (#425)
  • 3aaeabc chore(deps): update arrayify stream (#426)
  • 9f200b6 chore(docs): clean up formatting (#424)
  • See full diff in compare view

Updates postcss from 8.4.43 to 8.4.45

Release notes

Sourced from postcss's releases.

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.
Changelog

Sourced from postcss's changelog.

8.4.45

  • Removed unnecessary fix which could lead to infinite loop.

8.4.44

  • Another way to fix markClean is not a function error.
Commits

Updates vite from 5.4.2 to 5.4.3

Changelog

Sourced from vite's changelog.

5.4.3 (2024-09-03)

Commits

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the minor-and-patch-updates group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.46.1` | `1.47.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.5.25` | `2.5.26` |
| @ukic/fonts | `2.6.1` | `2.6.2` |
| [@ukic/web-components](https://github.com/mi6/ic-ui-kit/tree/HEAD/packages/react) | `2.26.0` | `2.27.1` |
| [n3](https://github.com/rdfjs/N3.js) | `1.21.0` | `1.21.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.43` | `8.4.45` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.2` | `5.4.3` |


Updates `@playwright/test` from 1.46.1 to 1.47.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.46.1...v1.47.0)

Updates `@sveltejs/kit` from 2.5.25 to 2.5.26
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@ukic/fonts` from 2.6.1 to 2.6.2

Updates `@ukic/web-components` from 2.26.0 to 2.27.1
- [Changelog](https://github.com/mi6/ic-ui-kit/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/mi6/ic-ui-kit/commits/@ukic/[email protected]/packages/react)

Updates `n3` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/rdfjs/N3.js/releases)
- [Commits](rdfjs/N3.js@v1.21.0...v1.21.1)

Updates `postcss` from 8.4.43 to 8.4.45
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.43...8.4.45)

Updates `vite` from 5.4.2 to 5.4.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.3/packages/vite)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@sveltejs/kit"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@ukic/fonts"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@ukic/web-components"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: n3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@GCHQDeveloper81 GCHQDeveloper81 merged commit 94f6a7e into main Sep 9, 2024
6 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-updates-f4751ef1a2 branch September 9, 2024 06:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant