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

Version Packages #4399

Merged
merged 1 commit into from
Feb 6, 2025
Merged

Version Packages #4399

merged 1 commit into from
Feb 6, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Feb 4, 2025

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/opentelemetry@0.43.0

Minor Changes

  • #4371 57d1623 Thanks @jpowersdev! - Add LoggerProvider support from @opentelemetry/sdk-logs to @effect/opentelemetry.

Patch Changes

@effect/ai@0.8.4

Patch Changes

@effect/ai-openai@0.11.4

Patch Changes

@effect/cli@0.54.4

Patch Changes

@effect/cluster@0.24.4

Patch Changes

@effect/cluster-browser@0.18.4

Patch Changes

@effect/cluster-node@0.25.4

Patch Changes

@effect/cluster-workflow@0.23.4

Patch Changes

effect@3.12.10

Patch Changes

  • #4412 e30f132 Thanks @KhraksMamtsov! - Fix STM unification

  • #4403 33fa667 Thanks @gcanti! - Duration: fix format output when the input is zero.

    Before

    import { Duration } from "effect"
    
    console.log(Duration.format(Duration.zero))
    // Output: ""

    After

    import { Duration } from "effect"
    
    console.log(Duration.format(Duration.zero))
    // Output: "0"
  • #4411 87f5f28 Thanks @gcanti! - Enhance TagClass and ReferenceClass to enforce key type narrowing, closes From Discord: Difference in key typing between Effect.Service and Context.Tag in Effect Typescript library #4409.

    The key property in TagClass and ReferenceClass now correctly retains its specific string value, just like in Effect.Service

    import { Context, Effect } from "effect"
    
    // -------------------------------------------------------------------------------------
    // `key` field
    // -------------------------------------------------------------------------------------
    
    class A extends Effect.Service<A>()("A", { succeed: { a: "value" } }) {}
    
    // $ExpectType "A"
    A.key
    
    class B extends Context.Tag("B")<B, { a: "value" }>() {}
    
    // $ExpectType "B"
    B.key
    
    class C extends Context.Reference<C>()("C", { defaultValue: () => 0 }) {}
    
    // $ExpectType "C"
    C.key
  • #4397 4dbd170 Thanks @thewilkybarkid! - Make Array.makeBy dual

@effect/experimental@0.39.4

Patch Changes

@effect/platform@0.75.4

Patch Changes

@effect/platform-browser@0.54.4

Patch Changes

@effect/platform-bun@0.55.4

Patch Changes

@effect/platform-node@0.71.4

Patch Changes

@effect/platform-node-shared@0.25.4

Patch Changes

@effect/printer@0.40.10

Patch Changes

@effect/printer-ansi@0.40.10

Patch Changes

@effect/rpc@0.50.4

Patch Changes

@effect/rpc-http@0.48.4

Patch Changes

@effect/sql@0.28.4

Patch Changes

@effect/sql-clickhouse@0.13.4

Patch Changes

  • Updated dependencies [e30f132, 33fa667, 87f5f28, 7d57ecd, 4dbd170]:
    • effect@3.12.10
    • @effect/platform@0.75.4
    • @effect/experimental@0.39.4
    • @effect/platform-node@0.71.4
    • @effect/sql@0.28.4

@effect/sql-d1@0.26.4

Patch Changes

@effect/sql-drizzle@0.27.4

Patch Changes

@effect/sql-kysely@0.24.4

Patch Changes

@effect/sql-libsql@0.18.4

Patch Changes

@effect/sql-mssql@0.29.4

Patch Changes

  • #4410 58a6f9d Thanks @vecerek! - Use an unprepared SELECT 1 statement to test the DB connection during client initialization instead of a prepared statement.

  • Updated dependencies [e30f132, 33fa667, 87f5f28, 7d57ecd, 4dbd170]:

    • effect@3.12.10
    • @effect/platform@0.75.4
    • @effect/experimental@0.39.4
    • @effect/sql@0.28.4

@effect/sql-mysql2@0.29.4

Patch Changes

  • #4410 58a6f9d Thanks @vecerek! - Use an unprepared SELECT 1 statement to test the DB connection during client initialization instead of a prepared statement.

  • Updated dependencies [e30f132, 33fa667, 87f5f28, 7d57ecd, 4dbd170]:

    • effect@3.12.10
    • @effect/platform@0.75.4
    • @effect/experimental@0.39.4
    • @effect/sql@0.28.4

@effect/sql-pg@0.29.4

Patch Changes

@effect/sql-sqlite-bun@0.29.4

Patch Changes

@effect/sql-sqlite-do@0.6.4

Patch Changes

@effect/sql-sqlite-node@0.29.4

Patch Changes

@effect/sql-sqlite-react-native@0.31.4

Patch Changes

@effect/sql-sqlite-wasm@0.29.4

Patch Changes

@effect/typeclass@0.31.10

Patch Changes

@effect/vitest@0.17.6

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch 10 times, most recently from f88385d to dbd5e25 Compare February 6, 2025 16:00
@github-actions github-actions bot force-pushed the changeset-release/main branch from dbd5e25 to b978a7c Compare February 6, 2025 22:58
@tim-smart tim-smart merged commit b8ff1e6 into main Feb 6, 2025
@tim-smart tim-smart deleted the changeset-release/main branch February 6, 2025 23:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

From Discord: Difference in key typing between Effect.Service and Context.Tag in Effect Typescript library
1 participant