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 across 1 directory with 4 updates #523

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 9, 2024

Bumps the effect group with 4 updates in the / directory: @effect/platform, @effect/platform-node, @effect/schema and effect.

Updates @effect/platform from 0.58.20 to 0.61.6

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.61.6

Patch Changes

@​effect/platform@​0.61.5

Patch Changes

@​effect/platform@​0.61.4

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.61.6

Patch Changes

0.61.5

Patch Changes

0.61.4

Patch Changes

0.61.3

Patch Changes

0.61.2

Patch Changes

0.61.1

Patch Changes

0.61.0

Patch Changes

  • #3380 7d02174 Thanks @​fubhy! - Changed various function signatures to return Array instead of ReadonlyArray

... (truncated)

Commits

Updates @effect/platform-node from 0.53.19 to 0.56.7

Release notes

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

@​effect/platform-node@​0.56.7

Patch Changes

@​effect/platform-node@​0.56.6

Patch Changes

@​effect/platform-node@​0.56.5

Patch Changes

  • #3409 056b710 Thanks @​sukovanej! - Add NodeHttpServer.layerTest.

    import { HttpClientRequest, HttpRouter, HttpServer } from "@effect/platform";
    import { NodeHttpServer } from "@effect/platform-node";
    import { expect, it } from "@effect/vitest";
    import { Effect } from "effect";
    it.scoped("test", () =>
    Effect.gen(function* () {
    yield* HttpServer.serveEffect(HttpRouter.empty);
    const response = yield* HttpClientRequest.get("/");
    expect(response.status, 404);
    }).pipe(Effect.provide(NodeHttpServer.layerTest)),
    );

  • Updated dependencies [056b710]:

    • @​effect/platform@​0.61.5
    • @​effect/platform-node-shared@​0.11.5

@​effect/platform-node@​0.56.4

Patch Changes

  • Updated dependencies [e7cb109]:
    • @​effect/platform@​0.61.4
    • @​effect/platform-node-shared@​0.11.4
Changelog

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

0.56.7

Patch Changes

0.56.6

Patch Changes

0.56.5

Patch Changes

  • #3409 056b710 Thanks @​sukovanej! - Add NodeHttpServer.layerTest.

    import { HttpClientRequest, HttpRouter, HttpServer } from "@effect/platform";
    import { NodeHttpServer } from "@effect/platform-node";
    import { expect, it } from "@effect/vitest";
    import { Effect } from "effect";
    it.scoped("test", () =>
    Effect.gen(function* () {
    yield* HttpServer.serveEffect(HttpRouter.empty);
    const response = yield* HttpClientRequest.get("/");
    expect(response.status, 404);
    }).pipe(Effect.provide(NodeHttpServer.layerTest)),
    );

  • Updated dependencies [056b710]:

    • @​effect/platform@​0.61.5
    • @​effect/platform-node-shared@​0.11.5

0.56.4

Patch Changes

  • Updated dependencies [e7cb109]:
    • @​effect/platform@​0.61.4
    • @​effect/platform-node-shared@​0.11.4

0.56.3

... (truncated)

Commits

Updates @effect/schema from 0.68.17 to 0.70.3

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.70.3

Patch Changes

  • #3430 99ad841 Thanks @​gcanti! - Fix return types for attachPropertySignature function.

    This commit addresses an inconsistency in the return types between the curried and non-curried versions of the attachPropertySignature function. Previously, the curried version returned a Schema, while the non-curried version returned a SchemaClass.

  • Updated dependencies [fd4b2f6]:

Changelog

Sourced from @​effect/schema's changelog.

0.70.3

Patch Changes

  • #3430 99ad841 Thanks @​gcanti! - Fix return types for attachPropertySignature function.

    This commit addresses an inconsistency in the return types between the curried and non-curried versions of the attachPropertySignature function. Previously, the curried version returned a Schema, while the non-curried version returned a SchemaClass.

  • Updated dependencies [fd4b2f6]:

0.70.2

Patch Changes

0.70.1

Patch Changes

  • #3347 3dce357 Thanks @​gcanti! - Enhanced Parsing with TemplateLiteralParser, closes #3307

    In this update we've introduced a sophisticated API for more refined string parsing: TemplateLiteralParser. This enhancement stems from recognizing limitations in the Schema.TemplateLiteral and Schema.pattern functionalities, which effectively validate string formats without extracting structured data.

    Overview of Existing Limitations

    The Schema.TemplateLiteral function, while useful as a simple validator, only verifies that an input conforms to a specific string pattern by converting template literal definitions into regular expressions. Similarly, Schema.pattern employs regular expressions directly for the same purpose. Post-validation, both methods require additional manual parsing to convert the validated string into a usable data format.

    Introducing TemplateLiteralParser

    To address these limitations and eliminate the need for manual post-validation parsing, the new TemplateLiteralParser API has been developed. It not only validates the input format but also automatically parses it into a more structured and type-safe output, specifically into a tuple format.

    This new approach enhances developer productivity by reducing boilerplate code and simplifying the process of working with complex string inputs.

    Example (string based schemas)

    import { Schema } from "@effect/schema";
    // const schema: Schema.Schema<readonly [number, "a", string], ${string}a${string}, never>
    const schema = Schema.TemplateLiteralParser(
    Schema.NumberFromString,
    "a",
    Schema.NonEmptyString,
    );
    console.log(Schema.decodeEither(schema)("100ab"));
    // { _id: 'Either', _tag: 'Right', right: [ 100, 'a', 'b' ] }

... (truncated)

Commits

Updates effect from 3.4.7 to 3.6.2

Release notes

Sourced from effect's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

Changelog

Sourced from effect's changelog.

3.6.2

Patch Changes

3.6.1

Patch Changes

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"));

... (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 4 updates in the / directory: [@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), [@effect/schema](https://github.com/Effect-TS/effect/tree/HEAD/packages/schema) and [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect).


Updates `@effect/platform` from 0.58.20 to 0.61.6
- [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/[email protected]/packages/platform)

Updates `@effect/platform-node` from 0.53.19 to 0.56.7
- [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/[email protected]/packages/platform-node)

Updates `@effect/schema` from 0.68.17 to 0.70.3
- [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/[email protected]/packages/schema)

Updates `effect` from 3.4.7 to 3.6.2
- [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/[email protected]/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/schema"
  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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 12, 2024

Superseded by #526.

@dependabot dependabot bot closed this Aug 12, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/effect-bfd4b034f8 branch August 12, 2024 03:30
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.

0 participants