Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2025

Bumps the deps group with 12 updates:

Package From To
github.com/charmbracelet/glamour 0.6.0 0.10.0
github.com/efficientgo/core 1.0.0-rc.2 1.0.0-rc.3
github.com/felixge/fgprof 0.9.3 0.9.5
github.com/gocolly/colly/v2 2.1.1-0.20201013153555-8252c346cfb0 2.2.0
github.com/gohugoio/hugo 0.120.4 0.150.0
github.com/mattn/go-sqlite3 1.14.17 1.14.32
github.com/oklog/run 1.1.0 1.2.0
github.com/prometheus/client_golang 1.19.0 1.23.2
github.com/prometheus/common 0.48.0 0.66.1
github.com/sergi/go-diff 1.0.0 1.4.0
github.com/yuin/goldmark 1.6.0 1.7.13
golang.org/x/net 0.29.0 0.43.0

Updates github.com/charmbracelet/glamour from 0.6.0 to 0.10.0

Release notes

Sourced from github.com/charmbracelet/glamour's releases.

v0.10.0

Actually readable tables

Big tables that included links were always hard to read. Links can be very long, and tables often have limited space to render them. This means that links often took the space of many lines and weren't properly clickable because they were being truncated in practice.

Starting on this release, Glamour will render links and images at the footer of the table, with a reference number so you can easily find the link you're looking for. If you want the old behavior, it is still supported via the new WithInlineTableLinks option.

The New Way

table_with_footer_links_and_images

The Old Way

Wanna render tables with inline links? You still can:

r, err := glamour.NewTermRenderer(glamour.WithInlineTableLinks(true))
if err != nil { /*...*/ }
out, err := r.RenderBytes(in)
if err != nil { /.../ }
fmt.Fprintf(os.Stdout, "%s\n", out)

table_with_inline_links_and_images

Prettier GitHub links

We also introduced a change so that GitHub links inside tables that reference issues, discussions or PRs will be shown in its shortened form, similar to how GitHub itself present the links on issue descriptions: owner/repo#123.

table_with_footer_auto_links_short

Extra

Also, we introduced WithTableWrap, so you can disable table text wrapping if really want:

r, err := glamour.NewTermRenderer(glamour.WithTableWrap(false))
if err != nil { ... }
out, err := r.RenderBytes(in)
if err != nil { ... }
fmt.Fprintf(os.Stdout, "%s\n", out)

Changelog

New Features

... (truncated)

