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 patch group in /website with 10 updates #2785

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the patch group in /website with 10 updates:

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.6
rsuite 5.70.1 5.70.2
@iconify/json 2.2.246 2.2.248
@playwright/test 1.47.0 1.47.1
@types/node 22.5.4 22.5.5
eslint-plugin-astro 1.2.3 1.2.4
msw 2.4.5 2.4.6
tailwindcss 3.4.10 3.4.11

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.6

Release notes

Sourced from astro's releases.

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 }
    }
    },
    }),
    };

    The corresponding create and update forms may look like this:

... (truncated)

Changelog

Sourced from astro's changelog.

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 {
    // input is { type: 'update', id: number, name: string, email: string }
    }
    },
    }),
    };

    The corresponding create and update forms may look like this:

... (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: rsuite/rsuite@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 @iconify/json from 2.2.246 to 2.2.248

Commits
  • faa21e0 Update 5 icon sets
  • ba57179 Update 3 icon sets: Catppuccin Icons, Gitlab SVGs, Tabler Icons
  • See full diff in compare view

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/node from 22.5.4 to 22.5.5

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.6

Release notes

Sourced from msw's releases.

v2.4.6 (2024-09-13)

Bug Fixes

  • xhr: clone request body before calculating its size (#2282) (397444bcc386bbe560aa649460cb92cdb31d28a9) @​kettanaito
Commits

Updates tailwindcss from 3.4.10 to 3.4.11

Release notes

Sourced from tailwindcss's releases.

v3.4.11

Fixed

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

Sourced from tailwindcss's changelog.

[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 <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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 14, 2024
@anna-parker
Copy link
Contributor

@dependabot rebase

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 16, 2024

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

dependabot bot and others added 2 commits September 16, 2024 12:27
Bumps the patch group in /website with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.5` | `3.1.6` |
| [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) | `2.1.7` | `2.1.8` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.15.4` | `4.15.6` |
| [rsuite](https://github.com/rsuite/rsuite) | `5.70.1` | `5.70.2` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.246` | `2.2.248` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.47.0` | `1.47.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.5.5` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `1.2.3` | `1.2.4` |
| [msw](https://github.com/mswjs/msw) | `2.4.5` | `2.4.6` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.10` | `3.4.11` |


Updates `@astrojs/mdx` from 3.1.5 to 3.1.6
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@3.1.6/packages/integrations/mdx)

Updates `@headlessui/react` from 2.1.7 to 2.1.8
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v2.1.8/packages/@headlessui-react)

Updates `astro` from 4.15.4 to 4.15.6
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.15.6/packages/astro)

Updates `rsuite` from 5.70.1 to 5.70.2
- [Release notes](https://github.com/rsuite/rsuite/releases)
- [Changelog](https://github.com/rsuite/rsuite/blob/main/CHANGELOG.md)
- [Commits](rsuite/rsuite@v5.70.1...v5.70.2)

Updates `@iconify/json` from 2.2.246 to 2.2.248
- [Commits](iconify/icon-sets@2.2.246...2.2.248)

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

Updates `@types/node` from 22.5.4 to 22.5.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-plugin-astro` from 1.2.3 to 1.2.4
- [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-astro@v1.2.3...v1.2.4)

Updates `msw` from 2.4.5 to 2.4.6
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.4.5...v2.4.6)

Updates `tailwindcss` from 3.4.10 to 3.4.11
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.11/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.10...v3.4.11)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@headlessui/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: rsuite
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@iconify/json"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@theosanderson theosanderson force-pushed the dependabot/npm_and_yarn/website/patch-f5dbfa0f1d branch from b3f0481 to 08364f0 Compare September 16, 2024 11:27
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 16, 2024

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

@dependabot dependabot bot closed this Sep 16, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/website/patch-f5dbfa0f1d branch September 16, 2024 19:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants