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 12 updates #44

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the js-dependencies group with 12 updates:

Package From To
astro 3.4.4 3.6.4
unpic 3.13.0 3.14.1
@astrojs/mdx 1.1.3 1.1.5
@iconify-json/flat-color-icons 1.1.7 1.1.9
@iconify-json/tabler 1.1.96 1.1.100
@typescript-eslint/eslint-plugin 6.10.0 6.13.1
@typescript-eslint/parser 6.10.0 6.13.1
eslint 8.53.0 8.54.0
eslint-plugin-astro 0.29.1 0.30.0
prettier 3.0.3 3.1.0
prettier-plugin-astro 0.12.1 0.12.2
typescript 5.2.2 5.3.2

Updates astro from 3.4.4 to 3.6.4

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #9226 8f8a40e93 Thanks @​outofambit! - Fix i18n fallback routing with routing strategy of always-prefix

  • #9179 3f28336d9 Thanks @​lilnasy! - Fixes an issue where the presence of a slot in a page led to an error.

  • #9219 067a65f5b Thanks @​natemoo-re! - Fix edge case where <style> updates inside of .astro files would ocassionally fail to update without reloading the page.

  • #9236 27d3e86e4 Thanks @​ematipico! - The configuration i18n.routingStrategy has been replaced with an object called routing.

    export default defineConfig({
      experimental: {
          i18n: {
    -          routingStrategy: "prefix-always",
    +          routing: {
    +              prefixDefaultLocale: true,
    +          }
          }
      }
    })
    export default defineConfig({
      experimental: {
          i18n: {
    -          routingStrategy: "prefix-other-locales",
    +          routing: {
    +              prefixDefaultLocale: false,
    +          }
          }
      }
    })

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

... (truncated)

Changelog

Sourced from astro's changelog.

3.6.4

Patch Changes

  • #9226 8f8a40e93 Thanks @​outofambit! - Fix i18n fallback routing with routing strategy of always-prefix

  • #9179 3f28336d9 Thanks @​lilnasy! - Fixes an issue where the presence of a slot in a page led to an error.

  • #9219 067a65f5b Thanks @​natemoo-re! - Fix edge case where <style> updates inside of .astro files would ocassionally fail to update without reloading the page.

  • #9236 27d3e86e4 Thanks @​ematipico! - The configuration i18n.routingStrategy has been replaced with an object called routing.

    export default defineConfig({
      experimental: {
          i18n: {
    -          routingStrategy: "prefix-always",
    +          routing: {
    +              prefixDefaultLocale: true,
    +          }
          }
      }
    })
    export default defineConfig({
      experimental: {
          i18n: {
    -          routingStrategy: "prefix-other-locales",
    +          routing: {
    +              prefixDefaultLocale: false,
    +          }
          }
      }
    })

3.6.3

Patch Changes

3.6.2

Patch Changes

... (truncated)

Commits

Updates unpic from 3.13.0 to 3.14.1

Release notes

Sourced from unpic's releases.

v3.14.1

3.14.1 (2023-11-16)

Bug Fixes

  • cloudflare: use optional regex for transformation group #60 (2800f41)

v3.14.0

3.14.0 (2023-11-15)

Features

Bug Fixes

Changelog

Sourced from unpic's changelog.

3.14.1 (2023-11-16)

Bug Fixes

  • cloudflare: use optional regex for transformation group #60 (2800f41)

3.14.0 (2023-11-15)

Features

Bug Fixes

Commits

Updates @astrojs/mdx from 1.1.3 to 1.1.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​1.1.5

Patch Changes

  • Updated dependencies [4537ecf0d]:
    • @​astrojs/markdown-remark@​3.5.0

@​astrojs/mdx@​1.1.4

Patch Changes

  • Updated dependencies [c5010aad3]:
    • @​astrojs/markdown-remark@​3.4.0
Changelog

Sourced from @​astrojs/mdx's changelog.

1.1.5

Patch Changes

  • Updated dependencies [4537ecf0d]:
    • @​astrojs/markdown-remark@​3.5.0

1.1.4

Patch Changes

  • Updated dependencies [c5010aad3]:
    • @​astrojs/markdown-remark@​3.4.0
Commits

Updates @iconify-json/flat-color-icons from 1.1.7 to 1.1.9

Commits
  • 99c2980 Update SVG Logos, Material Design Icons
  • 091c70e Update SVG Logos, Material Design Icons, Simple Icons
  • See full diff in compare view

Updates @iconify-json/tabler from 1.1.96 to 1.1.100

Commits

Updates @typescript-eslint/eslint-plugin from 6.10.0 to 6.13.1

Release notes

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

v6.13.1

6.13.1 (2023-11-28)

