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 #413

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

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

Package From To
@effect/cli 0.36.40 0.38.3
@effect/platform 0.55.5 0.59.3
@effect/platform-node 0.51.5 0.54.4
@effect/printer 0.33.24 0.33.50
@effect/printer-ansi 0.33.24 0.33.50
@effect/schema 0.67.18 0.68.27
effect 3.2.8 3.5.7

Updates @effect/cli from 0.36.40 to 0.38.3

Release notes

Sourced from @​effect/cli's releases.

@​effect/cli@​0.38.3

Patch Changes

@​effect/cli@​0.38.2

Patch Changes

@​effect/cli@​0.38.1

Patch Changes

Changelog

Sourced from @​effect/cli's changelog.

0.38.3

Patch Changes

0.38.2

Patch Changes

0.38.1

Patch Changes

0.38.0

Patch Changes

... (truncated)

Commits


Updates @effect/platform from 0.55.5 to 0.59.3

Release notes

Sourced from @​effect/platform's releases.

@​effect/platform@​0.59.3

Patch Changes

@​effect/platform@​0.59.2

Patch Changes

@​effect/platform@​0.59.1

Patch Changes

Changelog

Sourced from @​effect/platform's changelog.

0.59.3

Patch Changes

0.59.2

Patch Changes

0.59.1

Patch Changes

0.59.0

Minor Changes

Patch Changes

... (truncated)

Commits


Updates @effect/platform-node from 0.51.5 to 0.54.4

Release notes

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

@​effect/platform-node@​0.54.4

Patch Changes

@​effect/platform-node@​0.54.3

Patch Changes

@​effect/platform-node@​0.54.2

Patch Changes

Changelog

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

0.54.4

Patch Changes

0.54.3

Patch Changes

0.54.2

Patch Changes

0.54.1

Patch Changes

0.54.0

Minor Changes

Patch Changes

... (truncated)

Commits


Updates @effect/printer from 0.33.24 to 0.33.50

Release notes

Sourced from @​effect/printer's releases.

@​effect/printer-ansi@​0.33.50

Patch Changes

@​effect/printer@​0.33.50

Patch Changes

@​effect/printer-ansi@​0.33.49

Patch Changes

@​effect/printer@​0.33.49

Patch Changes

@​effect/printer@​0.33.48

Patch Changes

  • Updated dependencies [a9d7800]:
    • effect@3.5.5
    • @​effect/typeclass@​0.24.48

@​effect/printer-ansi@​0.33.48

Patch Changes

  • Updated dependencies [a9d7800]:
    • effect@3.5.5
    • @​effect/printer@​0.33.48
    • @​effect/typeclass@​0.24.48
Changelog

Sourced from @​effect/printer's changelog.

0.33.50

Patch Changes

0.33.49

Patch Changes

0.33.48

Patch Changes

  • Updated dependencies [a9d7800]:
    • effect@3.5.5
    • @​effect/typeclass@​0.24.48

0.33.47

Patch Changes

0.33.46

Patch Changes

0.33.45

Patch Changes

... (truncated)

Commits


Updates @effect/printer-ansi from 0.33.24 to 0.33.50

Release notes

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

@​effect/printer-ansi@​0.33.50

Patch Changes

@​effect/printer-ansi@​0.33.49

Patch Changes

@​effect/printer-ansi@​0.33.48

Patch Changes

  • Updated dependencies [a9d7800]:
    • effect@3.5.5
    • @​effect/printer@​0.33.48
    • @​effect/typeclass@​0.24.48
Changelog

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

0.33.50

Patch Changes

0.33.49

Patch Changes

0.33.48

Patch Changes

  • Updated dependencies [a9d7800]:
    • effect@3.5.5
    • @​effect/printer@​0.33.48
    • @​effect/typeclass@​0.24.48

0.33.47

Patch Changes

0.33.46

Patch Changes

0.33.45

Patch Changes

... (truncated)

Commits


Updates @effect/schema from 0.67.18 to 0.68.27

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.68.27

Patch Changes

  • #3310 99bddcf Thanks @​fubhy! - Added additional pure annotations to improve tree-shakeability

  • #3311 6921c4f Thanks @​gcanti! - Remove incorrect static override type annotations in class definitions.

    This will also improve tree-shakeability.

  • Updated dependencies [3afcc93, 99bddcf]:

    • effect@3.5.7

@​effect/schema@​0.68.26

Patch Changes

  • #3287 f0285d3 Thanks @​gcanti! - JSON Schema: change default behavior for property signatures containing undefined

    Changed the default behavior when encountering a required property signature whose type contains undefined. Instead of raising an exception, undefined is now pruned and the field is set as optional.

    Before

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

    const schema = Schema.Struct({ a: Schema.NullishOr(Schema.Number), });

    const jsonSchema = JSONSchema.make(schema); console.log(JSON.stringify(jsonSchema, null, 2)); /* throws Error: Missing annotation at path: ["a"] details: Generating a JSON Schema for this schema requires a "jsonSchema" annotation schema (UndefinedKeyword): undefined */

    Now

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

    const schema = Schema.Struct({ a: Schema.NullishOr(Schema.Number), });

    const jsonSchema = JSONSchema.make(schema); console.log(JSON.stringify(jsonSchema, null, 2));

... (truncated)

Changelog

Sourced from @​effect/schema's changelog.

0.68.27

Patch Changes

  • #3310 99bddcf Thanks @​fubhy! - Added additional pure annotations to improve tree-shakeability

  • #3311 6921c4f Thanks @​gcanti! - Remove incorrect static override type annotations in class definitions.

    This will also improve tree-shakeability.

  • Updated dependencies [3afcc93, 99bddcf]:

    • effect@3.5.7

0.68.26

Patch Changes

  • #3287 f0285d3 Thanks @​gcanti! - JSON Schema: change default behavior for property signatures containing undefined

    Changed the default behavior when encountering a required property signature whose type contains undefined. Instead of raising an exception, undefined is now pruned and the field is set as optional.

    Before

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

    const schema = Schema.Struct({ a: Schema.NullishOr(Schema.Number), });

    const jsonSchema = JSONSchema.make(schema); console.log(JSON.stringify(jsonSchema, null, 2)); /* throws Error: Missing annotation at path: ["a"] details: Generating a JSON Schema for this schema requires a "jsonSchema" annotation schema (UndefinedKeyword): undefined */

    Now

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

    const schema = Schema.Struct({ a: Schema.NullishOr(Schema.Number), });

... (truncated)

Commits
  • 0af945c Version Packages (#3301)
  • 4f72730 update JSON Schema guide (#3313)
  • 6921c4f Remove incorrect static override type annotations in class definitions (#3311)
  • 29a5389 move Arbitrary / Pretty / JSON Schema / Equivalences to top level sections (#...
  • 215800d add "Naming Conventions" doc section (#3298)
  • f34f6a7 Version Packages (#3285)
  • 8ec4955 remove type-level error message from optional signature, closes #3290 (#3291)
  • f0285d3 JSON Schema: change default behavior for property signatures containi… (#3287)
  • 3ac2d76 Fix: Correct Handling of JSON Schema Annotations in Refinements (#3284)
  • a91a8e5 Version Packages (#3275)
  • Additional commits viewable in
    dependabot[bot] commented 3 months ago

    Superseded by #415.