Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 4, 2025

Bumps the prod group with 17 updates in the / directory:

Package From To
prettier 3.4.2 3.5.3
@eslint/eslintrc 3.2.0 3.3.0
@eslint/js 9.17.0 9.21.0
eslint-config-next 15.1.3 15.2.1
eslint-config-prettier 9.1.0 10.0.2
@apidevtools/swagger-parser 10.1.0 10.1.1
@oclif/core 3.27.0 4.2.8
@oclif/plugin-help 6.2.18 6.2.26
import-from-esm 1.4.0-alpha.1 2.0.0
prettier-plugin-tailwindcss 0.6.9 0.6.11
phoenix 1.7.17 1.7.20
@babel/preset-env 7.26.0 7.26.9
@oclif/plugin-version 2.2.17 2.2.25
cypress 13.16.1 14.1.0
chalk 5.3.0 5.4.1
ora 8.1.1 8.2.0
resolve 1.22.8 1.22.10

Updates prettier from 3.4.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

Commits

Updates @eslint/eslintrc from 3.2.0 to 3.3.0

Release notes

Sourced from @​eslint/eslintrc's releases.

v3.3.0

3.3.0 (2025-02-21)

Features

Changelog

Sourced from @​eslint/eslintrc's changelog.

3.3.0 (2025-02-21)

Features

Commits

Updates @eslint/js from 9.17.0 to 9.21.0

Release notes

Sourced from @​eslint/js's releases.

v9.21.0

