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

Bump the js-dependencies group with 14 updates #31

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2023

Bumps the js-dependencies group with 14 updates:

Package From To
@astrojs/mdx 0.19.7 1.1.0
@astrojs/partytown 1.2.3 2.0.0
@astrojs/sitemap 2.0.2 3.0.0
@astrojs/tailwind 4.0.0 5.0.0
@astrolib/seo 0.4.0 0.6.0
@iconify-json/tabler 1.1.89 1.1.93
@tailwindcss/typography 0.5.9 0.5.10
@typescript-eslint/eslint-plugin 6.5.0 6.7.3
@typescript-eslint/parser 6.5.0 6.7.3
astro 2.10.15 3.2.0
eslint 8.48.0 8.50.0
eslint-plugin-astro 0.28.0 0.29.0
prettier-plugin-astro 0.11.1 0.12.0
sharp 0.32.5 0.32.6

Updates @astrojs/mdx from 0.19.7 to 1.1.0

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​1.1.0

Minor Changes

  • #8468 a8d72ceae Thanks @​bholmesdev! - Support the img component export for optimized images. This allows you to customize how optimized images are styled and rendered.

    When rendering an optimized image, Astro will pass the ImageMetadata object to your img component as the src prop. For unoptimized images (i.e. images using URLs or absolute paths), Astro will continue to pass the src as a string.

    This example handles both cases and applies custom styling:

    ---
    // src/components/MyImage.astro
    import type { ImageMetadata } from 'astro';
    import { Image } from 'astro:assets';
    type Props = {
    src: string | ImageMetadata;
    alt: string;
    };
    const { src, alt } = Astro.props;
    {
    typeof src === 'string' ? (
    <img class="custom-styles" src={src} alt={alt} />
    ) : (
    <Image class="custom-styles" {src} {alt} />
    )
    }
    <style>
    .custom-styles {
    border: 1px solid red;
    }
    </style>

    Now, this components can be applied to the img component props object or file export:

    import MyImage from '../../components/MyImage.astro';
    export const components = { img: MyImage };
    My MDX article

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/mdx's changelog.

1.1.0

Minor Changes

  • #8468 a8d72ceae Thanks @​bholmesdev! - Support the img component export for optimized images. This allows you to customize how optimized images are styled and rendered.

    When rendering an optimized image, Astro will pass the ImageMetadata object to your img component as the src prop. For unoptimized images (i.e. images using URLs or absolute paths), Astro will continue to pass the src as a string.

    This example handles both cases and applies custom styling:

    ---
    // src/components/MyImage.astro
    import type { ImageMetadata } from 'astro';
    import { Image } from 'astro:assets';
    type Props = {
    src: string | ImageMetadata;
    alt: string;
    };
    const { src, alt } = Astro.props;
    {
    typeof src === 'string' ? (
    <img class="custom-styles" src={src} alt={alt} />
    ) : (
    <Image class="custom-styles" {src} {alt} />
    )
    }
    <style>
    .custom-styles {
    border: 1px solid red;
    }
    </style>

    Now, this components can be applied to the img component props object or file export:

    import MyImage from '../../components/MyImage.astro';
    export const components = { img: MyImage };
    My MDX article

Patch Changes

... (truncated)

Commits

Updates @astrojs/partytown from 1.2.3 to 2.0.0

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

Changelog

Sourced from @​astrojs/partytown's changelog.

2.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

2.0.0-rc.1

Major Changes

2.0.0-beta.0

Major Changes

  • 1eae2e3f7 Thanks @​Princesseuh! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
Commits

Updates @astrojs/sitemap from 2.0.2 to 3.0.0

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

3.0.0-rc.1

Major Changes

3.0.0-beta.0

Major Changes

  • 1eae2e3f7 Thanks @​Princesseuh! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
Commits

Updates @astrojs/tailwind from 4.0.0 to 5.0.0

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.0.0

Major Changes

  • #8188 d0679a666 Thanks @​ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

  • #8179 6011d52d3 Thanks @​matthewp! - Astro 3.0 Release Candidate