Commits
  • 05ee9b5 v0.10.0
  • c9af045 feat(tables): format github links inside tables in a more readable manner
  • f2eb484 feat: add autolink package with patterns for more readable github urls
  • 9d87373 feat(table): pad position on table link list
  • a11e9a0 feat(table): show position of link also inside the table
  • 42f47a2 feat(table): prefix all links with the position in the footer
  • 61cfc45 feat(table): add ability to render links at the bottom
  • 5437e4a fix: ensure that prop is always cleared
  • 60534f9 chore(deps): bump golang.org/x/term from 0.30.0 to 0.31.0 (#418)
  • 606f55a chore(deps): bump golang.org/x/text from 0.23.0 to 0.24.0 (#419)
  • Additional commits viewable in compare view

Updates github.com/efficientgo/core from 1.0.0-rc.2 to 1.0.0-rc.3

Release notes

Sourced from github.com/efficientgo/core's releases.

v1.0.0-rc.3

What's Changed

Full Changelog: efficientgo/core@v1.0.0-rc.2...v1.0.0-rc.3

Commits

Updates github.com/felixge/fgprof from 0.9.3 to 0.9.5

Release notes

Sourced from github.com/felixge/fgprof's releases.

v0.9.5

v0.9.4

What's Changed

New Contributors

Full Changelog: felixge/fgprof@v0.9.3...v0.9.4

Commits

Updates github.com/gocolly/colly/v2 from 2.1.1-0.20201013153555-8252c346cfb0 to 2.2.0

Release notes

Sourced from github.com/gocolly/colly/v2's releases.

v2.2.0

Tons of bug fixes & little improvements & updated dependencies

What's Changed

... (truncated)

Commits

Updates github.com/gohugoio/hugo from 0.120.4 to 0.150.0

Release notes

Sourced from github.com/gohugoio/hugo's releases.

v0.150.0

The big new feature in this relase is the new version config option on Module imports, which allows you to set the requested module version query directly in your Hugo configuration (e.g. hugo.toml). This is a feature that have been requested by many, and I (@​bep) was reminded about it by this recent thread, which also outlines a common use case for this: Mounting multiple old versions/branches of API documentation into the project.

What's Changed

  • build(deps): bump golang.org/x/mod from 0.27.0 to 0.28.0 d1f6a1dc5 @​dependabot[bot]
  • modules: Add support for direct version module imports in hugo.toml 747cf4ad6 @​bep #13964
  • resources/page: Fix truncated summary logic d8774d7fc @​jmooring #13967 #13968
  • config/security: Add PROGRAMDATA to the osenv allowlist 3b8947d82 @​jmooring

v0.149.1

The main motivation behind this release is the Go 1.25.1 upgrade, which comes with a security fix. Hugo does not use the feature in question, but we understand that many Hugo users like to have a clean security report.

Note

Note that CSS minification now targets CSS3, removing certain optimizations that were specific to CSS2.

What's Changed

v0.149.0

[!NOTE]
If running on Netlify, make sure you have configured your build with their latest build image, see this issue.

Hugo v0.149.0 comes with bug fixes and a set of new features/improvements, notably:

Note

  • Remove test with deprecated path usage 80e973ea5 @​bep

... (truncated)

Commits
  • 3f5473b releaser: Bump versions for release of 0.150.0
  • d1f6a1d build(deps): bump golang.org/x/mod from 0.27.0 to 0.28.0
  • 747cf4a modules: Add support for direct version module imports in hugo.toml
  • d8774d7 resources/page: Fix truncated summary logic
  • 3b8947d config/security: Add PROGRAMDATA to the osenv allowlist
  • 321a66e releaser: Prepare repository for 0.150.0-DEV
  • 57a784e releaser: Bump versions for release of 0.149.1
  • 25c0f24 Remove noindex meta tag from alias.html
  • 4f2d2b2 Fix nilpointer on ToC heading
  • b8eb45c tpl/collections: Require collections.D args to be ints
  • Additional commits viewable in compare view

Updates github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.32

Commits

Updates github.com/oklog/run from 1.1.0 to 1.2.0

Release notes

Sourced from github.com/oklog/run's releases.

v1.2.0

This long-overdue release includes correctness fixes to the SignalHandler helper, and a new ContextHandler helper. The minimum Go version in the go.mod file has been bumped from 1.13 to 1.20. As always, please test with your code before deploying to production, and file issues for any problems you encounter.

What's Changed

New Contributors

Full Changelog: oklog/run@v1.1.0...v1.2.0

Commits

Updates github.com/prometheus/client_golang from 1.19.0 to 1.23.2

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.23.2 - 2025-09-05

This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes.

Full Changelog: prometheus/client_golang@v1.23.1...v1.23.2

v1.23.1 - 2025-09-04

This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes.

Full Changelog: prometheus/client_golang@v1.23.0...v1.23.1

v1.23.0 - 2025-07-30

  • [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
  • [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
  • [FEATURE] Add exemplars for native histograms #1686
  • [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
  • [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
  • [BUGFIX] exp/api: client prompt return on context cancellation #1729

... (truncated)

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.23.2 / 2025-09-05

This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes.

1.23.1 / 2025-09-04

This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes.

1.23.0 / 2025-07-30

  • [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
  • [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
  • [FEATURE] Add exemplars for native histograms #1686
  • [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
  • [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
  • [BUGFIX] exp/api: client prompt return on context cancellation #1729

1.22.0 / 2025-04-07

⚠️ This release contains potential breaking change if you use experimental zstd support introduce in #1496 ⚠️

Experimental support for zstd on scrape was added, controlled by the request Accept-Encoding header. It was enabled by default since version 1.20, but now you need to add a blank import to enable it. The decision to make it opt-in by default was originally made because the Go standard library was expected to have default zstd support added soon, golang/go#62513 however, the work took longer than anticipated and it will be postponed to upcoming major Go versions.

e.g.:

import (
  _ "github.com/prometheus/client_golang/prometheus/promhttp/zstd"
)
  • [FEATURE] prometheus: Add new CollectorFunc utility #1724
  • [CHANGE] Minimum required Go version is now 1.22 (we also test client_golang against latest go version - 1.24) #1738
  • [FEATURE] api: WithLookbackDelta and WithStats options have been added to API client. #1743
  • [CHANGE] ⚠️ promhttp: Isolate zstd support and klauspost/compress library use to promhttp/zstd package. #1765

1.21.1 / 2025-03-04

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low contention cases.
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags.

1.21.0 / 2025-02-17

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang. ⚠️

... (truncated)

Commits

Updates github.com/prometheus/common from 0.48.0 to 0.66.1

Release notes

Sourced from github.com/prometheus/common's releases.

v0.66.1

This release has no functional changes, it just drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement).

What's Changed

Full Changelog: prometheus/common@v1.20.99...v0.66.1

v0.66.0

⚠️ Breaking Changes ⚠️

  • A default-constructed TextParser will be invalid. It must have a valid scheme set, so users should use the NewTextParser function to create a valid TextParser. Otherwise parsing will panic with "Invalid name validation scheme requested: unset".

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from github.com/prometheus/common's changelog.

v0.66.1 / 2025-09-05

This release has no functional changes, it just drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement).

What's Changed

Full Changelog: prometheus/common@v1.20.99...v0.66.1

v0.66.0 / 2025-09-02

⚠️ Breaking Changes ⚠️

  • A default-constructed TextParser will be invalid. It must have a valid scheme set, so users should use the NewTextParser function to create a valid TextParser. Otherwise parsing will panic with "Invalid name validation scheme requested: unset".

What's Changed

New Contributors

... (truncated)

Commits
  • 8975dde Revert "Use go.uber.org/atomic instead of sync/atomic (#825)" (#838)
  • 08d7f66 Move to supported version of yaml parser (#834)
  • 80e275e Revert "Use github.com/grafana/regexp instead of regexp" (#835)
  • 4c2f9e7 Merge pull request #832 from roidelapluie/retract
  • e120453 Retract v1.20.3
  • 2b1487c Merge pull request #827 from prometheus/dependabot/go_modules/github.com/stre...
  • db38951 Merge pull request #829 from prometheus/dependabot/go_modules/golang.org/x/ne...
  • 9e19a90 build(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1
  • a1ba2a7 build(deps): bump golang.org/x/net from 0.42.0 to 0.43.0
  • c7a031c Merge pull request #830 from prometheus/dependabot/go_modules/google.golang.o...
  • Additional commits viewable in compare view

Updates github.com/sergi/go-diff from 1.0.0 to 1.4.0

Commits
  • 57c41f4 Merge branch 'iambus-master'
  • feac906 Merge pull request #139 from michaelcheah/fix_newline_diffs_colored_text
  • 5b0b94c Merge pull request #136 from kdarkhan/master
  • 4ebce9c fix: colored display for diffs with newlines
  • a674b30 Fix line diff by using runes without separators
  • 74798f5 Add a failing line diff test case
  • db9db17 Merge branch 'master' into master
  • facec63 Merge pull request #130 from moyrne/master
  • 11fe19c Merge pull request #135 from nrnrk/fix_use_common_line_hash
  • 6dbe13c fix: use common lineHash to share indice between text1 and text2
  • Additional commits viewable in compare view

Updates github.com/yuin/goldmark from 1.6.0 to 1.7.13

Release notes

Sourced from github.com/yuin/goldmark's releases.

v1.7.13 release

No release notes provided.

v1.7.12 release

No release notes provided.

v1.7.11 release

No release notes provided.

v1.7.10 release

No release notes provided.

v1.7.9 release

No release notes provided.

v1.7.8 release

No release notes provided.

v1.7.7 release

No release notes provided.

v1.7.6 release

No release notes provided.

v1.7.5 release

No release notes provided.

v1.7.4 release

...

Description has been truncated

Bumps the deps group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/charmbracelet/glamour](https://github.com/charmbracelet/glamour) | `0.6.0` | `0.10.0` |
| [github.com/efficientgo/core](https://github.com/efficientgo/core) | `1.0.0-rc.2` | `1.0.0-rc.3` |
| [github.com/felixge/fgprof](https://github.com/felixge/fgprof) | `0.9.3` | `0.9.5` |
| [github.com/gocolly/colly/v2](https://github.com/gocolly/colly) | `2.1.1-0.20201013153555-8252c346cfb0` | `2.2.0` |
| [github.com/gohugoio/hugo](https://github.com/gohugoio/hugo) | `0.120.4` | `0.150.0` |
| [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) | `1.14.17` | `1.14.32` |
| [github.com/oklog/run](https://github.com/oklog/run) | `1.1.0` | `1.2.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.23.2` |
| [github.com/prometheus/common](https://github.com/prometheus/common) | `0.48.0` | `0.66.1` |
| [github.com/sergi/go-diff](https://github.com/sergi/go-diff) | `1.0.0` | `1.4.0` |
| [github.com/yuin/goldmark](https://github.com/yuin/goldmark) | `1.6.0` | `1.7.13` |
| [golang.org/x/net](https://github.com/golang/net) | `0.29.0` | `0.43.0` |


Updates `github.com/charmbracelet/glamour` from 0.6.0 to 0.10.0
- [Release notes](https://github.com/charmbracelet/glamour/releases)
- [Changelog](https://github.com/charmbracelet/glamour/blob/master/.goreleaser.yml)
- [Commits](charmbracelet/glamour@v0.6.0...v0.10.0)

Updates `github.com/efficientgo/core` from 1.0.0-rc.2 to 1.0.0-rc.3
- [Release notes](https://github.com/efficientgo/core/releases)
- [Commits](efficientgo/core@v1.0.0-rc.2...v1.0.0-rc.3)

Updates `github.com/felixge/fgprof` from 0.9.3 to 0.9.5
- [Release notes](https://github.com/felixge/fgprof/releases)
- [Commits](felixge/fgprof@v0.9.3...v0.9.5)

Updates `github.com/gocolly/colly/v2` from 2.1.1-0.20201013153555-8252c346cfb0 to 2.2.0
- [Release notes](https://github.com/gocolly/colly/releases)
- [Changelog](https://github.com/gocolly/colly/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gocolly/colly/commits/v2.2.0)

Updates `github.com/gohugoio/hugo` from 0.120.4 to 0.150.0
- [Release notes](https://github.com/gohugoio/hugo/releases)
- [Changelog](https://github.com/gohugoio/hugo/blob/master/hugoreleaser.yaml)
- [Commits](gohugoio/hugo@v0.120.4...v0.150.0)

Updates `github.com/mattn/go-sqlite3` from 1.14.17 to 1.14.32
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](mattn/go-sqlite3@v1.14.17...v1.14.32)

Updates `github.com/oklog/run` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/oklog/run/releases)
- [Commits](oklog/run@v1.1.0...v1.2.0)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.23.2
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.23.2)

Updates `github.com/prometheus/common` from 0.48.0 to 0.66.1
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/CHANGELOG.md)
- [Commits](prometheus/common@v0.48.0...v0.66.1)

Updates `github.com/sergi/go-diff` from 1.0.0 to 1.4.0
- [Commits](sergi/go-diff@v1.0.0...v1.4.0)

Updates `github.com/yuin/goldmark` from 1.6.0 to 1.7.13
- [Release notes](https://github.com/yuin/goldmark/releases)
- [Commits](yuin/goldmark@v1.6.0...v1.7.13)

Updates `golang.org/x/net` from 0.29.0 to 0.43.0
- [Commits](golang/net@v0.29.0...v0.43.0)

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/glamour
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/efficientgo/core
  dependency-version: 1.0.0-rc.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/felixge/fgprof
  dependency-version: 0.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/gocolly/colly/v2
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/gohugoio/hugo
  dependency-version: 0.150.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/mattn/go-sqlite3
  dependency-version: 1.14.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/oklog/run
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/prometheus/common
  dependency-version: 0.66.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/sergi/go-diff
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/yuin/goldmark
  dependency-version: 1.7.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: golang.org/x/net
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
...

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 Sep 9, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 13, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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