Bug Fixes

  • default to parse all JSDoc and provide options to configure it (#7999) (779e13e)

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

v6.13.0

6.13.0 (2023-11-27)

Note for eslint plugin authors and other API consumers

TypeScript v5.3 shipped with a type change that was incompatible with our types. This change has been fixed and will be released in v5.3.3. Until that time you can work around this error using skipLibCheck.

Bug Fixes

  • typescript-estree: ensure backwards compat with pre-5.3 import attributes (#7967) (810fc8c)

Features

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

v6.12.0

6.12.0 (2023-11-20)

Bug Fixes

  • eslint-plugin: [class-methods-use-this] detect a problematic case for private/protected members if ignoreClassesThatImplementAnInterface is set (#7705) (155aa1f)
  • eslint-plugin: [no-unnecessary-condition] fix false positive with computed member access and branded key type (#7706) (f151b26)
  • eslint-plugin: [switch-exhaustiveness-check] enum members with new line or single quotes are not being fixed correctly (#7806) (a034d0a), closes #7768
  • utils: add missing fields to flat config types (#7933) (533861a)
  • utils: allow string processor in flat config (024ed9e)

Features

  • [member-ordering] add accessor support for member-ordering (#7927) (3c8312d)
  • eslint-plugin: [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#7880) (4cfcd45)
  • update TypeScript to 5.3-rc (#7923) (9034d17)

... (truncated)

Changelog

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

6.13.1 (2023-11-28)

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

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

6.13.0 (2023-11-27)

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

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

6.12.0 (2023-11-20)

Bug Fixes

  • eslint-plugin: [class-methods-use-this] detect a problematic case for private/protected members if ignoreClassesThatImplementAnInterface is set (#7705) (155aa1f)
  • eslint-plugin: [no-unnecessary-condition] fix false positive with computed member access and branded key type (#7706) (f151b26)
  • eslint-plugin: [switch-exhaustiveness-check] enum members with new line or single quotes are not being fixed correctly (#7806) (a034d0a), closes #7768

Features

  • [member-ordering] add accessor support for member-ordering (#7927) (3c8312d)
  • eslint-plugin: [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#7880) (4cfcd45)

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

6.11.0 (2023-11-13)

Bug Fixes

  • eslint-plugin: [explicit-function-return-type] support JSX attributes in allowTypedFunctionExpressions (#7553) (be2777c)
  • eslint-plugin: [no-unnecessary-qualifier] handle nested namespace id (#7883) (a668f5b)

... (truncated)

Commits
  • 14f3ff0 chore: publish v6.13.1
  • 39c437a chore: publish v6.13.0
  • 9093e95 chore: publish v6.12.0
  • 2e535b8 chore(deps): update dependency prettier to v3.1.0 (#7938)
  • 4cfcd45 feat(eslint-plugin): [switch-exhaustiveness-check] add requireDefaultForNonUn...
  • 155aa1f fix(eslint-plugin): [class-methods-use-this] detect a problematic case for pr...
  • f151b26 fix(eslint-plugin): [no-unnecessary-condition] fix false positive with comput...
  • a034d0a fix(eslint-plugin): [switch-exhaustiveness-check] enum members with new line ...
  • 3c8312d feat: [member-ordering] add accessor support for member-ordering (#7927)
  • 06496e2 chore: publish v6.11.0
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.10.0 to 6.13.1

Release notes

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

v6.13.1

6.13.1 (2023-11-28)

Bug Fixes

  • default to parse all JSDoc and provide options to configure it (#7999) (779e13e)

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

v6.13.0

6.13.0 (2023-11-27)

Note for eslint plugin authors and other API consumers

TypeScript v5.3 shipped with a type change that was incompatible with our types. This change has been fixed and will be released in v5.3.3. Until that time you can work around this error using skipLibCheck.

Bug Fixes

  • typescript-estree: ensure backwards compat with pre-5.3 import attributes (#7967) (810fc8c)

Features

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

v6.12.0

6.12.0 (2023-11-20)

Bug Fixes

  • eslint-plugin: [class-methods-use-this] detect a problematic case for private/protected members if ignoreClassesThatImplementAnInterface is set (#7705) (155aa1f)
  • eslint-plugin: [no-unnecessary-condition] fix false positive with computed member access and branded key type (#7706) (f151b26)
  • eslint-plugin: [switch-exhaustiveness-check] enum members with new line or single quotes are not being fixed correctly (#7806) (a034d0a), closes #7768
  • utils: add missing fields to flat config types (#7933) (533861a)
  • utils: allow string processor in flat config (024ed9e)

Features

  • [member-ordering] add accessor support for member-ordering (#7927) (3c8312d)
  • eslint-plugin: [switch-exhaustiveness-check] add requireDefaultForNonUnion option (#7880) (4cfcd45)
  • update TypeScript to 5.3-rc (#7923) (9034d17)

... (truncated)

Changelog

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

6.13.1 (2023-11-28)

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

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

6.13.0 (2023-11-27)

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

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

6.12.0 (2023-11-20)

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

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

6.11.0 (2023-11-13)

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

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

Commits

Updates eslint from 8.53.0 to 8.54.0

Release notes

Sourced from eslint's releases.

v8.54.0

Features

  • a7a883b feat: for-direction rule add check for condition in reverse order (#17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#17680) (Joel Mathew Koshy)
  • 21ebf8a feat: update no-array-constructor rule (#17711) (Francesco Trotta)

Bug Fixes

  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#17760) (Milos Djermanovic)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#17753) (Pavel)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#17705) (Milos Djermanovic)

Documentation

  • becfdd3 docs: Make clear when rules are removed (#17728) (Nicholas C. Zakas)
  • 05d6e99 docs: update "Submit a Pull Request" page (#17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#17749) (Percy Ma)
  • d245326 docs: Correct working in migrating plugin docs (#17722) (Filip Tammergård)

Chores

  • d644de9 chore: upgrade @​eslint/js@​8.54.0 (#17773) (Milos Djermanovic)
  • 1e6e314 chore: package.json update for @​eslint/js release (Jenkins)
  • 6fb8805 chore: Fixed grammar in issue_templates/rule_change (#17770) (Joel Mathew Koshy)
  • 85db724 chore: upgrade markdownlint to 0.31.1 (#17754) (Nitin Kumar)
  • 6d470d2 chore: update dependency recast to ^0.23.0 (#17736) (renovate[bot])
  • b7121b5 chore: update dependency markdownlint-cli to ^0.37.0 (#17735) (renovate[bot])
  • 633b9a1 chore: update dependency regenerator-runtime to ^0.14.0 (#17739) (renovate[bot])
  • acac16f chore: update dependency vite-plugin-commonjs to ^0.10.0 (#17740) (renovate[bot])
  • ba8ca7e chore: add .github/renovate.json5 (#17567) (Josh Goldberg ✨)
Changelog

Sourced from eslint's changelog.

v8.54.0 - November 17, 2023

  • d644de9 chore: upgrade @​eslint/js@​8.54.0 (#17773) (Milos Djermanovic)
  • 1e6e314 chore: package.json update for @​eslint/js release (Jenkins)
  • 98926e6 fix: Ensure that extra data is not accidentally stored in the cache file (#17760) (Milos Djermanovic)
  • a7a883b feat: for-direction rule add check for condition in reverse order (#17755) (Angelo Annunziata)
  • 1452dc9 feat: Add suggestions to no-console (#17680) (Joel Mathew Koshy)
  • 6fb8805 chore: Fixed grammar in issue_templates/rule_change (#17770) (Joel Mathew Koshy)
  • becfdd3 docs: Make clear when rules are removed (#17728) (Nicholas C. Zakas)
  • e8cf9f6 fix: Make dark scroll bar in dark theme (#17753) (Pavel)
  • 85db724 chore: upgrade markdownlint to 0.31.1 (#17754) (Nitin Kumar)
  • 21ebf8a feat: update no-array-constructor rule (#17711) (Francesco Trotta)
  • 05d6e99 docs: update "Submit a Pull Request" page (#17712) (Francesco Trotta)
  • eb2279e docs: display info about deprecated rules (#17749) (Percy Ma)
  • 6d470d2 chore: update dependency recast to ^0.23.0 (#17736) (renovate[bot])
  • b7121b5 chore: update dependency markdownlint-cli to ^0.37.0 (#17735) (renovate[bot])
  • 633b9a1 chore: update dependency regenerator-runtime to ^0.14.0 (#17739) (renovate[bot])
  • acac16f chore: update dependency vite-plugin-commonjs to ^0.10.0 (#17740) (renovate[bot])
  • ba8ca7e chore: add .github/renovate.json5 (#17567) (Josh Goldberg ✨)
  • 3cbeaad fix: Use cwd constructor option as config basePath in Linter (#17705) (Milos Djermanovic)
  • d245326 docs: Correct working in migrating plugin docs (#17722) (Filip Tammergård)
  • 5454c22 Revert "chore: remove metascraper (#17707)" (#17708) (Milos Djermanovic)
Commits

Updates eslint-plugin-astro from 0.29.1 to 0.30.0

Release notes

Sourced from eslint-plugin-astro's releases.

v0.30.0

Minor Changes

Changelog

Sourced from eslint-plugin-astro's changelog.

0.30.0

Minor Changes

Commits
  • 337f27e chore: release eslint-plugin-astro (#278)
  • 8e785db feat: use eslint-compat-utils (#277)
  • b1db9cd chore(deps): update dependency typescript to ~5.3.0 (#273)
  • d3523a5 chore(deps): update dependency stylus to ^0.62.0 (#271)
  • 8b353d1 chore(deps): update dependency @​types/estree to v1.0.5 (#272)
  • 52abcc4 chore(deps): update dependency @​changesets/changelog-github to ^0.5.0 (#276)
  • 9d37874 chore(deps): update dependency @​types/node to v20 (#269)
  • f69beba chore(deps): update dependency @​types/estree to v1.0.4 (#270)
  • 88a4c67 chore(deps): update actions/setup-node action to v4 (#268)
  • 6459f63 chore(deps): update dependency @​types/estree to v1.0.3 (#267)
  • Additional commits viewable in compare view

Updates prettier from 3.0.3 to 3.1.0

Release notes

Sourced from prettier's releases.

3.1.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.1.0

diff

🔗 Release Notes

Commits
  • e8ac9f8 Release 3.1.0
  • 6a1d409 chore(deps): update dependency eslint-plugin-regexp to v2 (#15521)
  • f4d93d3 chore(deps): update dependency esbuild to v0.19.5 (#15630)
  • 4fc71a5 chore(deps): update dependency flow-parser to v0.221.0 (#15637)
  • d452f45 chore(deps): update dependency eslint-plugin-jest to v27.6.0 (#15635)
  • eb84a60 chore(deps): update dependency @​types/estree to v1.0.5 (#15625)
  • 2af23ee chore(deps): update dependency webpack to v5.89.0 (#15640)
  • 8f27c73 chore(deps): update dependency eslint-plugin-unicorn to v49 (#15642)
  • cdc5f5a chore(deps): update dependency webpack to v5.89.0 (#15639)
  • 14607ef chore(deps): update dependency eslint-plugin-n to v16.3.1 (#15636)
  • Additional commits viewable in compare view

Updates prettier-plugin-astro from 0.12.1 to 0.12.2

Release notes

Sourced from prettier-plugin-astro's releases.

v0.12.2

Patch Changes

  • 11b0dc7: Fix attributes using optional chaining not formatting correctly
Changelog

Sourced from prettier-plugin-astro's changelog.

0.12.2

Patch Changes

  • 11b0dc7: Fix attributes using optional chaining not formatting correctly
Commits

Updates typescript from 5.2.2 to 5.3.2

Release notes

Sourced from typescript's releases.

TypeScript 5.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.3 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Bumps the js-dependencies group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `3.4.4` | `3.6.4` |
| [unpic](https://github.com/ascorbic/unpic) | `3.13.0` | `3.14.1` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `1.1.3` | `1.1.5` |
| [@iconify-json/flat-color-icons](https://github.com/iconify/icon-sets) | `1.1.7` | `1.1.9` |
| [@iconify-json/tabler](https://github.com/iconify/icon-sets) | `1.1.96` | `1.1.100` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.10.0` | `6.13.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.10.0` | `6.13.1` |
| [eslint](https://github.com/eslint/eslint) | `8.53.0` | `8.54.0` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `0.29.1` | `0.30.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.1.0` |
| [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.12.1` | `0.12.2` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.3.2` |


Updates `astro` from 3.4.4 to 3.6.4
- [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 `unpic` from 3.13.0 to 3.14.1
- [Release notes](https://github.com/ascorbic/unpic/releases)
- [Changelog](https://github.com/ascorbic/unpic/blob/main/CHANGELOG.md)
- [Commits](ascorbic/unpic@v3.13.0...v3.14.1)

Updates `@astrojs/mdx` from 1.1.3 to 1.1.5
- [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 `@iconify-json/flat-color-icons` from 1.1.7 to 1.1.9
- [Commits](iconify/icon-sets@1.1.7...1.1.9)

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

Updates `@typescript-eslint/eslint-plugin` from 6.10.0 to 6.13.1
- [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.13.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.10.0 to 6.13.1
- [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.13.1/packages/parser)

Updates `eslint` from 8.53.0 to 8.54.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.53.0...v8.54.0)

Updates `eslint-plugin-astro` from 0.29.1 to 0.30.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.29.1...v0.30.0)

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

Updates `prettier-plugin-astro` from 0.12.1 to 0.12.2
- [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.12.1...v0.12.2)

Updates `typescript` from 5.2.2 to 5.3.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.2.2...v5.3.2)

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: unpic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@iconify-json/flat-color-icons"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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: "@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: 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
  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-patch
  dependency-group: js-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Dec 1, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2024

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

@dependabot dependabot bot closed this Jan 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/js-dependencies-1dc13c05fa branch January 1, 2024 06:37
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