ccntrq / git-jira-branch

Manage branches for your Jira tickets
https://www.npmjs.com/package/git-jira-branch
MIT License
11 stars 2 forks source link

fix(deps): bump the production-dependencies group across 1 directory with 7 updates #382

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
@effect/cli 0.36.40 0.36.64
@effect/platform 0.55.5 0.58.11
@effect/platform-node 0.51.5 0.53.10
@effect/printer 0.33.24 0.33.35
@effect/printer-ansi 0.33.24 0.33.35
@effect/schema 0.67.18 0.68.10
effect 3.2.8 3.4.3

Updates @effect/cli from 0.36.40 to 0.36.64

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.36.64

Patch Changes

@​effect/cli@​0.36.63

Patch Changes

Changelog

Sourced from @​effect/cli's changelog.

0.36.64

Patch Changes

0.36.63

Patch Changes

0.36.62

Patch Changes

  • Updated dependencies [0b47fdf]:
    • @​effect/schema@​0.68.9
    • @​effect/platform@​0.58.9

0.36.61

Patch Changes

  • Updated dependencies [192261b, 3da1497]:
    • @​effect/schema@​0.68.8
    • effect@3.4.2
    • @​effect/platform@​0.58.8
    • @​effect/printer@​0.33.34
    • @​effect/printer-ansi@​0.33.34

0.36.60

Patch Changes

  • Updated dependencies [027004a]:
    • @​effect/platform@​0.58.7

0.36.59

... (truncated)

Commits


Updates @effect/platform from 0.55.5 to 0.58.11

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.58.11

Patch Changes

@​effect/platform@​0.58.10