Patch Changes

5.0.0-rc.1

Major Changes

Patch Changes

5.0.0-beta.0

Major Changes

  • 1eae2e3f7 Thanks @​Princesseuh! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.

Patch Changes

Commits

Updates @astrolib/seo from 0.4.0 to 0.6.0

Commits

Updates @iconify-json/tabler from 1.1.89 to 1.1.93

Commits
  • 87cac30 Update CoreUI Brands, CoreUI Flags, CoreUI Free, Material Design Icons
  • e09c7e9 Update Material Design Icons
  • d2fd652 Update Material Design Icons
  • cb0fb56 Update Material Design Icons
  • See full diff in compare view

Updates @tailwindcss/typography from 0.5.9 to 0.5.10

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.10

Fixed

  • Fix space between <figcaption> and <pre> (#313)
  • Remove typography styles from not-prose elements in addition to their children (#301)
  • Add <picture> styles (#314)
  • Fix prose-invert when used with colors in light mode (#315)
  • Add <kbd> styles (#317)
  • Add description list (<dl>, <dt>, <dd>) styles (#316)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.10] - 2023-09-05

Fixed

  • Fix space between <figcaption> and <pre> (#313)
  • Remove typography styles from not-prose elements in addition to their children (#301)
  • Add <picture> styles (#314)
  • Fix prose-invert when used with colors in light mode (#315)
  • Add <kbd> styles (#317)
  • Add description list (<dl>, <dt>, <dd>) styles (#316)
Commits

Updates @typescript-eslint/eslint-plugin from 6.5.0 to 6.7.3

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v6.7.3

6.7.3 (2023-09-25)

Bug Fixes

You can read about our versioning strategy and releases on our website.

v6.7.2

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

You can read about our versioning strategy and releases on our website.

v6.7.1

6.7.1 (2023-09-18)

⚠️ Due to an npm registry server error, the packages at this version were partially published. Please use 6.7.2 instead.

You can read about our versioning strategy and releases on our website.

v6.7.0

6.7.0 (2023-09-11)

Bug Fixes

  • eslint-plugin: [no-restricted-imports] disallow side effect imports when allowTypeImports is enabled (#7560) (4908905)

Features

  • eslint-plugin: [await-thenable] added suggestion fixer (#7437) (b284370)

You can read about our versioning strategy and releases on our website.

v6.6.0

6.6.0 (2023-09-04)

Bug Fixes

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

6.7.3 (2023-09-25)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

6.7.1 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

You can read about our versioning strategy and releases on our website.

6.7.0 (2023-09-11)

Bug Fixes

  • eslint-plugin: [no-restricted-imports] disallow side effect imports when allowTypeImports is enabled (#7560) (4908905)

Features

  • eslint-plugin: [await-thenable] added suggestion fixer (#7437) (b284370)

You can read about our versioning strategy and releases on our website.

6.6.0 (2023-09-04)

... (truncated)

Commits
  • 91a3e0c chore: publish v6.7.3
  • dec6cbe docs(eslint-plugin): replaced the Out-of-date TS error codes in eslint-recomm...
  • ddb8589 chore: publish v6.7.2
  • aefb268 chore: publish v6.7.1
  • 9cf757a chore(eslint-plugin): refactor getTypeFromNode to parserServices.getTypeAtLoc...
  • e0cb751 docs(eslint-plugin): add warning about superfluous rules with typescript (#7372)
  • ad46b12 chore(deps): update jest to v29.7.0 (#7651)
  • 7826910 docs(eslint-plugin): fix ignorePrimitives examples in prefer-nullish-coalesci...
  • 79ffff0 chore: publish v6.7.0
  • b284370 feat(eslint-plugin): [await-thenable] added suggestion fixer (#7437)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.5.0 to 6.7.3

Release notes

Sourced from @​typescript-eslint/parser's releases.

v6.7.3

6.7.3 (2023-09-25)

Bug Fixes

You can read about our versioning strategy and releases on our website.

v6.7.2

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

You can read about our versioning strategy and releases on our website.

v6.7.1

6.7.1 (2023-09-18)

⚠️ Due to an npm registry server error, the packages at this version were partially published. Please use 6.7.2 instead.

You can read about our versioning strategy and releases on our website.

v6.7.0

6.7.0 (2023-09-11)

Bug Fixes

  • eslint-plugin: [no-restricted-imports] disallow side effect imports when allowTypeImports is enabled (#7560) (4908905)

Features

  • eslint-plugin: [await-thenable] added suggestion fixer (#7437) (b284370)

You can read about our versioning strategy and releases on our website.

v6.6.0

6.6.0 (2023-09-04)

Bug Fixes

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

6.7.3 (2023-09-25)

Note: Version bump only for package @​typescript-eslint/parser

You can read about our

Bumps the js-dependencies group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `0.19.7` | `1.1.0` |
| [@astrojs/partytown](https://github.com/withastro/astro/tree/HEAD/packages/integrations/partytown) | `1.2.3` | `2.0.0` |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `2.0.2` | `3.0.0` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `4.0.0` | `5.0.0` |
| [@astrolib/seo](https://github.com/onwidget/astrolib/tree/HEAD/packages/seo) | `0.4.0` | `0.6.0` |
| [@iconify-json/tabler](https://github.com/iconify/icon-sets) | `1.1.89` | `1.1.93` |
| [@tailwindcss/typography](https://github.com/tailwindcss/typography) | `0.5.9` | `0.5.10` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.5.0` | `6.7.3` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.5.0` | `6.7.3` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `2.10.15` | `3.2.0` |
| [eslint](https://github.com/eslint/eslint) | `8.48.0` | `8.50.0` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `0.28.0` | `0.29.0` |
| [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.11.1` | `0.12.0` |
| [sharp](https://github.com/lovell/sharp) | `0.32.5` | `0.32.6` |


Updates `@astrojs/mdx` from 0.19.7 to 1.1.0
- [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/[email protected]/packages/integrations/mdx)

Updates `@astrojs/partytown` from 1.2.3 to 2.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/partytown/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/partytown)

Updates `@astrojs/sitemap` from 2.0.2 to 3.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/sitemap)

Updates `@astrojs/tailwind` from 4.0.0 to 5.0.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/tailwind/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/tailwind)

Updates `@astrolib/seo` from 0.4.0 to 0.6.0
- [Commits](https://github.com/onwidget/astrolib/commits/HEAD/packages/seo)

Updates `@iconify-json/tabler` from 1.1.89 to 1.1.93
- [Commits](iconify/icon-sets@1.1.89...1.1.93)

Updates `@tailwindcss/typography` from 0.5.9 to 0.5.10
- [Release notes](https://github.com/tailwindcss/typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.9...v0.5.10)

Updates `@typescript-eslint/eslint-plugin` from 6.5.0 to 6.7.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.7.3/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.5.0 to 6.7.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.7.3/packages/parser)

Updates `astro` from 2.10.15 to 3.2.0
- [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/[email protected]/packages/astro)

Updates `eslint` from 8.48.0 to 8.50.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.48.0...v8.50.0)

Updates `eslint-plugin-astro` from 0.28.0 to 0.29.0
- [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@v0.28.0...v0.29.0)

Updates `prettier-plugin-astro` from 0.11.1 to 0.12.0
- [Release notes](https://github.com/withastro/prettier-plugin-astro/releases)
- [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](withastro/prettier-plugin-astro@v0.11.1...v0.12.0)

Updates `sharp` from 0.32.5 to 0.32.6
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.32.5...v0.32.6)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrojs/partytown"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrojs/sitemap"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrolib/seo"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: "@iconify-json/tabler"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: astro
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: prettier-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: sharp
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 1, 2023
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 8, 2023

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

@dependabot dependabot bot closed this Oct 8, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/js-dependencies-b38d4e1a4a branch October 8, 2023 15:03
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.

0 participants