loculus-project / loculus

An open-source software package to power microbial genomic databases
https://loculus.org
GNU Affero General Public License v3.0
37 stars 2 forks source link

chore(deps): bump the patch group across 1 directory with 13 updates #2826

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the patch group with 13 updates in the /website directory:

Package From To
@astrojs/mdx 3.1.5 3.1.6
@headlessui/react 2.1.7 2.1.8
astro 4.15.4 4.15.7
rsuite 5.70.1 5.70.2
@astrojs/tailwind 5.1.0 5.1.1
@iconify/json 2.2.246 2.2.250
@playwright/test 1.47.0 1.47.1
@types/jsonwebtoken 9.0.6 9.0.7
@types/node 22.5.4 22.5.5
@types/react 18.3.5 18.3.7
eslint-plugin-astro 1.2.3 1.2.4
msw 2.4.5 2.4.8
tailwindcss 3.4.10 3.4.12

Updates @astrojs/mdx from 3.1.5 to 3.1.6

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.6

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.6

Patch Changes

Commits


Updates @headlessui/react from 2.1.7 to 2.1.8

Release notes

Sourced from @​headlessui/react's releases.

@​headlessui/react@​v2.1.8

Fixed

  • Fix crash when using as={Fragment} on MenuButton, ListboxButton, DisclosureButton or Button components (#3478)
Changelog

Sourced from @​headlessui/react's changelog.

[2.1.8] - 2024-09-12

Fixed

  • Fix crash when using as={Fragment} on MenuButton, ListboxButton, DisclosureButton or Button components (#3478)
Commits
  • 994303f 2.1.8 - @​headlessui/react
  • b670896 Fix crash when using as={Fragment} on MenuButton, ListboxButton, `Discl...
  • See full diff in compare view


Updates astro from 4.15.4 to 4.15.7

Release notes

Sourced from astro's releases.

astro@4.15.7

Patch Changes

astro@4.15.6

Patch Changes

  • #11993 ffba5d7 Thanks @​matthewp! - Fix getStaticPaths regression

    This reverts a previous change meant to remove a dependency, to fix a regression with multiple nested spread routes.

  • #11964 06eff60 Thanks @​TheOtterlord! - Add wayland (wl-copy) support to astro info

astro@4.15.5

Patch Changes

  • #11939 7b09c62 Thanks @​bholmesdev! - Adds support for Zod discriminated unions on Action form inputs. This allows forms with different inputs to be submitted to the same action, using a given input to decide which object should be used for validation.

    This example accepts either a create or update form submission, and uses the type field to determine which object to validate against.

    import { defineAction } from 'astro:actions';
    import { z } from 'astro:schema';
    

    export const server = { changeUser: defineAction({ accept: 'form', input: z.discriminatedUnion('type', [ z.object({ type: z.literal('create'), name: z.string(), email: z.string().email(), }), z.object({ type: z.literal('update'), id: z.number(), name: z.string(), email: z.string().email(), }), ]), async handler(input) { if (input.type === 'create') { // input is { type: 'create', name: string, email: string } } else { // input is { type: 'update', id: number, name: string, email: string } } },

... (truncated)

Changelog

Sourced from astro's changelog.

4.15.7

Patch Changes

4.15.6

Patch Changes

  • #11993 ffba5d7 Thanks @​matthewp! - Fix getStaticPaths regression

    This reverts a previous change meant to remove a dependency, to fix a regression with multiple nested spread routes.

  • #11964 06eff60 Thanks @​TheOtterlord! - Add wayland (wl-copy) support to astro info

4.15.5

Patch Changes

  • #11939 7b09c62 Thanks @​bholmesdev! - Adds support for Zod discriminated unions on Action form inputs. This allows forms with different inputs to be submitted to the same action, using a given input to decide which object should be used for validation.

    This example accepts either a create or update form submission, and uses the type field to determine which object to validate against.

    import { defineAction } from 'astro:actions';
    import { z } from 'astro:schema';
    

    export const server = { changeUser: defineAction({ accept: 'form', input: z.discriminatedUnion('type', [ z.object({ type: z.literal('create'), name: z.string(), email: z.string().email(), }), z.object({ type: z.literal('update'), id: z.number(), name: z.string(), email: z.string().email(), }), ]), async handler(input) { if (input.type === 'create') { // input is { type: 'create', name: string, email: string } } else {

... (truncated)

Commits


Updates rsuite from 5.70.1 to 5.70.2

Release notes

Sourced from rsuite's releases.

v5.70.2

What's Changed

Full Changelog: https://github.com/rsuite/rsuite/compare/v5.70.1...v5.70.2

Changelog

Sourced from rsuite's changelog.

5.70.2 (2024-09-13)

Bug Fixes

  • Form: fix the error message of the nested field not displayed when the form is submitted (#3960) (384dd70)
Commits
  • d9ffb65 build: bump 5.70.2
  • 60f8972 docs: removed deprecated icons from examples (#3964)
  • 384dd70 fix(Form): fix the error message of the nested field not displayed when the f...
  • dcff882 build(docs): bump rsuite 5.70.1
  • See full diff in compare view


Updates @astrojs/tailwind from 5.1.0 to 5.1.1

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.1.1

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.1.1

Patch Changes

Commits


Updates @iconify/json from 2.2.246 to 2.2.250

Commits


Updates @playwright/test from 1.47.0 to 1.47.1

Release notes

Sourced from @​playwright/test's releases.

v1.47.1

Highlights

microsoft/playwright#32480 - [REGRESSION]: tsconfig.json's compilerOptions.paths no longer working in 1.47 microsoft/playwright#32552 - [REGRESSION]: broken UI in Trace Viewer while showing network response body

Browser Versions

  • Chromium 129.0.6668.29
  • Mozilla Firefox 130.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 128
  • Microsoft Edge 128
Commits
  • 3d2ffd0 chore: mark v1.47.1 (#32617)
  • dba1319 cherry-pick(#32589): docs: release note fixes for 1.47
  • 90f959a cherry-pick(#32553): fix(trace-viewer): fix ui issue on network request details
  • 13e6e48 cherry-pick(#32491): fix(test runner): allow directory imports with path mapp...
  • 8762407 cherry-pick(#32492): Revert "fix(test runner): align with typescript … (#32560)
  • f9145b1 cherry-pick(#32516): chore: allow query as string in Python/.NET
  • 2c17b1f cherry-pick(#32482): docs: update release notes for 1.47 to our changes from ...
  • See full diff in compare view


Updates @types/jsonwebtoken from 9.0.6 to 9.0.7

Commits


Updates @types/node from 22.5.4 to 22.5.5

Commits


Updates @types/react from 18.3.5 to 18.3.7

Commits


Updates eslint-plugin-astro from 1.2.3 to 1.2.4

Release notes

Sourced from eslint-plugin-astro's releases.

v1.2.4

Patch Changes

Changelog

Sourced from eslint-plugin-astro's changelog.

1.2.4

Patch Changes

Commits
  • dc107d3 chore: release eslint-plugin-astro (#419)
  • fdb9b05 chore(deps): update dependency @​types/eslint to v9 (#409)
  • b03d0d5 feat: support typescript-eslint@8 (#418)
  • 4d771f7 chore(deps): update dependency monaco-editor to ^0.51.0 (#416)
  • a8a5782 chore(deps): update dependency expect-type to ^0.20.0 (#415)
  • 26ac1d8 chore(deps): update dependency eslint-plugin-jsdoc to v50 (#413)
  • 8b0fcc3 chore(deps): update dependency eslint-plugin-jsdoc to v49 (#412)
  • See full diff in compare view


Updates msw from 2.4.5 to 2.4.8

Release notes

Sourced from msw's releases.

v2.4.8 (2024-09-17)

Bug Fixes

  • address express and path-to-regexp vulnerabilities (#2285) (e3487bc4259368adc33739eb9490bde8421a215c) @​markmssd

v2.4.7 (2024-09-15)

Bug Fixes

  • ClientRequest: prevent duplicates when recording set headers (#2284) (e04eb8f44ffcf5ce755aa224d31a8576f4719a9f) @​kettanaito
  • use Object.defineProperty for Headers proxy (#2283) (94e17beea475a494c1de8b58ea399e518f55ddda) @​kettanaito

v2.4.6 (2024-09-13)

Bug Fixes

  • xhr: clone request body before calculating its size (#2282) (397444bcc386bbe560aa649460cb92cdb31d28a9) @​kettanaito
Commits
  • 5342c19 chore(release): v2.4.8
  • e3487bc fix: address express and path-to-regexp vulnerabilities (#2285)
  • 668d31e chore(release): v2.4.7
  • e04eb8f fix(ClientRequest): prevent duplicates when recording set headers (#2284)
  • 94e17be fix: use Object.defineProperty for Headers proxy (#2283)
  • 1f81e98 chore(release): v2.4.6
  • 397444b fix(xhr): clone request body before calculating its size (#2282)
  • See full diff in compare view


Updates tailwindcss from 3.4.10 to 3.4.12

Release notes

Sourced from tailwindcss's releases.

v3.4.12

Fixed

  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#14427)

v3.4.11

Fixed

  • Allow anchor-size(…) in arbitrary values (#14393)
Changelog

Sourced from tailwindcss's changelog.

[3.4.12] - 2024-09-17

Fixed

  • Ensure using @apply with utilities that use @defaults works with rules defined in the base layer when using optimizeUniversalDefaults (#14427)

[3.4.11] - 2024-09-11

Fixed

  • Allow anchor-size(…) in arbitrary values (#14393)
Commits


Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | @headlessui/react | [>= 2.1.6.a, < 2.1.7] | | msw | [>= 2.4.4.a, < 2.4.5] | | msw | [>= 2.4.3.a, < 2.4.4] | | @headlessui/react | [>= 2.1.5.a, < 2.1.6] | | msw | [>= 2.4.2.a, < 2.4.3] |

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
anna-parker commented 1 month ago

@dependabot rebase

dependabot[bot] commented 1 month ago

Looks like these dependencies are updatable in another way, so this is no longer needed.