Patch Changes

  • #3088 a48ee84 Thanks @​tim-smart! - add HttpServerRespondable trait

    This trait allows you to define how a value should be responded to in an HTTP server.

    You can it for both errors and success values.

    import { Schema } from "@effect/schema";
    import {
      HttpRouter,
      HttpServerRespondable,
      HttpServerResponse,
    } from "@effect/platform";
    

    class User extends Schema.Class<User>("User")({ name: Schema.String, }) { HttpServerRespondable.symbol { return HttpServerResponse.schemaJson(User)(this); } }

    class MyError extends Schema.TaggedError<MyError>()("MyError", { message: Schema.String, }) { HttpServerRespondable.symbol { return HttpServerResponse.schemaJson(MyError)(this, { status: 403 }); } }

    HttpRouter.empty.pipe( // responds with { &quot;name&quot;: &quot;test&quot; } HttpRouter.get("/user", Effect.succeed(new User({ name: "test" }))), // responds with a 403 status, and { &quot;_tag&quot;: &quot;MyError&quot;, &quot;message&quot;: &quot;boom&quot; } HttpRouter.get("/fail", new MyError({ message: "boom" })), );

... (truncated)

Changelog

Sourced from @​effect/platform's changelog.

0.58.11

Patch Changes

0.58.10

Patch Changes

  • #3088 a48ee84 Thanks @​tim-smart! - add HttpServerRespondable trait

    This trait allows you to define how a value should be responded to in an HTTP server.

    You can it for both errors and success values.

    import { Schema } from "@effect/schema";
    import {
      HttpRouter,
      HttpServerRespondable,
      HttpServerResponse,
    } from "@effect/platform";
    

    class User extends Schema.Class<User>("User")({ name: Schema.String, }) { HttpServerRespondable.symbol { return HttpServerResponse.schemaJson(User)(this); } }

    class MyError extends Schema.TaggedError<MyError>()("MyError", { message: Schema.String, }) { HttpServerRespondable.symbol { return HttpServerResponse.schemaJson(MyError)(this, { status: 403 }); } }

    HttpRouter.empty.pipe( // responds with { &quot;name&quot;: &quot;test&quot; } HttpRouter.get("/user", Effect.succeed(new User({ name: "test" }))), // responds with a 403 status, and { &quot;_tag&quot;: &quot;MyError&quot;, &quot;message&quot;: &quot;boom&quot; } HttpRouter.get("/fail", new MyError({ message: "boom" })),

... (truncated)

Commits


Updates @effect/platform-node from 0.51.5 to 0.53.10

Release notes

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

@​effect/platform-node@​0.53.10

Patch Changes

@​effect/platform-node@​0.53.9

Patch Changes

Changelog

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

0.53.10

Patch Changes

0.53.9

Patch Changes

0.53.8

Patch Changes

  • Updated dependencies []:
    • @​effect/platform@​0.58.9
    • @​effect/platform-node-shared@​0.8.8

0.53.7

Patch Changes

  • Updated dependencies [3da1497]:
    • effect@3.4.2
    • @​effect/platform@​0.58.8
    • @​effect/platform-node-shared@​0.8.7

0.53.6

Patch Changes

  • Updated dependencies [027004a]:
    • @​effect/platform@​0.58.7
    • @​effect/platform-node-shared@​0.8.6

0.53.5

Patch Changes

... (truncated)

Commits


Updates @effect/printer from 0.33.24 to 0.33.35

Release notes

Sourced from @​effect/printer's releases.

@​effect/printer@​0.33.35

Patch Changes

@​effect/printer-ansi@​0.33.35

Patch Changes

Changelog

Sourced from @​effect/printer's changelog.

0.33.35

Patch Changes

0.33.34

Patch Changes

  • Updated dependencies [3da1497]:
    • effect@3.4.2
    • @​effect/typeclass@​0.24.34

0.33.33

Patch Changes

  • Updated dependencies [66a1910]:
    • effect@3.4.1
    • @​effect/typeclass@​0.24.33

0.33.32

Patch Changes

0.33.31

Patch Changes

  • Updated dependencies [6c89408]:
    • effect@3.3.5
    • @​effect/typeclass@​0.24.31

0.33.30

Patch Changes

  • Updated dependencies [a67b8fe]:
    • effect@3.3.4
    • @​effect/typeclass@​0.24.30

... (truncated)

Commits


Updates @effect/printer-ansi from 0.33.24 to 0.33.35

Release notes

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

@​effect/printer-ansi@​0.33.35

Patch Changes

Changelog

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

0.33.35

Patch Changes

0.33.34

Patch Changes

  • Updated dependencies [3da1497]:
    • effect@3.4.2
    • @​effect/printer@​0.33.34
    • @​effect/typeclass@​0.24.34

0.33.33

Patch Changes

  • Updated dependencies [66a1910]:
    • effect@3.4.1
    • @​effect/printer@​0.33.33
    • @​effect/typeclass@​0.24.33

0.33.32

Patch Changes

0.33.31

Patch Changes

  • Updated dependencies [6c89408]:
    • effect@3.3.5
    • @​effect/printer@​0.33.31
    • @​effect/typeclass@​0.24.31

0.33.30

Patch Changes

... (truncated)

Commits


Updates @effect/schema from 0.67.18 to 0.68.10

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.68.10

Patch Changes

@​effect/schema@​0.68.9

Patch Changes

@​effect/schema@​0.68.8

Patch Changes

  • #3070 192261b Thanks @​gcanti! - Add refineTypeId unique symbol to the refine interface to ensure correct inference of Fields in the Class APIs, closes #3063

  • Updated dependencies [3da1497]:

    • effect@3.4.2

@​effect/schema@​0.68.7

Patch Changes

  • Updated dependencies [66a1910]:
    • effect@3.4.1
Changelog

Sourced from @​effect/schema's changelog.

0.68.10

Patch Changes

0.68.9

Patch Changes

0.68.8

Patch Changes

  • #3070 192261b Thanks @​gcanti! - Add refineTypeId unique symbol to the refine interface to ensure correct inference of Fields in the Class APIs, closes #3063

  • Updated dependencies [3da1497]:

    • effect@3.4.2

0.68.7

Patch Changes

  • Updated dependencies [66a1910]:
    • effect@3.4.1

0.68.6

Patch Changes

  • #3046 530fa9e Thanks @​gcanti! - Fix error message display for composite errors when overwrite = false

    This commit resolves an issue where the custom message for a struct (or tuple or union) was displayed regardless of whether the validation error was related to the entire struct or just a specific part of it. Previously, users would see the custom error message even when the error only concerned a particular field within the struct and the flag overwrite was not set to true.

    import { Schema, TreeFormatter } from "@effect/schema";
    import { Either } from "effect";
    

    const schema = Schema.Struct({ a: Schema.String, }).annotations({ message: () => "custom message" });

    const res = Schema.decodeUnknownEither(schema)({ a: null });

... (truncated)

Commits


Updates effect from 3.2.8 to 3.4.3

Release notes

Sourced from effect's releases.

effect@3.4.3

Patch Changes

effect@3.4.2

Patch Changes

effect@3.4.1

Patch Changes

Changelog

Sourced from effect's changelog.

3.4.3

Patch Changes

3.4.2

Patch Changes

3.4.1

Patch Changes

3.4.0

Minor Changes

  • #2938 c0ce180 Thanks @​LaureRC! - Make Option.liftPredicate dual

  • #2938 61707b6 Thanks @​LaureRC! - Add Effect.liftPredicate

    Effect.liftPredicate transforms a Predicate function into an Effect returning the input value if the predicate returns true or failing with specified error if the predicate fails.

    import { Effect } from "effect";
    

    const isPositive = (n: number): boolean => n > 0;

    // succeeds with 1
    Effect.liftPredicate(1, isPositive, (n) => ${n} is not positive);

    // fails with &quot;0 is not positive&quot;
    Effect.liftPredicate(0, isPositive, (n) => ${n} is not positive);

  • #2938 9c1... _Description has been truncated_

dependabot[bot] commented 4 months ago

Superseded by #384.