Skip to content

Version Packages#653

Merged
mattiamanzati merged 1 commit into
mainfrom
changeset-release/main
Feb 24, 2026
Merged

Version Packages#653
mattiamanzati merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Feb 23, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@effect/language-service@0.76.0

Minor Changes

  • #651 aeab349 Thanks @mattiamanzati! - Add refactor to convert Effect.Service to Context.Tag with a static Layer property.

    Supports all combinator kinds (effect, scoped, sync, succeed) and dependencies. The refactor replaces the Effect.Service class declaration with a Context.Tag class that has a static layer property using the corresponding Layer combinator.

    Before:

    export class MyService extends Effect.Service<MyService>()("MyService", {
      effect: Effect.gen(function* () {
        return { value: "hello" };
      }),
    }) {}

    After:

    export class MyService extends Context.Tag("MyService")<
      MyService,
      { value: string }
    >() {
      static layer = Layer.effect(
        this,
        Effect.gen(function* () {
          return { value: "hello" };
        })
      );
    }
  • #654 2c93eab Thanks @mattiamanzati! - Migrate internal Effect dependency from v3 to v4. This updates all CLI and core modules to use the Effect v4 API while maintaining full backward compatibility with existing functionality.

@github-actions github-actions Bot force-pushed the changeset-release/main branch from 8becb97 to a279da8 Compare February 24, 2026 13:32
@mattiamanzati mattiamanzati merged commit 0b7f6c6 into main Feb 24, 2026
@mattiamanzati mattiamanzati deleted the changeset-release/main branch February 24, 2026 13:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant