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 with 7 updates #420

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the production-dependencies group with 7 updates:

Package From To
@effect/cli 0.39.2 0.40.0
@effect/platform 0.60.2 0.61.0
@effect/platform-node 0.55.2 0.56.0
@effect/printer 0.33.51 0.34.0
@effect/printer-ansi 0.33.51 0.34.0
@effect/schema 0.69.2 0.70.0
effect 3.5.8 3.6.0

Updates @effect/cli from 0.39.2 to 0.40.0

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.40.0

Patch Changes

@​effect/cli@​0.39.3

Patch Changes

Changelog

Sourced from @​effect/cli's changelog.

0.40.0

Patch Changes

0.39.3

Patch Changes

Commits


Updates @effect/platform from 0.60.2 to 0.61.0

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.61.0

Patch Changes

@​effect/platform@​0.60.3

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.61.0

Patch Changes

0.60.3

Patch Changes

Commits


Updates @effect/platform-node from 0.55.2 to 0.56.0

Release notes

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

@​effect/platform-node@​0.56.0

Patch Changes

@​effect/platform-node@​0.55.3

Patch Changes

Changelog

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

0.56.0

Patch Changes

0.55.3

Patch Changes

Commits


Updates @effect/printer from 0.33.51 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

@​effect/printer-ansi@​0.33.52

Patch Changes

@​effect/printer@​0.33.52

Patch Changes

Changelog

Sourced from @​effect/printer's changelog.

0.34.0

Patch Changes

0.33.52

Patch Changes

Commits


Updates @effect/printer-ansi from 0.33.51 to 0.34.0

Release notes

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

@​effect/printer-ansi@​0.34.0

Patch Changes

@​effect/printer-ansi@​0.33.52

Patch Changes

Changelog

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

0.34.0

Patch Changes

0.33.52

Patch Changes

Commits


Updates @effect/schema from 0.69.2 to 0.70.0

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.70.0

Patch Changes

@​effect/schema@​0.69.3

Patch Changes

  • #3359 7c0da50 Thanks @​gcanti! - Add Context field to Schema interface, closes #3356

  • #3363 2fc0ff4 Thanks @​gcanti! - export isPropertySignature guard

  • #3357 f262665 Thanks @​gcanti! - Improve annotation retrieval from Class APIs, closes #3348.

    Previously, accessing annotations such as identifier and title required explicit casting of the ast field to AST.Transformation. This update refines the type definitions to reflect that ast is always an AST.Transformation, eliminating the need for casting and simplifying client code.

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

    class Person extends Schema.Class<Person>("Person")( { name: Schema.String, age: Schema.Number, }, { description: "my description" }, ) {}

    console.log(AST.getDescriptionAnnotation(Person.ast.to)); // { _id: 'Option', _tag: 'Some', value: 'my description' }

  • #3343 9bbe7a6 Thanks @​gcanti! - - add NonEmptyTrimmedString

    Example

    import { Schema } from "@effect/schema";
    

    console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)("")); // Option.none() console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)(" a ")); // Option.none() console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)("a")); // Option.some("a")

    • add OptionFromNonEmptyTrimmedString, closes #3335

      Example

... (truncated)

Changelog

Sourced from @​effect/schema's changelog.

0.70.0

Patch Changes

0.69.3

Patch Changes

  • #3359 7c0da50 Thanks @​gcanti! - Add Context field to Schema interface, closes #3356

  • #3363 2fc0ff4 Thanks @​gcanti! - export isPropertySignature guard

  • #3357 f262665 Thanks @​gcanti! - Improve annotation retrieval from Class APIs, closes #3348.

    Previously, accessing annotations such as identifier and title required explicit casting of the ast field to AST.Transformation. This update refines the type definitions to reflect that ast is always an AST.Transformation, eliminating the need for casting and simplifying client code.

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

    class Person extends Schema.Class<Person>("Person")( { name: Schema.String, age: Schema.Number, }, { description: "my description" }, ) {}

    console.log(AST.getDescriptionAnnotation(Person.ast.to)); // { _id: 'Option', _tag: 'Some', value: 'my description' }

  • #3343 9bbe7a6 Thanks @​gcanti! - - add NonEmptyTrimmedString

    Example

    import { Schema } from "@effect/schema";
    

    console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)("")); // Option.none() console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)(" a ")); // Option.none() console.log(Schema.decodeOption(Schema.NonEmptyTrimmedString)("a")); // Option.some("a")

    • add OptionFromNonEmptyTrimmedString, closes #3335

... (truncated)

Commits


Updates effect from 3.5.8 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions