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 8 updates #18

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 12, 2024

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

Package From To
@playwright/test 1.45.3 1.46.0
@sveltejs/adapter-static 3.0.2 3.0.3
@sveltejs/kit 2.5.20 2.5.21
@ukic/web-components 2.25.0 2.25.1
cytoscape 3.30.1 3.30.2
postcss 8.4.40 8.4.41
tailwindcss 3.4.7 3.4.9
vite 5.3.5 5.4.0

Updates @playwright/test from 1.45.3 to 1.46.0

Release notes

Sourced from @​playwright/test's releases.

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';
export default defineConfig({
// ...
use: {
clientCertificates: [{
origin: 'https://example.com',
certPath: './cert.pem',
keyPath: './key.pem',
passphrase: 'mysecretpassword',
}],
},
// ...
});

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

# Only run test files with uncommitted changes
npx playwright test --only-changed
Only run test files changed relative to the "main" branch
npx playwright test --only-changed=main

Component Testing: New router fixture

This release introduces an experimental router fixture to intercept and handle network requests in component testing. There are two ways to use the router fixture:

  • Call router.route(url, handler) that behaves similarly to page.route().
  • Call router.use(handlers) and pass MSW library request handlers to it.

Here is an example of reusing your existing MSW handlers in the test.

</tr></table> 

... (truncated)

Commits
  • 99a3631 chore: mark v1.46 (#32013)
  • 929fef3 cherry-pick(#32012): chore(lint): bump Microsoft.CodeAnalysis for linting cod...
  • cf31aa8 cherry-pick(#32008): chore(client-certificates): rewrite error for unsupporte...
  • ed9b4d9 cherry-pick(#32007): fix(client-certificates): report error to the browser if...
  • fca1fa0 cherry-pick(#31973): chore: run client-certificate tests in service mode
  • ff11273 cherry-pick(#32010): docs: release notes for 1.46 update
  • 4953ac3 cherry-pick(#31975): chore: remove bright counter from sidebar tab se… (#31976)
  • 4c66f8a cherry-pick(#31970): fix(trace): do not place expect into unfinished … (#31974)
  • deba37b cherry-pick(#31960): feat(ui mode): linkify attachment names and content (#31...
  • 2cfe733 cherry-pick(#31961): fix(trace-viewer): make 'hide route actions' work for .NET
  • Additional commits viewable in compare view

Updates @sveltejs/adapter-static from 3.0.2 to 3.0.3

Release notes

Sourced from @​sveltejs/adapter-static's releases.

@​sveltejs/adapter-static@​3.0.3

Patch Changes

Changelog

Sourced from @​sveltejs/adapter-static's changelog.

3.0.3

Patch Changes

Commits

Updates @sveltejs/kit from 2.5.20 to 2.5.21

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.5.21

Patch Changes

  • chore: package provenance (#12567)
Changelog

Sourced from @​sveltejs/kit's changelog.

2.5.21

Patch Changes

  • chore: package provenance (#12567)
Commits

Updates @ukic/web-components from 2.25.0 to 2.25.1

Changelog

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

2.25.1 (2024-08-07)

Bug Fixes

  • react: update components so that slots can update after initial render (ecdbed1)
Commits
  • 35e54bc chore(release): [ci skip] components publish
  • 3b9b2f9 test(react): add fix for flaky Cypress test
  • ecdbed1 fix(react): update components so that slots can update after initial render
  • dcf8457 test(react): add cypress test for undefined attribute in classification banner
  • abb039d test(react): adding high contrast visual regression tests for IcButton and Ic...
  • 12459b8 test(react): adding high contrast visual regression tests
  • See full diff in compare view

Updates cytoscape from 3.30.1 to 3.30.2

Release notes

Sourced from cytoscape's releases.

v3.30.2

Release version v3.30.2

Commits
  • df4e024 3.30.2
  • f5a0252 Build 3.30.2
  • 365fea0 Docs: Add 3.30.2 to versions.json
  • 9baddca Cherry-pick to master: Merge pull request #3263 from cytoscape/fix/cxt-events...
  • ada251a Add nflows to the who-uses list #914
  • 7215288 Merge pull request #3260 from s-weigand/fix-demos
  • d942b4c revert 🧹 Add cytoscape.min.js in docs folder to .gitignore
  • 0887717 🧹 Add cytoscape.min.js in docs folder to .gitignore
  • abcecaa 🩹 Fix external link to cytoscape-cise
  • ec34a5f 🩹 Fix npm command 'docs:js' to not put file in build subfolder
  • Additional commits viewable in compare view

Updates postcss from 8.4.40 to 8.4.41

Release notes

Sourced from postcss's releases.

8.4.41

Changelog

Sourced from postcss's changelog.

8.4.41

Commits

Updates tailwindcss from 3.4.7 to 3.4.9

Release notes

Sourced from tailwindcss's releases.

v3.4.9

Fixed

  • No longer warns when broad glob patterns are detecting vendor folders

v3.4.8

Fixed

  • Fix minification when using nested CSS (#14105)
  • Warn when broad glob patterns are used in the content configuration (#14140)
Changelog

Sourced from tailwindcss's changelog.

[3.4.9] - 2024-08-08

Fixed

  • No longer warns when broad glob patterns are detecting vendor folders

[3.4.8] - 2024-08-07

Fixed

  • Fix minification when using nested CSS (#14105)
  • Warn when broad glob patterns are used in the content configuration (#14140)
Commits

Updates vite from 5.3.5 to 5.4.0

Release notes

Sourced from vite's releases.

[email protected]

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.0 (2024-08-07)

5.4.0-beta.1 (2024-08-01)

5.4.0-beta.0 (2024-07-30)

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 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.45.3` | `1.46.0` |
| [@sveltejs/adapter-static](https://github.com/sveltejs/kit/tree/HEAD/packages/adapter-static) | `3.0.2` | `3.0.3` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.5.20` | `2.5.21` |
| [@ukic/web-components](https://github.com/mi6/ic-ui-kit/tree/HEAD/packages/react) | `2.25.0` | `2.25.1` |
| [cytoscape](https://github.com/cytoscape/cytoscape.js) | `3.30.1` | `3.30.2` |
| [postcss](https://github.com/postcss/postcss) | `8.4.40` | `8.4.41` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.7` | `3.4.9` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.3.5` | `5.4.0` |


Updates `@playwright/test` from 1.45.3 to 1.46.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.45.3...v1.46.0)

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

Updates `@sveltejs/kit` from 2.5.20 to 2.5.21
- [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/web-components` from 2.25.0 to 2.25.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 `cytoscape` from 3.30.1 to 3.30.2
- [Release notes](https://github.com/cytoscape/cytoscape.js/releases)
- [Commits](cytoscape/cytoscape.js@v3.30.1...v3.30.2)

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

Updates `tailwindcss` from 3.4.7 to 3.4.9
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.9/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.7...v3.4.9)

Updates `vite` from 5.3.5 to 5.4.0
- [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/[email protected]/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/adapter-static"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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/web-components"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: cytoscape
  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: tailwindcss
  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-minor
  dependency-group: minor-and-patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@GCHQDeveloper81 GCHQDeveloper81 merged commit 847503e into main Aug 12, 2024
6 checks passed
@GCHQDeveloper81 GCHQDeveloper81 deleted the dependabot/npm_and_yarn/minor-and-patch-updates-5605d6b703 branch August 12, 2024 08:09
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