Skip to content

Version Packages#631

Merged
mattiamanzati merged 1 commit intomainfrom
changeset-release/main
Feb 3, 2026
Merged

Version Packages#631
mattiamanzati merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented Jan 21, 2026

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.72.1

Patch Changes

  • #635 b16fd37 Thanks @mattiamanzati! - Fix effectGenToFn refactor to convert Effect<A, E, R> return types to Effect.fn.Return<A, E, R>

    Before this fix, the "Convert to fn" refactor would keep the original Effect.Effect<A, E, R> return type, producing code that doesn't compile. Now it correctly transforms the return type:

    // Before refactor
    const someFunction = (value: string): Effect.Effect<number, boolean> =>
      Effect.gen(function* () {
        /* ... */
      });
    
    // After refactor (fixed)
    const someFunction = Effect.fn("someFunction")(function* (
      value: string
    ): Effect.fn.Return<number, boolean, never> {
      /* ... */
    });
  • #630 689a012 Thanks @mattiamanzati! - Restructure test harness setup by moving shared test utilities and updating package dependencies

@github-actions github-actions Bot force-pushed the changeset-release/main branch from 13952c1 to 06d7a1b Compare February 3, 2026 11:01
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 06d7a1b to f7307d6 Compare February 3, 2026 14:08
@mattiamanzati mattiamanzati merged commit d7f03b0 into main Feb 3, 2026
@mattiamanzati mattiamanzati deleted the changeset-release/main branch February 3, 2026 14:08
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