Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

Bumps @effect/language-service from 0.62.5 to 0.63.2.

Release notes

Sourced from @​effect/language-service's releases.

v0.63.2

Patch Changes

  • #553 e64e3df Thanks @​mattiamanzati! - fix: ensure correct path resolution in CLI setup

    • Use process.cwd() explicitly in path.resolve() for consistent behavior
    • Resolve the selected tsconfig path to an absolute path before validation
    • Simplify error handling by using direct yield* for TsConfigNotFoundError

v0.63.1

Patch Changes

  • #551 9b3d807 Thanks @​mattiamanzati! - fix: resolve TypeScript from project's working directory

    The CLI now attempts to resolve TypeScript from the current working directory first before falling back to the package's bundled version. This ensures the CLI uses the same TypeScript version as the project being analyzed.

v0.63.0

Minor Changes

  • #548 ef8c2de Thanks @​mattiamanzati! - Add globalErrorInEffectFailure diagnostic

    This diagnostic warns when Effect.fail is called with the global Error type. Using the global Error type in Effect failures is not recommended as they can get merged together, making it harder to distinguish between different error types.

    Instead, the diagnostic recommends using:

    • Tagged errors with Data.TaggedError
    • Custom error classes with a discriminator property (like _tag)

    Example:

    // This will trigger a warning
    Effect.fail(new Error("global error"));
    // These are recommended alternatives
    Effect.fail(new CustomError()); // where CustomError extends Data.TaggedError
    Effect.fail(new MyError()); // where MyError has a _tag property

  • #545 c590b5a Thanks @​mattiamanzati! - Add effect-language-service setup CLI command

    This new command provides an interactive wizard to guide users through the complete installation and configuration of the Effect Language Service. The setup command:

    • Analyzes your repository structure (package.json, tsconfig files)
    • Guides you through adding the package to devDependencies
    • Configures the TypeScript plugin in your tsconfig.json
    • Allows customizing diagnostic severity levels
    • Optionally adds prepare script for automatic patching
    • Optionally configures VS Code settings for workspace TypeScript usage
    • Shows a review of all changes before applying them

... (truncated)

Changelog

Sourced from @​effect/language-service's changelog.

0.63.2

Patch Changes

  • #553 e64e3df Thanks @​mattiamanzati! - fix: ensure correct path resolution in CLI setup

    • Use process.cwd() explicitly in path.resolve() for consistent behavior
    • Resolve the selected tsconfig path to an absolute path before validation
    • Simplify error handling by using direct yield* for TsConfigNotFoundError

0.63.1

Patch Changes

  • #551 9b3d807 Thanks @​mattiamanzati! - fix: resolve TypeScript from project's working directory

    The CLI now attempts to resolve TypeScript from the current working directory first before falling back to the package's bundled version. This ensures the CLI uses the same TypeScript version as the project being analyzed.

0.63.0

Minor Changes

  • #548 ef8c2de Thanks @​mattiamanzati! - Add globalErrorInEffectFailure diagnostic

    This diagnostic warns when Effect.fail is called with the global Error type. Using the global Error type in Effect failures is not recommended as they can get merged together, making it harder to distinguish between different error types.

    Instead, the diagnostic recommends using:

    • Tagged errors with Data.TaggedError
    • Custom error classes with a discriminator property (like _tag)

    Example:

    // This will trigger a warning
    Effect.fail(new Error("global error"));
    // These are recommended alternatives
    Effect.fail(new CustomError()); // where CustomError extends Data.TaggedError
    Effect.fail(new MyError()); // where MyError has a _tag property

  • #545 c590b5a Thanks @​mattiamanzati! - Add effect-language-service setup CLI command

    This new command provides an interactive wizard to guide users through the complete installation and configuration of the Effect Language Service. The setup command:

    • Analyzes your repository structure (package.json, tsconfig files)
    • Guides you through adding the package to devDependencies
    • Configures the TypeScript plugin in your tsconfig.json
    • Allows customizing diagnostic severity levels

... (truncated)

Commits
  • 95e2098 Version Packages (#554)
  • e64e3df fix: ensure correct path resolution in CLI setup (#553)
  • 390fda9 Version Packages (#552)
  • 9b3d807 fix: resolve TypeScript from project working directory (#551)
  • 6914406 Version Packages (#546)
  • 4912ee4 feat: add support for @​effect/sql Model.Class in completions and diagnostics ...
  • 039f4b2 refactor: add getTypeAtLocation utility to TypeCheckerUtils (#549)
  • ef8c2de feat: add globalErrorInEffectFailure diagnostic (#548)
  • 9058a37 refactor: simplify unnecessaryFailYieldableError diagnostic implementation (#...
  • c590b5a Add effect-language-service setup CLI command (#545)
  • See full diff in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@effect/language-service](https://github.com/Effect-TS/language-service) from 0.62.5 to 0.63.2.
- [Release notes](https://github.com/Effect-TS/language-service/releases)
- [Changelog](https://github.com/Effect-TS/language-service/blob/main/CHANGELOG.md)
- [Commits](Effect-TS/language-service@v0.62.5...v0.63.2)

---
updated-dependencies:
- dependency-name: "@effect/language-service"
  dependency-version: 0.63.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 29, 2025
@github-actions github-actions bot merged commit 0f7782d into Current Dec 29, 2025
6 of 9 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/effect/language-service-0.63.2 branch December 29, 2025 11:11
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