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

chore(deps): bump the effect group with 3 updates #49

Merged
merged 1 commit into from
Mar 21, 2025

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the effect group with 3 updates: @effect/platform, @effect/platform-node and effect.

Updates @effect/platform from 0.79.3 to 0.80.1

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.80.1

Patch Changes

  • Updated dependencies [4a274fe]:
    • effect@3.14.1

@​effect/platform@​0.80.0

Minor Changes

Patch Changes

@​effect/platform@​0.79.4

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.80.1

Patch Changes

  • Updated dependencies [4a274fe]:
    • effect@3.14.1

0.80.0

Minor Changes

Patch Changes

0.79.4

Patch Changes

Commits

Updates @effect/platform-node from 0.75.3 to 0.76.1

Release notes

Sourced from @​effect/platform-node's releases.

@​effect/platform-node@​0.76.1

Patch Changes

  • Updated dependencies [4a274fe, 814733f]:
    • effect@3.14.1
    • @​effect/cluster@​0.29.1
    • @​effect/platform@​0.80.1
    • @​effect/platform-node-shared@​0.30.1
    • @​effect/rpc@​0.55.1
    • @​effect/sql@​0.33.1

@​effect/platform-node@​0.76.0

Minor Changes

Patch Changes

@​effect/platform-node@​0.75.4

Patch Changes

Changelog

Sourced from @​effect/platform-node's changelog.

0.76.1

Patch Changes

  • Updated dependencies [4a274fe, 814733f]:
    • effect@3.14.1
    • @​effect/cluster@​0.29.1
    • @​effect/platform@​0.80.1
    • @​effect/platform-node-shared@​0.30.1
    • @​effect/rpc@​0.55.1
    • @​effect/sql@​0.33.1

0.76.0

Minor Changes

Patch Changes

0.75.4

Patch Changes

Commits

Updates effect from 3.13.12 to 3.14.1

Release notes

Sourced from effect's releases.

effect@3.14.1

Patch Changes

effect@3.14.0

Minor Changes

  • #4469 1f47e4e Thanks @​vinassefranche! - Add DateTime.nowAsDate creator

  • #4469 26dd75f Thanks @​tim-smart! - expose the Layer.MemoMap via Layer.CurrentMemoMap to the layers being built

  • #4469 04dff2d Thanks @​tim-smart! - add Tracer Span.addLinks, for dynamically linking spans

  • #4469 c7fac0c Thanks @​LaureRC! - Add HashMap.every

  • #4469 ffaa3f3 Thanks @​vinassefranche! - Add Either.transposeOption

  • #4469 ab957c1 Thanks @​vinassefranche! - Make TestClock.setTime accept a DateTime.Input

  • #4469 35db9ce Thanks @​LaureRC! - Add Effect.transposeMapOption

  • #4469 cf77ea9 Thanks @​f15u! - Add Array.window function

  • #4469 26dd75f Thanks @​tim-smart! - add LayerMap module

    A LayerMap allows you to create a map of Layer's that can be used to dynamically access resources based on a key.

    Here is an example of how you can use a LayerMap to create a service that provides access to multiple OpenAI completions services.

    import { Completions } from "@effect/ai"
    import { OpenAiClient, OpenAiCompletions } from "@effect/ai-openai"
    import { FetchHttpClient } from "@effect/platform"
    import { NodeRuntime } from "@effect/platform-node"
    import { Config, Effect, Layer, LayerMap } from "effect"
    // create the openai client layer
    const OpenAiLayer = OpenAiClient.layerConfig({
    apiKey: Config.redacted("OPENAI_API_KEY")
    }).pipe(Layer.provide(FetchHttpClient.layer))
    // create a service that wraps a LayerMap
    class AiClients extends LayerMap.Service<AiClients>()("AiClients", {
    // this LayerMap will provide the ai Completions service
    provides: Completions.Completions,
    // define the lookup function for the layer map

... (truncated)

Changelog

Sourced from effect's changelog.

3.14.1

Patch Changes

3.14.0

Minor Changes

  • #4469 1f47e4e Thanks @​vinassefranche! - Add DateTime.nowAsDate creator

  • #4469 26dd75f Thanks @​tim-smart! - expose the Layer.MemoMap via Layer.CurrentMemoMap to the layers being built

  • #4469 04dff2d Thanks @​tim-smart! - add Tracer Span.addLinks, for dynamically linking spans

  • #4469 c7fac0c Thanks @​LaureRC! - Add HashMap.every

  • #4469 ffaa3f3 Thanks @​vinassefranche! - Add Either.transposeOption

  • #4469 ab957c1 Thanks @​vinassefranche! - Make TestClock.setTime accept a DateTime.Input

  • #4469 35db9ce Thanks @​LaureRC! - Add Effect.transposeMapOption

  • #4469 cf77ea9 Thanks @​f15u! - Add Array.window function

  • #4469 26dd75f Thanks @​tim-smart! - add LayerMap module

    A LayerMap allows you to create a map of Layer's that can be used to dynamically access resources based on a key.

    Here is an example of how you can use a LayerMap to create a service that provides access to multiple OpenAI completions services.

    import { Completions } from "@effect/ai"
    import { OpenAiClient, OpenAiCompletions } from "@effect/ai-openai"
    import { FetchHttpClient } from "@effect/platform"
    import { NodeRuntime } from "@effect/platform-node"
    import { Config, Effect, Layer, LayerMap } from "effect"
    // create the openai client layer
    const OpenAiLayer = OpenAiClient.layerConfig({
    apiKey: Config.redacted("OPENAI_API_KEY")
    }).pipe(Layer.provide(FetchHttpClient.layer))
    // create a service that wraps a LayerMap
    class AiClients extends LayerMap.Service<AiClients>()("AiClients", {
    // this LayerMap will provide the ai Completions service
    provides: Completions.Completions,

... (truncated)

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the effect group with 3 updates: [@effect/platform](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform), [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) and [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect).


Updates `@effect/platform` from 0.79.3 to 0.80.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/platform@0.80.1/packages/platform)

Updates `@effect/platform-node` from 0.75.3 to 0.76.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/platform-node/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/platform-node@0.76.1/packages/platform-node)

Updates `effect` from 3.13.12 to 3.14.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/effect@3.14.1/packages/effect)

---
updated-dependencies:
- dependency-name: "@effect/platform"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/platform-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: effect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the automerge label Mar 21, 2025
@mergify mergify bot merged commit 70df99c into master Mar 21, 2025
3 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/effect-f2f5a50fb0 branch March 21, 2025 00:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants