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

Bump the effect group with 11 updates #148

Merged
merged 1 commit into from
Jul 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 30, 2024

Bumps the effect group with 11 updates:

Package From To
@effect/cli 0.39.3 0.40.0
@effect/experimental 0.20.4 0.21.0
@effect/platform 0.60.3 0.61.0
@effect/platform-browser 0.39.3 0.40.0
@effect/platform-node 0.55.3 0.56.0
@effect/printer 0.33.52 0.34.0
@effect/printer-ansi 0.33.52 0.34.0
@effect/schema 0.69.3 0.70.0
@effect/typeclass 0.24.52 0.25.0
@effect/vitest 0.7.0 0.8.0
effect 3.5.9 3.6.0

Updates @effect/cli from 0.39.3 to 0.40.0

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.40.0

Patch Changes

Changelog

Sourced from @​effect/cli's changelog.

0.40.0

Patch Changes

Commits

Updates @effect/experimental from 0.20.4 to 0.21.0

Release notes

Sourced from @​effect/experimental's releases.

@​effect/experimental@​0.21.0

Patch Changes

Changelog

Sourced from @​effect/experimental's changelog.

0.21.0

Patch Changes

Commits

Updates @effect/platform from 0.60.3 to 0.61.0

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.61.0

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.61.0

Patch Changes

Commits

Updates @effect/platform-browser from 0.39.3 to 0.40.0

Release notes

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

@​effect/platform-browser@​0.40.0

Patch Changes

Changelog

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

0.40.0

Patch Changes

Commits

Updates @effect/platform-node from 0.55.3 to 0.56.0

Release notes

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

@​effect/platform-node@​0.56.0

Patch Changes

Changelog

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

0.56.0

Patch Changes

Commits

Updates @effect/printer from 0.33.52 to 0.34.0

Release notes

Sourced from @​effect/printer's releases.

@​effect/printer@​0.34.0

Patch Changes

@​effect/printer-ansi@​0.34.0

Patch Changes

Changelog

Sourced from @​effect/printer's changelog.

0.34.0

Patch Changes

Commits

Updates @effect/printer-ansi from 0.33.52 to 0.34.0

Release notes

Sourced from @​effect/printer-ansi's releases.

@​effect/printer-ansi@​0.34.0

Patch Changes

Changelog

Sourced from @​effect/printer-ansi's changelog.

0.34.0

Patch Changes

Commits

Updates @effect/schema from 0.69.3 to 0.70.0

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.70.0

Patch Changes

Changelog

Sourced from @​effect/schema's changelog.

0.70.0

Patch Changes

Commits

Updates @effect/typeclass from 0.24.52 to 0.25.0

Release notes

Sourced from @​effect/typeclass's releases.

@​effect/typeclass@​0.25.0

Patch Changes

Changelog

Sourced from @​effect/typeclass's changelog.

0.25.0

Patch Changes

Commits

Updates @effect/vitest from 0.7.0 to 0.8.0

Release notes

Sourced from @​effect/vitest's releases.

@​effect/vitest@​0.8.0

Patch Changes

Changelog

Sourced from @​effect/vitest's changelog.

0.8.0

Patch Changes

Commits

Updates effect from 3.5.9 to 3.6.0

Release notes

Sourced from effect's releases.

effect@3.6.0

Minor Changes

  • #3380 1e0fe80 Thanks @​tim-smart! - make List.Cons extend NonEmptyIterable

  • #3380 8135294 Thanks @​tim-smart! - add DateTime module

    The DateTime module provides functionality for working with time, including support for time zones and daylight saving time.

    It has two main data types: DateTime.Utc and DateTime.Zoned.

    A DateTime.Utc represents a time in Coordinated Universal Time (UTC), and a DateTime.Zoned contains both a UTC timestamp and a time zone.

    There is also a CurrentTimeZone service, for setting a time zone contextually.

    import { DateTime, Effect } from "effect";
    Effect.gen(function* () {
    // Get the current time in the current time zone
    const now = yield* DateTime.nowInCurrentZone;
    // Math functions are included
    const tomorrow = DateTime.add(now, 1, "day");
    // Convert to a different time zone
    // The UTC portion of the DateTime is preserved and only the time zone is
    // changed
    const sydneyTime = tomorrow.pipe(
    DateTime.unsafeSetZoneNamed("Australia/Sydney"),
    );
    }).pipe(DateTime.withCurrentZoneNamed("America/New_York"));

  • #3380 cd255a4 Thanks @​tim-smart! - add Stream.asyncPush api

    This api creates a stream from an external push-based resource.

    You can use the emit helper to emit values to the stream. You can also use the emit helper to signal the end of the stream by using apis such as emit.end or emit.fail.

    By default it uses an "unbounded" buffer size. You can customize the buffer size and strategy by passing an object as the second argument with the bufferSize and strategy fields.

    import { Effect, Stream } from "effect";

... (truncated)

Changelog

Sourced from effect's changelog.

3.6.0

Minor Changes

  • #3380 1e0fe80 Thanks @​tim-smart! - make List.Cons extend NonEmptyIterable

  • #3380 8135294 Thanks @​tim-smart! - add DateTime module

    The DateTime module provides functionality for working with time, including support for time zones and daylight saving time.

    It has two main data types: DateTime.Utc and DateTime.Zoned.

    A DateTime.Utc represents a time in Coordinated Universal Time (UTC), and a DateTime.Zoned contains both a UTC timestamp and a time zone.

    There is also a CurrentTimeZone service, for setting a time zone contextually.

    import { DateTime, Effect } from "effect";
    Effect.gen(function* () {
    // Get the current time in the current time zone
    const now = yield* DateTime.nowInCurrentZone;
    // Math functions are included
    const tomorrow = DateTime.add(now, 1, "day");
    // Convert to a different time zone
    // The UTC portion of the DateTime is preserved and only the time zone is
    // changed
    const sydneyTime = tomorrow.pipe(
    DateTime.unsafeSetZoneNamed("Australia/Sydney"),
    );
    }).pipe(DateTime.withCurrentZoneNamed("America/New_York"));

  • #3380 cd255a4 Thanks @​tim-smart! - add Stream.asyncPush api

    This api creates a stream from an external push-based resource.

    You can use the emit helper to emit values to the stream. You can also use the emit helper to signal the end of the stream by using apis such as emit.end or emit.fail.

    By default it uses an "unbounded" buffer size. You can customize the buffer size and strategy by passing an object as the second argument with the bufferSize and strategy fields.

... (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 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@effect/cli](https://github.com/Effect-TS/effect/tree/HEAD/packages/cli) | `0.39.3` | `0.40.0` |
| [@effect/experimental](https://github.com/Effect-TS/effect/tree/HEAD/packages/experimental) | `0.20.4` | `0.21.0` |
| [@effect/platform](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform) | `0.60.3` | `0.61.0` |
| [@effect/platform-browser](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-browser) | `0.39.3` | `0.40.0` |
| [@effect/platform-node](https://github.com/Effect-TS/effect/tree/HEAD/packages/platform-node) | `0.55.3` | `0.56.0` |
| [@effect/printer](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer) | `0.33.52` | `0.34.0` |
| [@effect/printer-ansi](https://github.com/Effect-TS/effect/tree/HEAD/packages/printer-ansi) | `0.33.52` | `0.34.0` |
| [@effect/schema](https://github.com/Effect-TS/effect/tree/HEAD/packages/schema) | `0.69.3` | `0.70.0` |
| [@effect/typeclass](https://github.com/Effect-TS/effect/tree/HEAD/packages/typeclass) | `0.24.52` | `0.25.0` |
| [@effect/vitest](https://github.com/Effect-TS/effect/tree/HEAD/packages/vitest) | `0.7.0` | `0.8.0` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `3.5.9` | `3.6.0` |


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

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

Updates `@effect/platform` from 0.60.3 to 0.61.0
- [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.61.0/packages/platform)

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

Updates `@effect/platform-node` from 0.55.3 to 0.56.0
- [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.56.0/packages/platform-node)

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

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

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

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

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

Updates `effect` from 3.5.9 to 3.6.0
- [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.6.0/packages/effect)

---
updated-dependencies:
- dependency-name: "@effect/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/experimental"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/platform"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/platform-browser"
  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/printer"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/printer-ansi"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/schema"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/typeclass"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: "@effect/vitest"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
- dependency-name: effect
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: effect
...

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 Jul 30, 2024
@leonitousconforti leonitousconforti merged commit d47c6d2 into main Jul 30, 2024
18 of 20 checks passed
@leonitousconforti leonitousconforti deleted the dependabot/npm_and_yarn/effect-3eee1fc6f9 branch July 30, 2024 20:25
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.

1 participant