Features

  • 418717f feat: introduce new deprecated types for rules (#19238) (fnx)
  • 5c5b802 feat: Add --ext CLI option (#19405) (Milos Djermanovic)

Bug Fixes

  • db5340d fix: update missing plugin message template (#19445) (Milos Djermanovic)
  • d8ffdd4 fix: do not exit process on rule crash (#19436) (Francesco Trotta)

Documentation

  • c5561ea docs: Update README (GitHub Actions Bot)
  • 80b0485 docs: replace var with let and const in rule example (#19434) (Tanuj Kanti)
  • f67d5e8 docs: Update README (GitHub Actions Bot)
  • 75afc61 docs: Update README (GitHub Actions Bot)
  • 0636cab docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)
  • dd7d930 docs: Update README (GitHub Actions Bot)

Chores

  • a8c9a9f chore: update @eslint/eslintrc and @eslint/js (#19453) (Francesco Trotta)
  • 265e0cf chore: package.json update for @​eslint/js release (Jenkins)
  • 3401b85 test: add test for Rule.ReportDescriptor type (#19449) (Francesco Trotta)
  • e497aa7 chore: update rewrite dependencies (#19448) (Francesco Trotta)
  • dab5478 chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)
  • ebfe2eb chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)
  • 5fd211d test: processors can return subpaths (#19425) (Milos Djermanovic)

v9.20.1

Bug Fixes

Documentation

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)

v9.20.0

Features

  • e89a54a feat: change behavior of inactive flags (#19386) (Milos Djermanovic)

Bug Fixes

  • 91d4d9f fix: Bring types in sync with @​eslint/core (#19157) (Nicholas C. Zakas)
  • fa25c7a fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)
  • 31a9fd0 fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)
  • 61d99e3 fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)
  • db1b9a6 fix: Ensure module scope is checked for references in consistent-this (#19383) (Nicholas C. Zakas)
  • 8bcd820 fix: arrow-body-style crash with single-token body (#19379) (Milos Djermanovic)

Documentation

  • b7012c8 docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)

... (truncated)

Changelog

Sourced from @​eslint/js's changelog.

v9.21.0 - February 21, 2025

  • a8c9a9f chore: update @eslint/eslintrc and @eslint/js (#19453) (Francesco Trotta)
  • 265e0cf chore: package.json update for @​eslint/js release (Jenkins)
  • 418717f feat: introduce new deprecated types for rules (#19238) (fnx)
  • 3401b85 test: add test for Rule.ReportDescriptor type (#19449) (Francesco Trotta)
  • e497aa7 chore: update rewrite dependencies (#19448) (Francesco Trotta)
  • c5561ea docs: Update README (GitHub Actions Bot)
  • db5340d fix: update missing plugin message template (#19445) (Milos Djermanovic)
  • d8ffdd4 fix: do not exit process on rule crash (#19436) (Francesco Trotta)
  • dab5478 chore: better error message for missing plugin in config (#19402) (Tanuj Kanti)
  • 80b0485 docs: replace var with let and const in rule example (#19434) (Tanuj Kanti)
  • ebfe2eb chore: set js language for bug report issue config block (#19439) (Josh Goldberg ✨)
  • f67d5e8 docs: Update README (GitHub Actions Bot)
  • 75afc61 docs: Update README (GitHub Actions Bot)
  • 5fd211d test: processors can return subpaths (#19425) (Milos Djermanovic)
  • 0636cab docs: Update Eleventy from v2 to v3 (#19415) (Amaresh S M)
  • 5c5b802 feat: Add --ext CLI option (#19405) (Milos Djermanovic)
  • dd7d930 docs: Update README (GitHub Actions Bot)

v9.20.1 - February 11, 2025

  • fe3ccb2 docs: allow typing in search box while dropdown is open (#19424) (Amaresh S M)
  • 274f054 fix: fix RuleContext type (#19417) (Francesco Trotta)
  • 93c78a5 docs: Add instructions for pnpm compat (#19422) (Nicholas C. Zakas)
  • b476a93 docs: Fix Keyboard Navigation for Search Results (#19416) (Amaresh S M)
  • ccb60c0 docs: Update README (GitHub Actions Bot)

v9.20.0 - February 7, 2025

  • 979097a chore: upgrade @​eslint/js@​9.20.0 (#19412) (Francesco Trotta)
  • 031734e chore: package.json update for @​eslint/js release (Jenkins)
  • 91d4d9f fix: Bring types in sync with @​eslint/core (#19157) (Nicholas C. Zakas)
  • b7012c8 docs: rewrite examples with var using let and const (#19407) (Mueez Javaid Hashmi)
  • d4c47c3 test: avoid empty config warning in test output (#19408) (Milos Djermanovic)
  • e89a54a feat: change behavior of inactive flags (#19386) (Milos Djermanovic)
  • fa25c7a fix: Emit warning when empty config file is used (#19399) (Nicholas C. Zakas)
  • 6406376 docs: Update README (GitHub Actions Bot)
  • 350f2b9 docs: rewrite some examples with var using let and const (#19404) (Mueez Javaid Hashmi)
  • 93c325a docs: rewrite examples with var using let and const (#19398) (Mueez Javaid Hashmi)
  • 56ff404 docs: replace var with let or const in rules docs (#19396) (Daniel Harbrueger)
  • 4053226 docs: change sourceType in no-eval examples (#19393) (Milos Djermanovic)
  • 1324af0 docs: replace var with let and const in rules docs (#19392) (Daniel Harbrueger)
  • 8b87e00 docs: replace var with const and let in rules (#19389) (Tanuj Kanti)
  • 31a9fd0 fix: Clearer error message for wrong plugin format (#19380) (Nicholas C. Zakas)
  • 61d99e3 fix: Better error message for unserializable parser (#19384) (Nicholas C. Zakas)
  • 758c66b docs: Explain what frozen rules mean (#19382) (Nicholas C. Zakas)
  • 67dd82a chore: update dependency @​eslint/json to ^0.10.0 (#19387) (renovate[bot])
  • db1b9a6 fix: Ensure module scope is checked for references in consistent-this (#19383) (Nicholas C. Zakas)
  • 8bcd820 fix: arrow-body-style crash with single-token body (#19379) (Milos Djermanovic)

... (truncated)

Commits
  • 265e0cf chore: package.json update for @​eslint/js release
  • 031734e chore: package.json update for @​eslint/js release
  • 58560e7 chore: package.json update for @​eslint/js release
  • 362099c chore: package.json update for @​eslint/js release
  • 495aa49 chore: extract package name from package.json for public interface (#19314)
  • See full diff in compare view

Updates eslint-config-next from 15.1.3 to 15.2.1

Release notes

Sourced from eslint-config-next's releases.

v15.2.1

Core Changes

  • Unify Link and Form prefetching: #76184
  • Turbopack: Ensure server actions sourcemaps tests pass: #76157
  • [dev-overlay] control dark theme in one place: #76528
  • [dev-overlay] change css var for terminal: #76590
  • [dev-overlay] Discriminate stack frame settled typed: #76517
  • Remove obsolete sourcePackage references: #76550
  • refactor: remove unused variable in externals handling: #76599
  • fix: Add popular embedding libraries to serverExternalPackages: #76574
  • [Segment Cache] Implement hash-only navigations: #76179
  • Webpack: abstract away getting compilation spans: #76579
  • report compiler duration for webpack and improve numbers: #76665
  • [dev-overlay] fix dark theme missing close bracket: #76672
  • Remove revalidate property from incremental cache ctx for FETCH kind: #76500
  • [dev-overlay] fix: env name label style was out of sync with error type label: #76668
  • Turbopack: avoid celling source maps before minify: #76626
  • refactor(CI): Merge all four bundler test manifest scripts into one: #76652
  • [metadata] fix duplicate metadata for parallel routes: #76669
  • [Segment Cache] Omit from bundle if flag disabled: #76622
  • [Segment Cache] Support output: "export" mode: #75671
  • [Segment Cache] Refresh on same-page navigation: #76223
  • [metadata] re-enable streaming metadata with PPR: #76119
  • [Segment Cache] Search param fallback handling: #75990
  • [Segment Cache] Fix: canonicalURL omits origin: #76444
  • fix metadata basePath for manifest: #76681
  • Propagate expire time to cache-control header and prerender manifest: #76207
  • Show revalidate/expire columns in build output: #76343
  • Gate alternate bundler behind canary only: #76634
  • [dynamicIO] routes with dynamic segments should be able to be static in dev: #76691
  • [repo] upgrade ts 5.8.2: #76709
  • [metadata]: ensure metadata boundary is only rendered once on client nav: #76692
  • [metadata] clean up redudant options: #76712
  • Fix uniqueness detection for generateStaticParams: #76713
  • Upgrade React from 22e39ea7-20250225 to d55cc79b-20250228: #76680
  • [Turbopack] Compute module batches and use them for chunking: #76133
  • [Dev Tools] Improve keyboard interactions for menu & overlays: #76754
  • Keep server code out of browser chunks: #76660
  • Turbopack: inline minify into code generation and make it a plain function instead of a turbo tasks function: #76628
  • fix edge runtime asset fetch in pages api: #76750
  • Update use-cache-unknown-cache-kind.test.ts snapshot for alternate bundler: #76682

Example Changes

  • docs: fix reading params code blocks: #76705

Misc Changes

  • fix(rustdoc): Fix rustdoc warnings, block on rustdoc failures in CI: #76448

... (truncated)

Commits

Updates eslint-config-prettier from 9.1.0 to 10.0.2

Release notes

Sourced from eslint-config-prettier's releases.

v10.0.2

Patch Changes

v10.0.1

eslint-config-prettier

10.0.1

What's Changed

New Contributors

Full Changelog: prettier/eslint-config-prettier@v9.1.0...v10.0.1

v10.0.0

Major Changes

Changelog

Sourced from eslint-config-prettier's changelog.

10.0.2

Patch Changes

10.0.0

Major Changes

Versions before 10.0.0

Commits
Maintainer changes

This version was pushed to npm by jounqin, a new releaser for eslint-config-prettier since your current version.


Updates @apidevtools/swagger-parser from 10.1.0 to 10.1.1

Commits
  • a2a4c9e release v10.1.1
  • 3c907d7 fix: adds missing versions 3.0.4 and 3.1.1 to the supported versions (#264)
  • 3ebf612 Merge pull request #261 from APIDevTools/feat/fix-ci
  • d3b4d91 get rid of browser tests
  • 2923193 more windows issues
  • 7bc8cfc exclude browser tests
  • 593c6f3 fix path on windows?
  • e90af00 fix: get rid of karma and browser tests
  • fc3381b fix: remove unused deps
  • 6be4168 fix: fix website build, move to esbuild
  • Additional commits viewable in compare view

Updates @oclif/core from 3.27.0 to 4.2.8

Release notes

Sourced from @​oclif/core's releases.

4.2.8

Bug Fixes

  • deps: bump ansis from 3.14.0 to 3.16.0 (beabb00)

4.2.7

Bug Fixes

4.2.6

Bug Fixes

  • deps: bump ansis from 3.9.0 to 3.10.0 (0c3b168)

4.2.5

Bug Fixes

4.2.4

Bug Fixes

4.2.3

Bug Fixes

4.2.2

Bug Fixes

  • deps: bump ansis from 3.5.2 to 3.6.0 (15feb6e)

4.2.1

Bug Fixes

4.2.0

Features

4.1.1

Bug Fixes

... (truncated)

Changelog

Sourced from @​oclif/core's changelog.

4.2.8 (2025-02-22)

Bug Fixes

  • deps: bump ansis from 3.14.0 to 3.16.0 (beabb00)

4.2.7 (2025-02-17)

Bug Fixes

4.2.6 (2025-02-02)

Bug Fixes

  • deps: bump ansis from 3.9.0 to 3.10.0 (0c3b168)

4.2.5 (2025-01-28)

Bug Fixes

4.2.4 (2025-01-21)

Bug Fixes

4.2.3 (2025-01-14)

Bug Fixes

... (truncated)

Commits
  • 4661e6d chore(release): 4.2.8 [skip ci]
  • a01a0df Merge pull request #1323 from oclif/dependabot-npm_and_yarn-ansis-3.16.0
  • beabb00 fix(deps): bump ansis from 3.14.0 to 3.16.0
  • 6cd501c chore(release): 4.2.7 [skip ci]
  • 8943f05 chore(dev-deps): bump eslint from 9.19.0 to 9.20.1 (#1318)
  • 1de1085 fix(deps): bump ansis from 3.10.0 to 3.14.0 (#1319)
  • 53ae8ae chore(dev-deps): bump commitlint from 19.6.1 to 19.7.1 (#1316)
  • 71ccd4f Merge pull request #1317 from oclif/dependabot-npm_and_yarn-oclif-plugin-help...
  • e5cb4aa Merge pull request #1320 from oclif/dependabot-npm_and_yarn-oclif-plugin-plug...
  • 4547c46 chore(dev-deps): bump @​oclif/plugin-plugins from 5.4.30 to 5.4.31
  • Additional commits viewable in compare view

Updates @oclif/plugin-help from 6.2.18 to 6.2.26

Release notes

Sourced from @​oclif/plugin-help's releases.

6.2.26

Bug Fixes

  • deps: bump @​oclif/core from 4.2.6 to 4.2.8 (#909) (9479eb6)

6.2.25

Bug Fixes

  • deps: bump @​oclif/core from 4.2.5 to 4.2.6 (#895) (341b945)

6.2.24

Bug Fixes

  • deps: bump @​oclif/core from 4.2.4 to 4.2.5 (#889) (c03920e)

6.2.23

Bug Fixes

  • deps: bump @​oclif/core from 4.2.3 to 4.2.4 (#886) (64942a4)

6.2.22

Bug Fixes

  • deps: bump @​oclif/core from 4.2.2 to 4.2.3 (#880) (df449c6)

6.2.21

Bug Fixes

  • deps: bump @​oclif/core from 4.2.0 to 4.2.2 (#877) (30c372a)

6.2.20

Bug Fixes

  • deps: bump @​oclif/core from 4.0.37 to 4.2.0 (#866) (9e15958)

6.2.19

Bug Fixes

  • deps: bump @​oclif/core from 4.0.33 to 4.0.34 (#855) (a648d86)
Changelog

Sourced from @​oclif/plugin-help's changelog.

6.2.26 (2025-02-23)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.6 to 4.2.8 (#909) (9479eb6)

6.2.25 (2025-02-09)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.5 to 4.2.6 (#895) (341b945)

6.2.24 (2025-02-02)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.4 to 4.2.5 (#889) (c03920e)

6.2.23 (2025-01-26)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.3 to 4.2.4 (#886) (64942a4)

6.2.22 (2025-01-19)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.2 to 4.2.3 (#880) (df449c6)

6.2.21 (2025-01-11)

Bug Fixes

  • deps: bump @​oclif/core from 4.2.0 to 4.2.2 (#877) (30c372a)

6.2.20 (2024-12-21)

Bug Fixes

  • deps: bump @​oclif/core from 4.0.37 to 4.2.0 (#866) (9e15958)

6.2.19 (2024-12-08)

Bug Fixes

  • deps: bump @​oclif/core from 4.0.33 to 4.0.34 (#855) (a648d86)
Commits
  • f21959b chore(release): 6.2.26 [skip ci]
  • 9479eb6 fix(deps): bump @​oclif/core from 4.2.6 to 4.2.8 (#909)
  • 6201a5f chore(dev-deps): bump oclif from 4.17.29 to 4.17.30 (#910)
  • f4edc36 chore(dev-deps): bump prettier from 3.4.2 to 3.5.1 (#899)
  • 0cbfc9c chore(dev-deps): bump oclif from 4.17.21 to 4.17.29 (#905)
  • 04baed6 chore(dev-deps): bump eslint-config-oclif from 6.0.5 to 6.0.11 (#904)
  • 9b7fbd8 chore(dev-deps): bump commitlint from 19.6.1 to 19.7.1 (#901)
  • afb1f55 chore(dev-deps): bump @​oclif/test from 4.1.8 to 4.1.9 (#902)
  • a85f1f9 chore(dev-deps): bump @​types/node from 18.19.74 to 18.19.75 (#893)
  • a849ac4 chore(dev-deps): bump eslint-config-oclif from 6.0.0 to 6.0.5 (#894)
  • Additional commits viewable in compare view

Updates import-from-esm from 1.4.0-alpha.1 to 2.0.0

Release notes

Sourced from import-from-esm's releases.

v2.0.0

2.0.0 (2024-12-31)

⚠ Breaking changes

  • drop support for Node 16

🚨 Tests

  • remove --no-warnings Node option (bd75fce)

⚙️ Continuous Integrations

  • action: add Node 22 to test matrix (

Bumps the prod group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [@eslint/eslintrc](https://github.com/eslint/eslintrc) | `3.2.0` | `3.3.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.17.0` | `9.21.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.1.3` | `15.2.1` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.0.2` |
| [@apidevtools/swagger-parser](https://github.com/APIDevTools/swagger-parser) | `10.1.0` | `10.1.1` |
| [@oclif/core](https://github.com/oclif/core) | `3.27.0` | `4.2.8` |
| [@oclif/plugin-help](https://github.com/oclif/plugin-help) | `6.2.18` | `6.2.26` |
| [import-from-esm](https://github.com/sheerlox/import-from-esm) | `1.4.0-alpha.1` | `2.0.0` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.6.9` | `0.6.11` |
| [phoenix](https://github.com/phoenixframework/phoenix) | `1.7.17` | `1.7.20` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.26.0` | `7.26.9` |
| [@oclif/plugin-version](https://github.com/oclif/plugin-version) | `2.2.17` | `2.2.25` |
| [cypress](https://github.com/cypress-io/cypress) | `13.16.1` | `14.1.0` |
| [chalk](https://github.com/chalk/chalk) | `5.3.0` | `5.4.1` |
| [ora](https://github.com/sindresorhus/ora) | `8.1.1` | `8.2.0` |
| [resolve](https://github.com/browserify/resolve) | `1.22.8` | `1.22.10` |



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

Updates `@eslint/eslintrc` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/eslint/eslintrc/releases)
- [Changelog](https://github.com/eslint/eslintrc/blob/main/CHANGELOG.md)
- [Commits](eslint/eslintrc@v3.2.0...v3.3.0)

Updates `@eslint/js` from 9.17.0 to 9.21.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.21.0/packages/js)

Updates `eslint-config-next` from 15.1.3 to 15.2.1
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.2.1/packages/eslint-config-next)

Updates `eslint-config-prettier` from 9.1.0 to 10.0.2
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.1.0...v10.0.2)

Updates `@apidevtools/swagger-parser` from 10.1.0 to 10.1.1
- [Release notes](https://github.com/APIDevTools/swagger-parser/releases)
- [Changelog](https://github.com/APIDevTools/swagger-parser/blob/main/CHANGELOG.md)
- [Commits](APIDevTools/swagger-parser@v10.1.0...v10.1.1)

Updates `@oclif/core` from 3.27.0 to 4.2.8
- [Release notes](https://github.com/oclif/core/releases)
- [Changelog](https://github.com/oclif/core/blob/main/CHANGELOG.md)
- [Commits](oclif/core@3.27.0...4.2.8)

Updates `@oclif/plugin-help` from 6.2.18 to 6.2.26
- [Release notes](https://github.com/oclif/plugin-help/releases)
- [Changelog](https://github.com/oclif/plugin-help/blob/main/CHANGELOG.md)
- [Commits](oclif/plugin-help@6.2.18...6.2.26)

Updates `import-from-esm` from 1.4.0-alpha.1 to 2.0.0
- [Release notes](https://github.com/sheerlox/import-from-esm/releases)
- [Changelog](https://github.com/sheerlox/import-from-esm/blob/main/CHANGELOG.md)
- [Commits](sheerlox/import-from-esm@v1.4.0-alpha.1...v2.0.0)

Updates `prettier-plugin-tailwindcss` from 0.6.9 to 0.6.11
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.6.9...v0.6.11)

Updates `phoenix` from 1.7.17 to 1.7.20
- [Release notes](https://github.com/phoenixframework/phoenix/releases)
- [Changelog](https://github.com/phoenixframework/phoenix/blob/v1.7.20/CHANGELOG.md)
- [Commits](phoenixframework/phoenix@v1.7.17...v1.7.20)

Updates `@babel/preset-env` from 7.26.0 to 7.26.9
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.26.9/packages/babel-preset-env)

Updates `@oclif/plugin-version` from 2.2.17 to 2.2.25
- [Release notes](https://github.com/oclif/plugin-version/releases)
- [Changelog](https://github.com/oclif/plugin-version/blob/main/CHANGELOG.md)
- [Commits](oclif/plugin-version@2.2.17...2.2.25)

Updates `cypress` from 13.16.1 to 14.1.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.16.1...v14.1.0)

Updates `chalk` from 5.3.0 to 5.4.1
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.3.0...v5.4.1)

Updates `ora` from 8.1.1 to 8.2.0
- [Release notes](https://github.com/sindresorhus/ora/releases)
- [Commits](sindresorhus/ora@v8.1.1...v8.2.0)

Updates `resolve` from 1.22.8 to 1.22.10
- [Commits](browserify/resolve@v1.22.8...v1.22.10)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: "@eslint/eslintrc"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: "@eslint/js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: eslint-config-next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: eslint-config-prettier
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: "@apidevtools/swagger-parser"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: "@oclif/core"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: "@oclif/plugin-help"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: import-from-esm
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: phoenix
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: "@babel/preset-env"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: "@oclif/plugin-version"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: cypress
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: chalk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: ora
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: resolve
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
...

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 Mar 4, 2025
@yordis yordis force-pushed the master branch 2 times, most recently from eff3e9e to a094de9 Compare October 23, 2025 04:57
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.

1 participant