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

chore(deps-dev): bump the development-dependencies group across 1 directory with 7 updates #489

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

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

Package From To
@biomejs/biome 1.8.3 1.9.3
@effect/vitest 0.9.2 0.10.5
@types/node 22.5.4 22.7.4
@vitest/coverage-v8 2.0.5 2.1.2
@vitest/ui 2.0.5 2.1.2
lefthook 1.7.15 1.7.18
vitest 2.0.5 2.1.2

Updates @biomejs/biome from 1.8.3 to 1.9.3

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.3

CLI

New features

  • GritQL queries that match functions or methods will now match async functions or methods as well.

    If this is not what you want, you can capture the async keyword (or its absence) in a metavariable and assert its emptiness:

    $async function foo() {} where $async <: .
    

    Contributed by @​arendjr

Bug fixes

  • Fix #4077: Grit queries no longer need to match the statement's trailing semicolon. Contributed by @​arendjr

  • Fix #4102. Now the CLI command lint doesn't exit with an error code when using --write/--fix. Contributed by @​ematipico

Configuration

Bug fixes

  • Fix #4125, where noLabelWithoutControl options where incorrectly marked as mandatory. Contributed by @​ematipico

Editors

  • Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix #3924 where GraphQL formatter panics in block comments with empty line. Contributed by @​vohoanglong0107

  • Fix a case where raw values inside url() functions weren't properly trimmed.

    .value {
    -  background: url(
    -   whitespace-around-string
    -  );
    + background: url(whitespace-around-string);
    }
    

    Contributed by @​ematipico

  • Fixed #4076, where a media query wasn't correctly formatted:

    .class {
    

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.3 (2024-10-01)

CLI

New features

  • GritQL queries that match functions or methods will now match async functions or methods as well.

    If this is not what you want, you can capture the async keyword (or its absence) in a metavariable and assert its emptiness:

    $async function foo() {} where $async <: .
    

    Contributed by @​arendjr

Bug fixes

  • Fix #4077: Grit queries no longer need to match the statement's trailing semicolon. Contributed by @​arendjr

  • Fix #4102. Now the CLI command lint doesn't exit with an error code when using --write/--fix. Contributed by @​ematipico

Configuration

Bug fixes

  • Fix #4125, where noLabelWithoutControl options where incorrectly marked as mandatory. Contributed by @​ematipico

Editors

  • Fix a case where CSS files weren't correctly linted using the default configuration. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix #3924 where GraphQL formatter panics in block comments with empty line. Contributed by @​vohoanglong0107

  • Fix a case where raw values inside url() functions weren't properly trimmed.

    .value {
    -  background: url(
    -   whitespace-around-string
    -  );
    + background: url(whitespace-around-string);
    }
    

    Contributed by @​ematipico

  • Fixed #4076, where a media query wasn't correctly formatted:

... (truncated)

Commits


Updates @effect/vitest from 0.9.2 to 0.10.5

Release notes

Sourced from @​effect/vitest's releases.

@​effect/vitest@​0.10.5

Patch Changes

  • #3689 4d91f41 Thanks @​tim-smart! - add layer api to @effect/vitest

    This allows you to share a Layer between multiple tests, optionally wrapping the tests in a describe block.

    import { expect, layer } from "@effect/vitest"
    import { Context, Effect, Layer } from "effect"
    

    class Foo extends Context.Tag("Foo")<Foo, "foo">() { static Live = Layer.succeed(Foo, "foo") }

    class Bar extends Context.Tag("Bar")<Bar, "bar">() { static Live = Layer.effect( Bar, Effect.map(Foo, () => "bar" as const) ) }

    layer(Foo.Live)("layer", (it) => { it.effect("adds context", () => Effect.gen(function* () { const foo = yield* Foo expect(foo).toEqual("foo") }) )

    it.layer(Bar.Live)("nested", (it) => { it.effect("adds context", () => Effect.gen(function* () { const foo = yield* Foo const bar = yield* Bar expect(foo).toEqual("foo") expect(bar).toEqual("bar") }) ) }) })

@​effect/vitest@​0.10.4

Patch Changes

  • Updated dependencies [4509656]:
    • effect@3.8.4
Changelog

Sourced from @​effect/vitest's changelog.

0.10.5

Patch Changes

  • #3689 4d91f41 Thanks @​tim-smart! - add layer api to @effect/vitest

    This allows you to share a Layer between multiple tests, optionally wrapping the tests in a describe block.

    import { expect, layer } from "@effect/vitest"
    import { Context, Effect, Layer } from "effect"
    

    class Foo extends Context.Tag("Foo")<Foo, "foo">() { static Live = Layer.succeed(Foo, "foo") }

    class Bar extends Context.Tag("Bar")<Bar, "bar">() { static Live = Layer.effect( Bar, Effect.map(Foo, () => "bar" as const) ) }

    layer(Foo.Live)("layer", (it) => { it.effect("adds context", () => Effect.gen(function* () { const foo = yield* Foo expect(foo).toEqual("foo") }) )

    it.layer(Bar.Live)("nested", (it) => { it.effect("adds context", () => Effect.gen(function* () { const foo = yield* Foo const bar = yield* Bar expect(foo).toEqual("foo") expect(bar).toEqual("bar") }) ) }) })

0.10.4

Patch Changes

... (truncated)

Commits


Updates @types/node from 22.5.4 to 22.7.4

Commits


Updates @vitest/coverage-v8 from 2.0.5 to 2.1.2

Release notes

Sourced from @​vitest/coverage-v8's releases.

v2.1.2

   🐞 Bug Fixes

    View changes on GitHub

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 0ce26a4 chore: release v2.1.2
  • 88bde99 fix(coverage): cleanOnRerun: false to invalidate previous results (#6592)
  • 1371ca6 fix(coverage): remove empty coverage folder on test failure too (#6547)
  • 699055e chore: release v2.1.1
  • 9f1fd18 chore: release v2.1.0
  • b2be23e chore: release v2.1.0-beta.7
  • 8ac7011 chore: release v2.1.0-beta.6
  • da52d23 fix(coverage): use project specific vitenode for uncovered files (#6044)
  • 5932a7f feat(coverage): add --exclude-after-remap (#6309)
  • 34199bd feat(browser): support v8 coverage (#6273)
  • Additional commits viewable in compare view


Updates @vitest/ui from 2.0.5 to 2.1.2

Release notes

Sourced from @​vitest/ui's releases.

v2.1.2

   🐞 Bug Fixes

    View changes on GitHub

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 0ce26a4 chore: release v2.1.2
  • e7f3521 fix: move Vitest.setServer to post configureServer hook to enable import ...
  • d0bf89d fix(ui): list tests on ui when --standalone (#6577)
  • 699055e chore: release v2.1.1
  • 9f1fd18 chore: release v2.1.0
  • 94a186e fix(ui): render project name consistently (#6329)
  • b2be23e chore: release v2.1.0-beta.7
  • 0223bb7 fix(ui): remove "filters" flickering (#6463)
  • 97773e2 chore: fix edge case in license files bundling (#6460)
  • b78fa88 chore(deps): update dependency @​faker-js/faker to v9 (#6461)
  • Additional commits viewable in compare view


Updates lefthook from 1.7.15 to 1.7.18

Release notes

Sourced from lefthook's releases.

v1.7.18

Changelog

  • 2eb8d43fcdfc47f647727becd7c130e13b80bfea deps: September 2024 (#829)
  • 9be9ab0e7499dde6b38e008d2078a3eb291f707a fix: force remote name origin when using remotes (#830)

v1.7.17

Changelog

  • 6383ff38f936d08a70769d0fab73c6ef3eca45eb feat: skip LFS hooks when pre-push hook is skipped (#818)

v1.7.16

Changelog

  • eb24c87bc72f72a2dd1b614a5685094bd1d63d20 chore: enhance some code parts (#824)
  • 3daab42c2fd0334e3134672d741c63068cc122dd fix: quote script path (#823)
Changelog

Sourced from lefthook's changelog.

1.7.18 (2024-09-30)

1.7.17 (2024-09-26)

1.7.16 (2024-09-23)

Commits
  • 3291e7d 1.7.18: set origin when cloning remotes and ignore defaultRemoteName setting
  • 9be9ab0 fix: force remote name origin when using remotes (#830)
  • 2eb8d43 deps: September 2024 (#829)
  • e4d5cd2 1.7.17: skip LFS hooks when hook is skipped by config
  • 6383ff3 feat: skip LFS hooks when pre-push hook is skipped (#818)
  • 6858ccb 1.7.16: allow spaces in project name when using scripts
  • eb24c87 chore: enhance some code parts (#824)
  • 3daab42 fix: quote script path (#823)
  • 76cf1a0 docs: fix typo for command names in configuration.md (#814)
  • See full diff in compare view


Updates vitest from 2.0.5 to 2.1.2

Release notes

Sourced from vitest's releases.

v2.1.2

   🐞 Bug Fixes

    View changes on GitHub

v2.1.1

   🐞 Bug Fixes

    View changes on GitHub

... (truncated)

Commits
  • 0ce26a4 chore: release v2.1.2
  • 383f179 fix(browser): throw an error if "@​vitest/browser/context" is imported outside...
  • 821400b fix(vitest): don't start a websocket server if api is disabled (#6617)
  • 8a8d3f0 fix(vitest): make env.SSR consistent between different pools (#6616)
  • ed8b7c0 fix(vitest): install dependencies with the same version when prompted (#6611)
  • d2a86ff fix(workspace): ignore DS_Store by default (#6571)
  • 88bde99 fix(coverage): cleanOnRerun: false to invalidate previous results (#6592)
  • 5f75790 refactor: replace strip-ansi with stripVTControlCharacters from `node:uti...
  • e7f3521 fix: move Vitest.setServer to post configureServer hook to enable import ...
  • 891d6fe docs: deprecate benchmark.outputFile option (#6591)
  • Additional commits viewable in compare view


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
dependabot[bot] commented 1 month ago

Superseded by #490.