2024-12-22 11:44:34 +02:00
|
|
|
module go.woodpecker-ci.org/woodpecker/v3
|
2019-10-24 09:34:31 +02:00
|
|
|
|
2025-09-28 08:49:51 +02:00
|
|
|
go 1.24.4
|
2019-10-24 09:34:31 +02:00
|
|
|
|
|
|
|
|
require (
|
2025-03-10 02:42:07 +01:00
|
|
|
al.essio.dev/pkg/shellescape v1.6.0
|
2025-08-28 11:45:38 +02:00
|
|
|
code.gitea.io/sdk/gitea v0.22.0
|
2023-04-29 14:49:41 +02:00
|
|
|
codeberg.org/6543/go-yaml2json v1.0.0
|
|
|
|
|
codeberg.org/6543/xyaml v1.1.0
|
2025-06-18 05:49:19 +02:00
|
|
|
codeberg.org/mvdkleijn/forgejo-sdk/forgejo/v2 v2.2.0
|
2023-08-18 15:35:12 +02:00
|
|
|
github.com/6543/logfile-open v1.2.1
|
2024-11-18 19:40:45 +01:00
|
|
|
github.com/adrg/xdg v0.5.3
|
2025-07-27 02:55:04 +02:00
|
|
|
github.com/bmatcuk/doublestar/v4 v4.9.1
|
2025-07-25 03:13:34 +02:00
|
|
|
github.com/cenkalti/backoff/v5 v5.0.3
|
2025-04-17 05:36:02 +02:00
|
|
|
github.com/charmbracelet/huh v0.7.0
|
Update golang (packages) (#3564)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/cenkalti/backoff/v4](https://togithub.com/cenkalti/backoff)
| `v4.2.1` -> `v4.3.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/charmbracelet/huh/spinner](https://togithub.com/charmbracelet/huh)
| `v0.0.0-20240306161957-71f31c155b08` -> `v0.3.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/distribution/reference](https://togithub.com/distribution/reference)
| `v0.5.0` -> `v0.6.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [github.com/expr-lang/expr](https://togithub.com/expr-lang/expr) |
`v1.16.2` -> `v1.16.3` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/go-sql-driver/mysql](https://togithub.com/go-sql-driver/mysql)
| `v1.8.0` -> `v1.8.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>cenkalti/backoff (github.com/cenkalti/backoff/v4)</summary>
###
[`v4.3.0`](https://togithub.com/cenkalti/backoff/compare/v4.2.1...v4.3.0)
[Compare
Source](https://togithub.com/cenkalti/backoff/compare/v4.2.1...v4.3.0)
</details>
<details>
<summary>charmbracelet/huh
(github.com/charmbracelet/huh/spinner)</summary>
###
[`v0.3.0`](https://togithub.com/charmbracelet/huh/releases/tag/v0.3.0)
[Compare
Source](https://togithub.com/charmbracelet/huh/compare/v0.2.3...v0.3.0)
### Scrolling, autocomplete, smaller binaries and more!
This is a big release with a tonne of new features.
- Scrollable Forms
- Scrollable Selects and Multi selects
- Autocomplete for inputs
- 7x smaller binaries
- Multi select filtering
- Lotsa' bugfixes and quality-of-life improvements
To upgrade to `huh` v0.3.0:
```bash
go get -u github.com/charmbracelet/huh@latest
```
For details read on!
#### Scrollable forms
If a form is in a small terminal it will automatically resize to fit the
available space and the active group will scroll to stay in view. Form
heights can also be set manually with the new
[`WithHeight`](https://pkg.go.dev/github.com/charmbracelet/huh@v0.3.0#Form.WithHeight)
method.
<img width="800"
src="https://vhs.charm.sh/vhs-1krvQFrEFaf3H1h7jbQomc.gif" alt="Made with
VHS">
#### Select and Multi select Scrolling
Select and Multi select fields can now be restricted to a certain
height, allowing their options to be scrollable. This means you can now
pack in tonnes of options.
To make a `Select` or `MultiSelect` scrollable simply set the height on
the field or form through the `Height` method.
```go
s := huh.NewSelect()
.Title("What’s for dinner?")
.Options(/* ... */)
.Height(height)
```
<img width="600"
src="https://vhs.charm.sh/vhs-7vcNAV9T20oeMFraAFd0B7.gif" alt="Made with
VHS">
#### Autocomplete
Now `Input`s can offer suggestions making it easier for users to fill
out inputs. These suggestions can be accepted autocomplete-style with a
configurable key binding (which defaults to <kbd>ctrl+e</kbd>).
Simply provide a `[]string` to `Suggestions` to enable this feature.
```go
huh.NewInput().
Title("What's for lunch?").
Prompt("? ").
Suggestions([]string{
"Artichoke",
// ...
"Cashew Apple",
"Cashews",
"Cat Food",
"Coconut Milk",
"Cucumber",
"Curry Paste",
"Currywurst",
// ...
})
```
<img width="600"
src="https://vhs.charm.sh/vhs-49L7gt948FkJxfTzfa2qmE.gif" alt="Made with
VHS">
#### More helpful help
Forms will automatically adjust their help text to indicate to the user
whether the form will continue or submit on actions. This works with
hidden groups. In the below example, the user will be asked to list
their allergies if they select "Yes" otherwise, the form will submit.
<img width="600"
src="https://vhs.charm.sh/vhs-7skg7qpQYCMG2Y5Vl751si.gif" alt="Made with
VHS">
#### Way smaller binaries
Huh now produces way smaller binaries! Thanks to
[#​94](https://togithub.com/charmbracelet/huh/issues/94) Huh now
has a 7x smaller compiled footprint.
Before, using `huh@v0.2.3`:
33M ./burger
After, using `huh@v0.3.0`:
4.5M ./burger
#### Thanks, Vitor!
Special thanks to the intrepid
[@​vitor-mariano](https://togithub.com/vitor-mariano), one of the
earliest `huh` contributors, who came in hot with features, fixes,
improvements and good vibes. Thank you, Vitor!
#### Changelog
##### New
- scrollable multi-select by
[@​meowgorithm](https://togithub.com/meowgorithm) in
[https://github.com/charmbracelet/huh/pull/71](https://togithub.com/charmbracelet/huh/pull/71)
- scrollable select by
[@​meowgorithm](https://togithub.com/meowgorithm) in
[https://github.com/charmbracelet/huh/pull/76](https://togithub.com/charmbracelet/huh/pull/76)
- feat: enable filtering on MultiSelect by
[@​vitor-mariano](https://togithub.com/vitor-mariano) in
[https://github.com/charmbracelet/huh/pull/81](https://togithub.com/charmbracelet/huh/pull/81)
- skippable Fields by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/116](https://togithub.com/charmbracelet/huh/pull/116)
- autocomplete suggestions on inputs by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/93](https://togithub.com/charmbracelet/huh/pull/93)
- scroll form Inputs by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/95](https://togithub.com/charmbracelet/huh/pull/95)
- next / previous dynamic help by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/104](https://togithub.com/charmbracelet/huh/pull/104)
- reduce binary size by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/94](https://togithub.com/charmbracelet/huh/pull/94)
##### Fixed
- fix Select and MultiSelect height when unfocused by
[@​vitor-mariano](https://togithub.com/vitor-mariano) in
[https://github.com/charmbracelet/huh/pull/80](https://togithub.com/charmbracelet/huh/pull/80)
- use CharLimit in textinput by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/79](https://togithub.com/charmbracelet/huh/pull/79)
- select viewport on filtering by
[@​vitor-mariano](https://togithub.com/vitor-mariano) in
[https://github.com/charmbracelet/huh/pull/84](https://togithub.com/charmbracelet/huh/pull/84)
- set default theme on inputs by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/92](https://togithub.com/charmbracelet/huh/pull/92)
- multiselect: set height in WithHeight by
[@​ardnew](https://togithub.com/ardnew) in
[https://github.com/charmbracelet/huh/pull/118](https://togithub.com/charmbracelet/huh/pull/118)
- shift+tab would fail if first group is hidden by
[@​caarlos0](https://togithub.com/caarlos0) in
[https://github.com/charmbracelet/huh/pull/103](https://togithub.com/charmbracelet/huh/pull/103)
- prevField should not select skippable fields by
[@​maaslalani](https://togithub.com/maaslalani) in
[https://github.com/charmbracelet/huh/pull/121](https://togithub.com/charmbracelet/huh/pull/121)
**Full Changelog**:
https://github.com/charmbracelet/huh/compare/v0.2.3...v0.3.0
***
<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.technology/@​charm), or on
[Discord](https://charm.sh/chat).
###
[`v0.2.3`](https://togithub.com/charmbracelet/huh/releases/tag/v0.2.3)
[Compare
Source](https://togithub.com/charmbracelet/huh/compare/v0.2.2...v0.2.3)
#### Better Defaults!
Huh? `v0.2.3` fixes some bugs for more consistent behaviour across
inputs 🐞
- `Text` inputs now update values on each keystroke rather than on
`Blur` for consistency.
- `Select` and `MultiSelect` read their default values from the initial
values set by the `Value` variable if provided.
A *special* thanks to
[@​vitor-mariano](https://togithub.com/vitor-mariano) for all his
contributions to this release 🤗
##### Defaults Example
You can now have preselected options by declaring them in the `Value`
variable:
```go
var toppings = []string{"Lettuce", "Tomatoes"}
var options = huh.NewOptions("Lettuce", "Tomatoes", "Charm Sauce", "Cheese", "Vegan Cheese")
huh.NewMultiSelect[string]().Title("Toppings").Options(options...).Value(&toppings).Run()
```
In the above example, `Lettuce` and `Tomatoes` will be preselected by
default.
#### What's Changed
- `Text` value updates by
[@​vitor-mariano](https://togithub.com/vitor-mariano) in
[https://github.com/charmbracelet/huh/pull/64](https://togithub.com/charmbracelet/huh/pull/64)
- Prefill `Select` and `MultiSelect` inputs with default values by
[@​vitor-mariano](https://togithub.com/vitor-mariano) in
[https://github.com/charmbracelet/huh/pull/62](https://togithub.com/charmbracelet/huh/pull/62)
**Full Changelog**:
https://github.com/charmbracelet/huh/compare/v0.2.2...v0.2.3
***
<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.technology/@​charm), or on
[Discord](https://charm.sh/chat).
###
[`v0.2.2`](https://togithub.com/charmbracelet/huh/releases/tag/v0.2.2)
[Compare
Source](https://togithub.com/charmbracelet/huh/compare/v0.2.1...v0.2.2)
#### Better Wrapping 🎁
`Huh?` v0.2.2 improves wrapping of the `Input` and `Text` fields.
It applies width set on the form to the inputs to perform wrapping based
on the specified or terminal width.
- Fixed in
[https://github.com/charmbracelet/huh/pull/60](https://togithub.com/charmbracelet/huh/pull/60)
#### New Contributors
- [@​ddddddO](https://togithub.com/ddddddO) made their first
contribution in
[https://github.com/charmbracelet/huh/pull/56](https://togithub.com/charmbracelet/huh/pull/56)
- [@​vitor-mariano](https://togithub.com/vitor-mariano) made their
first contribution in
[https://github.com/charmbracelet/huh/pull/57](https://togithub.com/charmbracelet/huh/pull/57)
**Full Changelog**:
https://github.com/charmbracelet/huh/compare/v0.2.1...v0.2.2
***
<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.social/@​charmcli), or
[Discord](https://charm.sh/chat).
###
[`v0.2.1`](https://togithub.com/charmbracelet/huh/releases/tag/v0.2.1)
[Compare
Source](https://togithub.com/charmbracelet/huh/compare/v0.2.0...v0.2.1)
### New Theme! 😸
`huh?` forms can now use Catppuccin themes. (Thanks to the wonderful
[@​sgoudham](https://togithub.com/sgoudham) ✨)
Simply add the following to your `huh.Form`s:
```go
.WithTheme(huh.ThemeCatppuccin())
```
<img width="500"
src="https://github.com/charmbracelet/huh/assets/42545625/fdea4eb5-fa3b-472c-8aa4-9537e9577ab5"
/>
***
<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.social/@​charmcli), or
[Discord](https://charm.sh/chat).
###
[`v0.2.0`](https://togithub.com/charmbracelet/huh/releases/tag/v0.2.0)
[Compare
Source](https://togithub.com/charmbracelet/huh/compare/v0.1.0...v0.2.0)
### Better Help Styles!
`Help` Styles now apply on a `Theme` rather than embedded in
`FieldStyles`. (Thanks to the wonderful
[@​jolheiser](https://togithub.com/jolheiser) ✨)
```go
// Old...
theme.Focused.Help.ShortKey = lipgloss.NewStyle() //...
// Updated!
theme.Help.ShortKey = lipgloss.NewStyle() //...
```
***
<a href="https://charm.sh/"><img alt="The Charm logo"
src="https://stuff.charm.sh/charm-badge.jpg" width="400"></a>
Thoughts? Questions? We love hearing from you. Feel free to reach out on
[Twitter](https://twitter.com/charmcli), [The
Fediverse](https://mastodon.social/@​charmcli), or
[Discord](https://charm.sh/chat).
</details>
<details>
<summary>distribution/reference
(github.com/distribution/reference)</summary>
###
[`v0.6.0`](https://togithub.com/distribution/reference/releases/tag/v0.6.0)
[Compare
Source](https://togithub.com/distribution/reference/compare/v0.5.0...v0.6.0)
#### What's Changed
- remove deprecated SplitHostname by
[@​thaJeztah](https://togithub.com/thaJeztah) in
[https://github.com/distribution/reference/pull/5](https://togithub.com/distribution/reference/pull/5)
- refactor splitDockerDomain to include more documentation by
[@​thaJeztah](https://togithub.com/thaJeztah) in
[https://github.com/distribution/reference/pull/7](https://togithub.com/distribution/reference/pull/7)
- fix typo in readme by [@​xrstf](https://togithub.com/xrstf) in
[https://github.com/distribution/reference/pull/10](https://togithub.com/distribution/reference/pull/10)
- Exclude domain from name length check by
[@​ozairasim](https://togithub.com/ozairasim) in
[https://github.com/distribution/reference/pull/9](https://togithub.com/distribution/reference/pull/9)
#### New Contributors
- [@​xrstf](https://togithub.com/xrstf) made their first
contribution in
[https://github.com/distribution/reference/pull/10](https://togithub.com/distribution/reference/pull/10)
- [@​ozairasim](https://togithub.com/ozairasim) made their first
contribution in
[https://github.com/distribution/reference/pull/9](https://togithub.com/distribution/reference/pull/9)
**Full Changelog**:
https://github.com/distribution/reference/compare/v0.5.0...v0.6.0
</details>
<details>
<summary>expr-lang/expr (github.com/expr-lang/expr)</summary>
###
[`v1.16.3`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.3)
[Compare
Source](https://togithub.com/expr-lang/expr/compare/v1.16.2...v1.16.3)
**Expr** is a Go-centric expression language designed to deliver dynamic
configurations with unparalleled accuracy,
safety, and speed.
```go
program, err := expr.Compile(`let x = 2 + 2; x ^ x`)
output, err := expr.Run(program, env)
```
**In this release**:
- Improved printing for maps: `{(foo + bar): 42}`
**Expr Editor**
The [Expr Editor](https://expr-lang.org/editor) is an embeddable code
editor written in JavaScript with full support of Expr language.
**Expr Pro**
[Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for
Expr for advanced use cases. It includes expressions explanation,
performance profiling, and more.
</details>
<details>
<summary>go-sql-driver/mysql (github.com/go-sql-driver/mysql)</summary>
###
[`v1.8.1`](https://togithub.com/go-sql-driver/mysql/releases/tag/v1.8.1)
[Compare
Source](https://togithub.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1)
#### What's Changed
Bugfixes:
- fix race condition when context is canceled in
[#​1562](https://togithub.com/go-sql-driver/mysql/pull/1562) and
[#​1570](https://togithub.com/go-sql-driver/mysql/pull/1570)
**Full Changelog**:
https://github.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge -
"before 4am" (UTC).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
2024-03-29 09:21:54 +01:00
|
|
|
github.com/charmbracelet/huh/spinner v0.0.0-20240327025511-ec643317aa10
|
2025-06-06 07:20:03 +02:00
|
|
|
github.com/containerd/errdefs v1.0.0
|
2024-07-25 00:43:21 +02:00
|
|
|
github.com/distribution/reference v0.6.0
|
2025-10-03 03:13:04 +02:00
|
|
|
github.com/docker/cli v28.5.0+incompatible
|
|
|
|
|
github.com/docker/docker v28.5.0+incompatible
|
2025-08-08 03:39:13 +02:00
|
|
|
github.com/docker/go-connections v0.6.0
|
2022-10-19 10:15:58 +02:00
|
|
|
github.com/docker/go-units v0.5.0
|
2021-06-30 19:15:28 +02:00
|
|
|
github.com/drone/envsubst v1.0.3
|
2025-08-14 04:53:20 +02:00
|
|
|
github.com/expr-lang/expr v1.17.6
|
2025-04-05 07:21:08 +03:00
|
|
|
github.com/fsnotify/fsnotify v1.9.0
|
2025-08-25 03:22:19 +02:00
|
|
|
github.com/gdgvda/cron v0.5.0
|
2025-08-26 03:10:21 +02:00
|
|
|
github.com/getkin/kin-openapi v0.133.0
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/gin-gonic/gin v1.11.0
|
2024-06-25 00:39:18 +02:00
|
|
|
github.com/gitsight/go-vcsurl v1.0.1
|
2025-06-13 16:05:57 +02:00
|
|
|
github.com/go-sql-driver/mysql v1.9.3
|
2025-07-16 05:18:49 +02:00
|
|
|
github.com/go-viper/mapstructure/v2 v2.4.0
|
2025-07-31 03:26:41 +02:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.3.0
|
2025-07-26 08:27:36 +03:00
|
|
|
github.com/google/go-github/v74 v74.0.0
|
2023-01-12 22:59:07 +03:00
|
|
|
github.com/google/tink/go v1.7.0
|
2023-11-05 08:57:05 +01:00
|
|
|
github.com/gorilla/securecookie v1.1.2
|
2024-05-23 17:37:21 +02:00
|
|
|
github.com/hashicorp/go-hclog v1.6.3
|
2025-08-12 05:16:52 +02:00
|
|
|
github.com/hashicorp/go-plugin v1.7.0
|
2025-06-18 05:49:19 +02:00
|
|
|
github.com/jellydator/ttlcache/v3 v3.4.0
|
2023-03-21 01:48:15 +02:00
|
|
|
github.com/joho/godotenv v1.5.1
|
2024-10-05 10:06:02 +02:00
|
|
|
github.com/kinbiko/jsonassert v1.2.0
|
2023-05-11 00:28:02 +02:00
|
|
|
github.com/lib/pq v1.10.9
|
2025-08-15 03:54:40 +02:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
2025-01-04 01:12:49 +01:00
|
|
|
github.com/moby/term v0.5.2
|
2025-02-23 03:35:21 +01:00
|
|
|
github.com/muesli/termenv v0.16.0
|
2025-10-03 03:13:04 +02:00
|
|
|
github.com/neticdk/go-bitbucket v1.0.4
|
2025-05-22 05:27:40 +02:00
|
|
|
github.com/oklog/ulid/v2 v2.1.1
|
2025-09-07 03:00:46 +02:00
|
|
|
github.com/prometheus/client_golang v1.23.2
|
2025-03-23 02:51:30 +01:00
|
|
|
github.com/rs/zerolog v1.34.0
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/stretchr/testify v1.11.1
|
2023-06-03 21:38:36 +02:00
|
|
|
github.com/swaggo/files v1.0.1
|
2025-09-03 03:06:31 +02:00
|
|
|
github.com/swaggo/gin-swagger v1.6.1
|
2025-07-31 03:26:41 +02:00
|
|
|
github.com/swaggo/swag v1.16.6
|
2025-09-28 08:49:51 +02:00
|
|
|
github.com/urfave/cli-docs/v3 v3.1.0
|
2025-08-14 04:53:20 +02:00
|
|
|
github.com/urfave/cli/v3 v3.4.1
|
2021-09-27 02:38:15 +02:00
|
|
|
github.com/xeipuuv/gojsonschema v1.2.0
|
2024-12-24 01:11:56 +01:00
|
|
|
github.com/yaronf/httpsign v0.3.2
|
2024-10-30 06:55:26 +01:00
|
|
|
github.com/zalando/go-keyring v0.2.6
|
2025-10-03 03:13:04 +02:00
|
|
|
gitlab.com/gitlab-org/api/client-go v0.149.0
|
2023-11-03 11:44:03 +01:00
|
|
|
go.uber.org/multierr v1.11.0
|
2025-09-09 03:03:06 +02:00
|
|
|
golang.org/x/crypto v0.42.0
|
2025-09-10 05:47:34 +02:00
|
|
|
golang.org/x/net v0.44.0
|
2025-09-08 04:01:57 +02:00
|
|
|
golang.org/x/oauth2 v0.31.0
|
|
|
|
|
golang.org/x/sync v0.17.0
|
2025-09-09 03:03:06 +02:00
|
|
|
golang.org/x/term v0.35.0
|
|
|
|
|
golang.org/x/text v0.29.0
|
2025-09-11 03:38:46 +02:00
|
|
|
google.golang.org/grpc v1.75.1
|
2025-10-03 03:13:04 +02:00
|
|
|
google.golang.org/protobuf v1.36.10
|
2022-07-17 17:23:31 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2025-09-11 03:38:46 +02:00
|
|
|
k8s.io/api v0.34.1
|
|
|
|
|
k8s.io/apimachinery v0.34.1
|
|
|
|
|
k8s.io/client-go v0.34.1
|
2023-11-28 10:31:54 +01:00
|
|
|
src.techknowlogick.com/xormigrate v1.7.1
|
2023-08-07 23:16:50 +02:00
|
|
|
xorm.io/builder v0.3.13
|
2025-07-23 13:44:11 +03:00
|
|
|
xorm.io/xorm v1.3.10
|
2019-10-24 09:34:31 +02:00
|
|
|
)
|
2022-06-17 01:57:02 +02:00
|
|
|
|
|
|
|
|
require (
|
2024-03-15 11:14:39 +01:00
|
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
2025-05-15 05:14:14 +02:00
|
|
|
github.com/42wim/httpsig v1.2.3 // indirect
|
2025-01-04 01:12:49 +01:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
|
2023-06-03 21:38:36 +02:00
|
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
2023-05-11 00:28:02 +02:00
|
|
|
github.com/Microsoft/go-winio v0.6.1 // indirect
|
2024-03-13 11:08:22 +01:00
|
|
|
github.com/atotto/clipboard v0.1.4 // indirect
|
2023-11-03 11:44:03 +01:00
|
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/bytedance/sonic v1.14.0 // indirect
|
|
|
|
|
github.com/bytedance/sonic/loader v0.3.0 // indirect
|
2025-04-17 05:36:02 +02:00
|
|
|
github.com/catppuccin/go v0.3.0 // indirect
|
2024-07-07 01:44:19 -07:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
2025-04-17 05:36:02 +02:00
|
|
|
github.com/charmbracelet/bubbles v0.21.0 // indirect
|
|
|
|
|
github.com/charmbracelet/bubbletea v1.3.4 // indirect
|
|
|
|
|
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
|
|
|
|
|
github.com/charmbracelet/lipgloss v1.1.0 // indirect
|
|
|
|
|
github.com/charmbracelet/x/ansi v0.8.0 // indirect
|
|
|
|
|
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
github.com/charmbracelet/x/exp/strings v0.0.0-20240722160745-212f7b056ed0 // indirect
|
2025-04-17 05:36:02 +02:00
|
|
|
github.com/charmbracelet/x/term v0.2.1 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/cloudwego/base64x v0.1.6 // indirect
|
2025-06-06 07:20:03 +02:00
|
|
|
github.com/containerd/errdefs/pkg v0.3.0 // indirect
|
2024-07-25 00:43:21 +02:00
|
|
|
github.com/containerd/log v0.1.0 // indirect
|
2024-05-23 17:37:21 +02:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
|
2024-10-30 06:55:26 +01:00
|
|
|
github.com/danieljoos/wincred v1.2.2 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2022-07-25 04:09:35 +03:00
|
|
|
github.com/davidmz/go-pageant v1.0.2 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
|
2023-12-23 01:33:00 +01:00
|
|
|
github.com/docker/docker-credential-helpers v0.8.0 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/dunglas/httpsfv v1.0.2 // indirect
|
2024-07-07 01:44:19 -07:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
|
2024-07-07 01:44:19 -07:00
|
|
|
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
|
2024-11-23 09:17:19 +01:00
|
|
|
github.com/fatih/color v1.18.0 // indirect
|
2024-07-25 00:43:21 +02:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
|
|
|
github.com/gin-contrib/sse v1.1.0 // indirect
|
2022-07-25 04:09:35 +03:00
|
|
|
github.com/go-fed/httpsig v1.1.0 // indirect
|
2025-07-23 13:44:11 +03:00
|
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
2024-07-25 00:43:21 +02:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2024-07-13 15:55:13 +02:00
|
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
2024-11-23 09:17:19 +01:00
|
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
|
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
2024-07-13 15:55:13 +02:00
|
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
2023-03-21 01:48:15 +02:00
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/go-playground/validator/v10 v10.27.0 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/goccy/go-json v0.10.3 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/goccy/go-yaml v1.18.0 // indirect
|
2024-03-13 11:08:22 +01:00
|
|
|
github.com/godbus/dbus/v5 v5.1.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2024-03-24 13:27:05 +01:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/golang/snappy v0.0.4 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/google/gnostic-models v0.7.0 // indirect
|
2025-03-22 13:59:08 +01:00
|
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
fix(deps): update golang (packages) (#3430)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/expr-lang/expr](https://togithub.com/expr-lang/expr) |
`v1.16.0` -> `v1.16.1` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
|
[github.com/jellydator/ttlcache/v3](https://togithub.com/jellydator/ttlcache)
| `v3.1.1` -> `v3.2.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
| [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) |
`v1.61.1` -> `v1.62.0` |
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>expr-lang/expr (github.com/expr-lang/expr)</summary>
###
[`v1.16.1`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.1)
[Compare
Source](https://togithub.com/expr-lang/expr/compare/v1.16.0...v1.16.1)
**Expr** is a Go-centric expression language designed to deliver dynamic
configurations with unparalleled accuracy,
safety, and speed.
```go
program, err := expr.Compile(`now() - created_at < duration("24h")`)
output, err := expr.Run(program, env)
```
**In this release**:
- Fixed recursive operator overloading bug
([#​548](https://togithub.com/expr-lang/expr/issues/548),
[#​554](https://togithub.com/expr-lang/expr/issues/554))
- Fixed AST printing of `?.[` operator
([`ffaec9e`](https://togithub.com/expr-lang/expr/commit/ffaec9e))
- Fixed string literal slicing error
([#​543](https://togithub.com/expr-lang/expr/issues/543))
- Compilation performance improvements
([`95084fb`](https://togithub.com/expr-lang/expr/commit/95084fb))
- Improved functions call performance
([`ed89647`](https://togithub.com/expr-lang/expr/commit/ed89647))
- Refactored `groupBy()` and `sortBy()` builtins
([#​562](https://togithub.com/expr-lang/expr/issues/562))
- Added operator overloading with `expr.Function()`
([#​408](https://togithub.com/expr-lang/expr/issues/408))
- Added `concat()` builtin
([#​565](https://togithub.com/expr-lang/expr/issues/565))
- Added `reverse()` builtin
([#​553](https://togithub.com/expr-lang/expr/issues/553))
- Added `program.Locations()` method
([`e53cefe`](https://togithub.com/expr-lang/expr/commit/e53cefe))
- Added optional array access `array?.[42]`
([#​550](https://togithub.com/expr-lang/expr/issues/550))
- Added compiler optimization for jump opcodes
([#​545](https://togithub.com/expr-lang/expr/issues/545))
- Added compiler optimization for boolean operations with `all`, `any`,
`one`, `none` functions
([#​555](https://togithub.com/expr-lang/expr/issues/555))
**Expr Editor**
The [Expr Editor](https://expr-lang.org/editor) is an embeddable code
editor written in JavaScript with
full support of Expr language.
**Expr Pro**
[Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for
Expr for advanced use cases. It includes
expressions explanation, performance profiling, and more.
</details>
<details>
<summary>jellydator/ttlcache
(github.com/jellydator/ttlcache/v3)</summary>
###
[`v3.2.0`](https://togithub.com/jellydator/ttlcache/releases/tag/v3.2.0)
[Compare
Source](https://togithub.com/jellydator/ttlcache/compare/v3.1.1...v3.2.0)
#### What's Changed
- Add Support for PreviousTTL by
[@​ShivamKumar2002](https://togithub.com/ShivamKumar2002) in
[https://github.com/jellydator/ttlcache/pull/121](https://togithub.com/jellydator/ttlcache/pull/121)
**Full Changelog**:
https://github.com/jellydator/ttlcache/compare/v3.1.1...v3.2.0
</details>
<details>
<summary>grpc/grpc-go (google.golang.org/grpc)</summary>
### [`v1.62.0`](https://togithub.com/grpc/grpc-go/releases/tag/v1.62.0):
Release 1.62.0
[Compare
Source](https://togithub.com/grpc/grpc-go/compare/v1.61.1...v1.62.0)
### New Features
- grpc: Add StaticMethod CallOption as a signal to stats handler that a
method is safe to use as an instrument key
([#​6986](https://togithub.com/grpc/grpc-go/issues/6986))
### Behavior Changes
- grpc: Return canonical target string from ClientConn.Target() and
resolver.Address.String()
([#​6923](https://togithub.com/grpc/grpc-go/issues/6923))
### Bug Fixes
- server: wait to close connection until incoming socket is drained
(with timeout) to prevent data loss on client-side
([#​6977](https://togithub.com/grpc/grpc-go/issues/6977))
- Special Thanks:
[@​s-matyukevich](https://togithub.com/s-matyukevich) for
discovering the root cause
### Performance Improvements
- \*: Allow building without `x/net/trace` by using `grpcnotrace` to
enable dead code elimination
([#​6954](https://togithub.com/grpc/grpc-go/issues/6954))
- Special Thanks: [@​hugelgupf](https://togithub.com/hugelgupf)
- rand: improve performance and simplify implementation of `grpcrand` by
adopting `math/rand`'s top-level functions for go version 1.21.0 and
newer. ([#​6925](https://togithub.com/grpc/grpc-go/issues/6925))
- Special Thanks:
[@​kmirzavaziri](https://togithub.com/kmirzavaziri)
### Dependencies
- \*: Use google.golang.org/protobuf/proto instead of
github.com/golang/protobuf.
([#​6919](https://togithub.com/grpc/grpc-go/issues/6919))
- Special Thanks:
[@​Clement-Jean](https://togithub.com/Clement-Jean)
> \[!NOTE]
> The above change in proto library usage introduces a minor behavior
change within those libraries. The old `github.com/golang/protobuf`
library would error if given a `nil` message to `Marshal`, while the new
`google.golang.org/protobuf` library will successfully output zero bytes
in this case. This means server method handlers that did `return nil,
nil` will now return an empty message and no error, while it used to
return an error. This also affects the client side, where clients
sending `nil` messages used to fail without sending the RPC, and now
they will send an empty message.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am" (UTC), Automerge -
"before 4am" (UTC).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/woodpecker-ci/woodpecker).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-02-24 08:04:11 +01:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
2025-07-03 18:47:20 +03:00
|
|
|
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
|
2024-06-26 17:09:10 +02:00
|
|
|
github.com/hashicorp/go-version v1.7.0 // indirect
|
2025-08-12 05:16:52 +02:00
|
|
|
github.com/hashicorp/yamux v0.1.2 // indirect
|
2022-09-05 06:01:14 +02:00
|
|
|
github.com/josharian/intern v1.0.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
2024-02-20 15:58:02 +01:00
|
|
|
github.com/julienschmidt/httprouter v1.3.0 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
|
2024-05-23 17:37:21 +02:00
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
|
|
|
|
|
github.com/lestrrat-go/httpcc v1.0.1 // indirect
|
2024-12-24 01:11:56 +01:00
|
|
|
github.com/lestrrat-go/httprc v1.0.6 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/lestrrat-go/iter v1.0.2 // indirect
|
2024-12-24 01:11:56 +01:00
|
|
|
github.com/lestrrat-go/jwx/v2 v2.1.2 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/lestrrat-go/option v1.0.1 // indirect
|
2023-11-03 11:44:03 +01:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2022-10-19 10:15:58 +02:00
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2023-09-30 09:23:11 +02:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
2023-12-23 01:33:00 +01:00
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2024-03-13 11:08:22 +01:00
|
|
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
2024-07-22 18:18:26 +02:00
|
|
|
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
|
2024-07-25 00:43:21 +02:00
|
|
|
github.com/moby/docker-image-spec v1.3.1 // indirect
|
2025-04-26 10:52:42 +02:00
|
|
|
github.com/moby/sys/atomicwriter v0.1.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
|
2024-07-13 15:55:13 +02:00
|
|
|
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
2024-03-28 10:36:39 +01:00
|
|
|
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
|
2024-03-13 11:08:22 +01:00
|
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
2022-09-05 06:01:14 +02:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2025-03-16 03:19:32 +01:00
|
|
|
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
|
|
|
|
|
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
|
2025-08-12 05:16:52 +02:00
|
|
|
github.com/oklog/run v1.1.0 // indirect
|
2024-11-23 09:17:19 +01:00
|
|
|
github.com/onsi/ginkgo v1.16.4 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2023-05-11 00:28:02 +02:00
|
|
|
github.com/opencontainers/image-spec v1.0.2 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
|
2024-07-13 15:55:13 +02:00
|
|
|
github.com/perimeterx/marshmallow v1.1.5 // indirect
|
2025-08-21 16:17:11 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
2025-08-01 04:27:00 +02:00
|
|
|
github.com/prometheus/client_model v0.6.2 // indirect
|
2025-09-07 03:00:46 +02:00
|
|
|
github.com/prometheus/common v0.66.1 // indirect
|
2025-08-01 04:27:00 +02:00
|
|
|
github.com/prometheus/procfs v0.16.1 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/quic-go/qpack v0.5.1 // indirect
|
|
|
|
|
github.com/quic-go/quic-go v0.54.0 // indirect
|
2024-07-07 01:44:19 -07:00
|
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2024-07-23 20:41:37 +02:00
|
|
|
github.com/segmentio/asm v1.2.0 // indirect
|
2023-12-23 01:33:00 +01:00
|
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
2024-03-15 11:14:39 +01:00
|
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/syndtr/goleveldb v1.0.0 // indirect
|
2023-03-21 01:48:15 +02:00
|
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
github.com/ugorji/go/codec v1.3.0 // indirect
|
2024-11-23 09:17:19 +01:00
|
|
|
github.com/urfave/cli/v2 v2.3.0 // indirect
|
2025-08-26 03:10:21 +02:00
|
|
|
github.com/woodsbury/decimal128 v1.3.0 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2023-12-23 01:33:00 +01:00
|
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
2025-04-17 05:36:02 +02:00
|
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
2025-03-05 03:31:48 +01:00
|
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
2024-11-23 09:17:19 +01:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
|
2025-08-20 04:06:46 +02:00
|
|
|
go.opentelemetry.io/otel v1.37.0 // indirect
|
2024-07-25 00:43:21 +02:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.28.0 // indirect
|
2025-08-20 04:06:46 +02:00
|
|
|
go.opentelemetry.io/otel/metric v1.37.0 // indirect
|
|
|
|
|
go.opentelemetry.io/otel/trace v1.37.0 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
go.uber.org/mock v0.6.0 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
go.yaml.in/yaml/v2 v2.4.2 // indirect
|
|
|
|
|
go.yaml.in/yaml/v3 v3.0.4 // indirect
|
2025-09-21 03:32:43 +02:00
|
|
|
golang.org/x/arch v0.20.0 // indirect
|
2025-09-19 03:48:39 +02:00
|
|
|
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
|
2025-09-09 03:03:06 +02:00
|
|
|
golang.org/x/mod v0.27.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.36.0 // indirect
|
2025-07-03 18:47:20 +03:00
|
|
|
golang.org/x/time v0.12.0 // indirect
|
2025-09-09 03:03:06 +02:00
|
|
|
golang.org/x/tools v0.36.0 // indirect
|
2025-08-20 04:06:46 +02:00
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
|
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
|
2024-12-12 16:40:36 +01:00
|
|
|
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
2022-09-05 06:01:14 +02:00
|
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
2023-05-11 00:28:02 +02:00
|
|
|
gotest.tools/v3 v3.4.0 // indirect
|
2024-08-26 12:50:04 +02:00
|
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
|
|
|
|
|
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
|
|
|
|
|
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
|
2025-04-25 15:55:30 +03:00
|
|
|
sigs.k8s.io/randfill v1.0.0 // indirect
|
2025-08-28 11:45:38 +02:00
|
|
|
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
|
|
|
|
|
sigs.k8s.io/yaml v1.6.0 // indirect
|
2022-06-17 01:57:02 +02:00
|
|
|
)
|