Skip to content

build(deps): Bump github.com/antgroup/hugescm from 0.18.3 to 0.29.0#568

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/antgroup/hugescm-0.29.0
Closed

build(deps): Bump github.com/antgroup/hugescm from 0.18.3 to 0.29.0#568
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/antgroup/hugescm-0.29.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/antgroup/hugescm from 0.18.3 to 0.29.0.

Release notes

Sourced from github.com/antgroup/hugescm's releases.

v0.29.0

[0.29.0] - 2026-06-10

Fixed

  • ignore: Fix readIgnoreFile regression (introduced in 70fc094d "ansi: code tidy") that silently discarded all parsed patterns from .zetaignore and .gitignore — the } else if} if refactor caused return nil, nil when the file was successfully opened (!os.IsNotExist(nil) is true), making all ignore rules ineffective

Changed

  • ignore: Exclude .git directory by default in filesystem traversal (merkletrie/filesystem) and ReadPatterns recursion, consistent with .zeta directory handling

Full Changelog: antgroup/hugescm@v0.28.0...v0.29.0

v0.28.0

[0.28.0] - 2026-06-09

Fixed

  • term: Fix OSC 11 background color query leaking 11;rgb:ffff/ffff/ffff on terminals that do not support the protocol (e.g., web-based IDEs, basic xterm). Replace lipgloss/v2/compat package-level eager query with a lazy sync.Once detection that only fires when detectColorLevel() >= Level16M or VTE_VERSION is set
  • patchview: Inline hasDarkBackground() wrapper into DefaultStyle()

Changed

  • term: Add HasDarkBackground() (lazy, safe) and AdaptiveColor type to modules/term, removing all imports of charm.land/lipgloss/v2/compat
  • term: Export MakeRaw / Restore wrappers so callers no longer need a direct golang.org/x/term dependency

Full Changelog: antgroup/hugescm@v0.27.0...v0.28.0

v0.27.0

Fixed

  • config: Fix StringArray TOML decoding failure when value is a single string (e.g., extraHeader = "X-Custom: value") — replace dead UnmarshalTOML(any) (BurntSushi/toml interface) with UnmarshalText for pelletier/go-toml/v2 compatibility
  • deflect: Exclude tmp pack files from Auditor.Size() calculation; surface garbage stats in hot stat/az

Full Changelog: antgroup/hugescm@v0.26.0...v0.27.0

v0.26.0

Changed

  • patchview: Flatten DiffViewStyle + PatchViewStyle into a single Style struct; add Symbol field to LineStyle for independent +/- symbol styling
  • patchview: Separate symbol rendering from code content so symbols stay visible during horizontal scroll; remove diff percentage indicator
  • patchview: Fix syntax highlight background color lost for zero-value tokens

Fixed

  • hot replay: Add case-insensitive ref conflict detection for Windows/macOS — detectCaseConflicts() checks for refs that differ only in case and reports them before update-ref fails
  • hot replay: Improve RefUpdater.closeWithError to preserve both stderr and close error context instead of discarding one
  • hot replay: Remove pack.packSizeLimit=16g from git gc invocation
  • setup: Include hot.exe in Windows installer (zeta.iss)

... (truncated)

Changelog

Sourced from github.com/antgroup/hugescm's changelog.

[0.29.0] - 2026-06-10

Fixed

  • ignore: Fix readIgnoreFile regression (introduced in 70fc094d "ansi: code tidy") that silently discarded all parsed patterns from .zetaignore and .gitignore — the } else if} if refactor caused return nil, nil when the file was successfully opened (!os.IsNotExist(nil) is true), making all ignore rules ineffective

Changed

  • ignore: Exclude .git directory by default in filesystem traversal (merkletrie/filesystem) and ReadPatterns recursion, consistent with .zeta directory handling

[0.28.0] - 2026-06-09

Fixed

  • term: Fix OSC 11 background color query leaking 11;rgb:ffff/ffff/ffff on terminals that do not support the protocol (e.g., web-based IDEs, basic xterm). Replace lipgloss/v2/compat package-level eager query with a lazy sync.Once detection that only fires when detectColorLevel() >= Level16M or VTE_VERSION is set
  • patchview: Inline hasDarkBackground() wrapper into DefaultStyle()

Changed

  • term: Add HasDarkBackground() (lazy, safe) and AdaptiveColor type to modules/term, removing all imports of charm.land/lipgloss/v2/compat
  • term: Export MakeRaw / Restore wrappers so callers no longer need a direct golang.org/x/term dependency

[0.27.0] - 2026-06-08

Fixed

  • config: Fix StringArray TOML decoding failure when value is a single string (e.g., extraHeader = "X-Custom: value") — replace dead UnmarshalTOML(any) (BurntSushi/toml interface) with UnmarshalText for pelletier/go-toml/v2 compatibility
  • deflect: Exclude tmp pack files from Auditor.Size() calculation; surface garbage stats in hot stat/az

[0.26.0] - 2026-06-05

Changed

  • patchview: Flatten DiffViewStyle + PatchViewStyle into a single Style struct; add Symbol field to LineStyle for independent +/- symbol styling
  • patchview: Separate symbol rendering from code content so symbols stay visible during horizontal scroll; remove diff percentage indicator
  • patchview: Fix syntax highlight background color lost for zero-value tokens

Fixed

  • hot replay: Add case-insensitive ref conflict detection for Windows/macOS — detectCaseConflicts() checks for refs that differ only in case and reports them before update-ref fails
  • hot replay: Improve RefUpdater.closeWithError to preserve both stderr and close error context instead of discarding one
  • hot replay: Remove pack.packSizeLimit=16g from git gc invocation
  • setup: Include hot.exe in Windows installer (zeta.iss)

Documentation

  • CDC: Major revision (v2.0 → v3.0) — fix mask strategy naming, update default parameters, add tail-merge and call-chain sections, correct config file paths
  • config: Fix Size format description (unified 1024-based units), correct system config path
  • hot: Document hot diff and hot show commands
  • README: Add status-perf-large-file.md link; fix fragment config example

... (truncated)

Commits
  • 616f531 ignore: restore patterns lost by readIgnoreFile regression; exclude .git by d...
  • 88b74a3 Release v0.28.0
  • a42374d term: replace lipgloss/v2/compat with lazy OSC 11 background detection
  • 57e784f v0.27.0: fix StringArray TOML decoding for single string values
  • 826515e deflect: exclude tmp pack files from Auditor.Size() and surface garbage stats...
  • 052c193 patchview style refactor, hot replay Windows/macOS compatibility fixes
  • eff0c2c hot: fix Windows compatibility issues in replay
  • 2544b36 patchview: add Symbol style to LineStyle, flatten Style struct, and fix backg...
  • 7be6109 setup: fix zeta.iss missing hot.exe
  • f31e80a docs: sync documentation with code implementation
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/antgroup/hugescm](https://github.com/antgroup/hugescm) from 0.18.3 to 0.29.0.
- [Release notes](https://github.com/antgroup/hugescm/releases)
- [Changelog](https://github.com/antgroup/hugescm/blob/master/CHANGELOG.md)
- [Commits](antgroup/hugescm@v0.18.3...v0.29.0)

---
updated-dependencies:
- dependency-name: github.com/antgroup/hugescm
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jun 15, 2026
@gaius-qi gaius-qi closed this Jun 15, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/antgroup/hugescm-0.29.0 branch June 15, 2026 12:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant