Skip to content

chore(deps): Bump the bun-minor-patch group across 1 directory with 4 updates - #21

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-minor-patch-8bf8c28722
Closed

chore(deps): Bump the bun-minor-patch group across 1 directory with 4 updates#21
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/bun-minor-patch-8bf8c28722

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the bun-minor-patch group with 4 updates in the / directory: @insurup/sdk, @stricli/core, open and @biomejs/biome.

Updates @insurup/sdk from 0.1.35 to 0.1.42

Release notes

Sourced from @​insurup/sdk's releases.

v0.1.42

Changes

Contributors

@​kerem-acer

v0.1.41

Changes

Contributors

@​berkansr and @​github-actions[bot]

v0.1.40

Changes

Contributors

@​ahmetcantiryaki and @​github-actions[bot]

v0.1.39

Changes

  • fix(sdk): correct reviseProposal + setProposalBranch wire contracts @​kerem-acer (#76)

Contributors

@​github-actions[bot] and @​kerem-acer

v0.1.38

Changes

  • No changes

Contributors

@​github-actions[bot] and @​kerem-acer

v0.1.37

Changes

  • fix(sdk): align proposal detail contract + document routes with deployed API @​kerem-acer (#74)

... (truncated)

Commits
  • 9eec9af ci: derive publish version from release.tag_name, fail fast if empty (#80)
  • 5506f2f feat: align policy sdk with core endpoints (#79)
  • d585a93 chore: bump version to 0.1.40
  • 41f57b1 fix(contracts): align WebhookEvent values + add agentBranchIds (#77)
  • a79906e chore: bump version to 0.1.39
  • 115bfc8 fix(sdk): correct reviseProposal + setProposalBranch wire contracts (#76)
  • b5384be chore: bump version to 0.1.38
  • b85072c fix(contracts): add missing enabled flag to InsuranceProduct (#75)
  • a67d40b chore: bump version to 0.1.37
  • 7f714e3 fix(sdk): align proposal detail contract + document routes with deployed API ...
  • Additional commits viewable in compare view

Updates @stricli/core from 1.2.7 to 1.3.0

Release notes

Sourced from @​stricli/core's releases.

v1.3.0

1.3.0 (2026-07-16)

🚀 Features

  • core integrations for built-in flags and lifecycle hooks (c6095a4)

🩹 Fixes

  • consolidate ansi color logic for both streams (d19f9d0)

❤️ Thank You

  • Michael Molisani

v1.2.9

1.2.9 (2026-07-02)

🩹 Fixes

  • use correct ANSI code to reset bold mode for routes (18ed140)

❤️ Thank You

  • Michael Molisani

v1.2.8

1.2.8 (2026-06-18)

🩹 Fixes

  • handle argument escape sequence in route scanner (87461d5)

❤️ Thank You

  • Michael Molisani
Changelog

Sourced from @​stricli/core's changelog.

1.3.0 (2026-07-16)

🚀 Features

  • core integrations for built-in flags and lifecycle hooks (c6095a4)

🩹 Fixes

  • consolidate ansi color logic for both streams (d19f9d0)

❤️ Thank You

  • Michael Molisani

1.2.9 (2026-07-02)

🩹 Fixes

  • use correct ANSI code to reset bold mode for routes (18ed140)

❤️ Thank You

  • Michael Molisani

1.2.8 (2026-06-18)

🩹 Fixes

  • handle argument escape sequence in route scanner (87461d5)

❤️ Thank You

  • Michael Molisani
Commits
  • 692ce63 chore(release): 1.3.0
  • 7ecb7fe docs: default integrations, relation to app config
  • c6095a4 feat: core integrations for built-in flags and lifecycle hooks
  • 0b9348e Merge pull request #180 from bloomberg/docs/llms-txt
  • 86f71b7 docs: add llms.txt generation
  • d94d1d1 docs: link to stricli org on npmx in navbar/footer
  • d19f9d0 fix: consolidate ansi color logic for both streams
  • 00a674c ci(publish): explicitly set prerelease=false when making latest release
  • 34821bd Merge pull request #173 from bloomberg/release-5
  • 467e572 chore(release): 1.2.9
  • Additional commits viewable in compare view

Updates open from 11.0.0 to 11.0.1

Release notes

Sourced from open's releases.

v11.0.1

  • Fix WSL failure when the working directory is unreachable from Windows 6ac3fe4

sindresorhus/open@v11.0.0...v11.0.1

Commits

Updates @biomejs/biome from 2.4.16 to 2.5.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.8

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (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 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

… updates

Bumps the bun-minor-patch group with 4 updates in the / directory: [@insurup/sdk](https://github.com/InsurUp/ts-toolkit), [@stricli/core](https://github.com/bloomberg/stricli), [open](https://github.com/sindresorhus/open) and [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@insurup/sdk` from 0.1.35 to 0.1.42
- [Release notes](https://github.com/InsurUp/ts-toolkit/releases)
- [Changelog](https://github.com/InsurUp/ts-toolkit/blob/main/CHANGELOG.md)
- [Commits](InsurUp/ts-toolkit@v0.1.35...v0.1.42)

Updates `@stricli/core` from 1.2.7 to 1.3.0
- [Release notes](https://github.com/bloomberg/stricli/releases)
- [Changelog](https://github.com/bloomberg/stricli/blob/main/CHANGELOG.md)
- [Commits](bloomberg/stricli@v1.2.7...v1.3.0)

Updates `open` from 11.0.0 to 11.0.1
- [Release notes](https://github.com/sindresorhus/open/releases)
- [Commits](sindresorhus/open@v11.0.0...v11.0.1)

Updates `@biomejs/biome` from 2.4.16 to 2.5.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.8/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@insurup/sdk"
  dependency-version: 0.1.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun-minor-patch
- dependency-name: "@stricli/core"
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun-minor-patch
- dependency-name: open
  dependency-version: 11.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun-minor-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Dependency update label Aug 17, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/bun/bun-minor-patch-8bf8c28722 branch August 24, 2026 04:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency update

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants