woodpecker-ci / autoscaler

Scale your woodpecker agents automatically to the moon and back based on the current load.
Apache License 2.0
30 stars 6 forks source link

fix(deps): update golang deps non-major #173

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/hetznercloud/hcloud-go/v2 v2.10.2 -> v2.13.1 age adoption passing confidence require minor
github.com/linode/linodego v1.36.1 -> v1.39.0 age adoption passing confidence require minor
github.com/urfave/cli/v2 v2.27.2 -> v2.27.4 age adoption passing confidence require patch
go (source) 1.22.5 -> 1.23.0 age adoption passing confidence toolchain minor
go.woodpecker-ci.org/woodpecker/v2 v2.6.1-0.20240707084419-fb371479485e -> v2.7.0 age adoption passing confidence require minor
golang.org/x/net v0.27.0 -> v0.28.0 age adoption passing confidence require minor
golang.org/x/oauth2 v0.21.0 -> v0.22.0 age adoption passing confidence require minor

Release Notes

hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2) ### [`v2.13.1`](https://togithub.com/hetznercloud/hcloud-go/releases/tag/v2.13.1) [Compare Source](https://togithub.com/hetznercloud/hcloud-go/compare/v2.13.0...v2.13.1) ##### Bug Fixes - `invalid_input` API errors may not return details ([#​507](https://togithub.com/hetznercloud/hcloud-go/issues/507)) ([ca78af2](https://togithub.com/hetznercloud/hcloud-go/commit/ca78af2af8acd375460c0f9705ea9d62d5ee1cc4)) ### [`v2.13.0`](https://togithub.com/hetznercloud/hcloud-go/releases/tag/v2.13.0) [Compare Source](https://togithub.com/hetznercloud/hcloud-go/compare/v2.12.0...v2.13.0) ##### Features - **network:** add new network zone ap-southeast ([#​501](https://togithub.com/hetznercloud/hcloud-go/issues/501)) ([a79a06b](https://togithub.com/hetznercloud/hcloud-go/commit/a79a06b0dda182e968a7a6e5cef9a4181414f29e)) ##### Bug Fixes - update `NetworkSubnetType` constants ([#​499](https://togithub.com/hetznercloud/hcloud-go/issues/499)) ([ce497fe](https://togithub.com/hetznercloud/hcloud-go/commit/ce497fe89ccd9cccd8dc84ccd854427484fdd031)) ### [`v2.12.0`](https://togithub.com/hetznercloud/hcloud-go/releases/tag/v2.12.0) [Compare Source](https://togithub.com/hetznercloud/hcloud-go/compare/v2.11.0...v2.12.0) ##### API Changes for Traffic Prices and Server Type Included Traffic There will be a breaking change in the API regarding Traffic Prices and Server Type Included Traffic on 2024-08-05. This release marks the affected fields as `Deprecated`. Please check if this affects any of your code and switch to the replacement fields where necessary. You can learn more about this change in [our changelog](https://docs.hetzner.cloud/changelog#2024-07-25-cloud-api-returns-traffic-information-in-different-format). ##### Upgrading ##### Server Type Included Traffic If you were using the field `hcloud.ServerType.IncludedTraffic`, you can now get the information through `hcloud.ServerType.Pricings`: ```go func main() { // previous includedTraffic := serverType.IncludedTraffic // now locationOfInterest := "fsn1" var includedTraffic uint64 for _, price := range serverType.Pricings { if price.Location.Name == locationOfInterest { includedTraffic = price.IncludedTraffic break } } } ``` ##### Traffic Prices If you were using the field `hcloud.Pricing.Traffic`, you can now get the information through `hcloud.Pricing.ServerTypes` or `hcloud.Pricing.LoadBalancerTypes`: ```go func main() { // previous trafficPrice := pricing.Traffic // now serverTypeOfInterest := "cx22" locationOfInterest := "fsn1" var trafficPrice hcloud.Price for _, serverTypePricings := range pricing.ServerTypes { if serverTypePricings.ServerType.Name == serverTypeOfInterest { for _, price := range serverTypePricings { if price.Location.Name == locationOfInterest { trafficPrice = price.PerTBTraffic break } } } } } ``` ##### Features - add jitter in the client default retry exponential backoff ([#​492](https://togithub.com/hetznercloud/hcloud-go/issues/492)) ([6205076](https://togithub.com/hetznercloud/hcloud-go/commit/6205076b89350bdbf08bc6b771a1d1267a3ac422)) - add new `WithPollOpts` client option ([#​493](https://togithub.com/hetznercloud/hcloud-go/issues/493)) ([2c1a2d6](https://togithub.com/hetznercloud/hcloud-go/commit/2c1a2d65596bcbe282ff004c1a9da89950e754df)) - allow checking multiple errors codes in `IsError` ([#​491](https://togithub.com/hetznercloud/hcloud-go/issues/491)) ([af59ab8](https://togithub.com/hetznercloud/hcloud-go/commit/af59ab846665abd735c9717eb2a47c0a8c79776d)) - **load-balancer-type:** new traffic price fields ([94e0f44](https://togithub.com/hetznercloud/hcloud-go/commit/94e0f44d269fdb5138485a6e69dae9105690e4b0)) - **pricing:** mark traffic field as deprecated ([94e0f44](https://togithub.com/hetznercloud/hcloud-go/commit/94e0f44d269fdb5138485a6e69dae9105690e4b0)) - **server-type:** mark included traffic field as deprecated ([94e0f44](https://togithub.com/hetznercloud/hcloud-go/commit/94e0f44d269fdb5138485a6e69dae9105690e4b0)) - **server-type:** new traffic price fields ([94e0f44](https://togithub.com/hetznercloud/hcloud-go/commit/94e0f44d269fdb5138485a6e69dae9105690e4b0)) ### [`v2.11.0`](https://togithub.com/hetznercloud/hcloud-go/releases/tag/v2.11.0) [Compare Source](https://togithub.com/hetznercloud/hcloud-go/compare/v2.10.2...v2.11.0) ##### Features - add truncated exponential backoff with full jitter ([#​459](https://togithub.com/hetznercloud/hcloud-go/issues/459)) ([fd1f46c](https://togithub.com/hetznercloud/hcloud-go/commit/fd1f46cc35e61dde1e524399eef88c38a757636e)) - allow configuring retry options ([#​488](https://togithub.com/hetznercloud/hcloud-go/issues/488)) ([2db9575](https://togithub.com/hetznercloud/hcloud-go/commit/2db95753e2c826aeafa3bd9b864e95efd89ace7f)) - **exp:** add sliceutil package ([#​489](https://togithub.com/hetznercloud/hcloud-go/issues/489)) ([f4ad6bc](https://togithub.com/hetznercloud/hcloud-go/commit/f4ad6bc93ff5017dda1b71a1606b67a79b56eb57)) - **exp:** rename `*utils` package to `*util` ([#​487](https://togithub.com/hetznercloud/hcloud-go/issues/487)) ([19da475](https://togithub.com/hetznercloud/hcloud-go/commit/19da4759f4cbee7ed94ed6996350b45650f8b0b9)) - respect cancelled contexts during retry sleep ([#​470](https://togithub.com/hetznercloud/hcloud-go/issues/470)) ([756f605](https://togithub.com/hetznercloud/hcloud-go/commit/756f605c97ac570adec531a479fc61c1ed27ab72)) - retry requests when the api gateway errors ([#​470](https://togithub.com/hetznercloud/hcloud-go/issues/470)) ([756f605](https://togithub.com/hetznercloud/hcloud-go/commit/756f605c97ac570adec531a479fc61c1ed27ab72)) - retry requests when the network timed out ([#​470](https://togithub.com/hetznercloud/hcloud-go/issues/470)) ([756f605](https://togithub.com/hetznercloud/hcloud-go/commit/756f605c97ac570adec531a479fc61c1ed27ab72)) - retry requests when the rate limit was reached ([#​470](https://togithub.com/hetznercloud/hcloud-go/issues/470)) ([756f605](https://togithub.com/hetznercloud/hcloud-go/commit/756f605c97ac570adec531a479fc61c1ed27ab72)) ##### Bug Fixes - **exp:** set capacity for each batch ([#​490](https://togithub.com/hetznercloud/hcloud-go/issues/490)) ([57f53c1](https://togithub.com/hetznercloud/hcloud-go/commit/57f53c1dca54ee79a33bab35740e7de7ece3b75f))
linode/linodego (github.com/linode/linodego) ### [`v1.39.0`](https://togithub.com/linode/linodego/releases/tag/v1.39.0) [Compare Source](https://togithub.com/linode/linodego/compare/v1.38.0...v1.39.0) #### What's Changed ##### ๐Ÿ“‹ New Project - Project: Images Service Gen2 by [@​yec-akamai](https://togithub.com/yec-akamai) and [@​lgarber-akamai](https://togithub.com/lgarber-akamai) in [https://github.com/linode/linodego/pull/560](https://togithub.com/linode/linodego/pull/560) ##### ๐Ÿ’ก Improvements - Implemented doRequest helper method by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/557](https://togithub.com/linode/linodego/pull/557) - Implemented new logging system by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/562](https://togithub.com/linode/linodego/pull/562) ##### ๐Ÿงช Testing Improvements - Integration test by [@​vshanthe](https://togithub.com/vshanthe) in [https://github.com/linode/linodego/pull/561](https://togithub.com/linode/linodego/pull/561) - Update e2e test script submodule repository by [@​ykim-1](https://togithub.com/ykim-1) in [https://github.com/linode/linodego/pull/559](https://togithub.com/linode/linodego/pull/559) ##### ๐Ÿ“ฆ Dependency Updates - build(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/linode/linodego/pull/565](https://togithub.com/linode/linodego/pull/565) - build(deps): bump golang.org/x/text from 0.16.0 to 0.17.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/linode/linodego/pull/568](https://togithub.com/linode/linodego/pull/568) - build(deps): bump golang.org/x/net from 0.27.0 to 0.28.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/linode/linodego/pull/567](https://togithub.com/linode/linodego/pull/567) #### New Contributors - [@​vshanthe](https://togithub.com/vshanthe) made their first contribution in [https://github.com/linode/linodego/pull/561](https://togithub.com/linode/linodego/pull/561) **Full Changelog**: https://github.com/linode/linodego/compare/v1.38.0...v1.39.0 ### [`v1.38.0`](https://togithub.com/linode/linodego/releases/tag/v1.38.0) [Compare Source](https://togithub.com/linode/linodego/compare/v1.37.0...v1.38.0) #### What's Changed ##### โš ๏ธ Breaking Change - PG affinity_type -> placement_group_type; is_strict -> placement_group_policy by [@​lgarber-akamai](https://togithub.com/lgarber-akamai) in [https://github.com/linode/linodego/pull/546](https://togithub.com/linode/linodego/pull/546) ##### ๐Ÿ› Bug Fixes - Separate plan availability logic from getRegionsWithCaps(...) by [@​lgarber-akamai](https://togithub.com/lgarber-akamai) in [https://github.com/linode/linodego/pull/558](https://togithub.com/linode/linodego/pull/558) ##### ๐Ÿš€ New Features - Add support for LKE NodePool Labels and Taints by [@​mrogers950](https://togithub.com/mrogers950) in [https://github.com/linode/linodego/pull/549](https://togithub.com/linode/linodego/pull/549) - Update getRegionsWithCaps function to also accept a list of plans that must be available in the identified region by [@​ykim-1](https://togithub.com/ykim-1) in [https://github.com/linode/linodego/pull/555](https://togithub.com/linode/linodego/pull/555) ##### Linode Disk Encryption - Linode Disk Encryption Support by [@​avestuk](https://togithub.com/avestuk) in [https://github.com/linode/linodego/pull/503](https://togithub.com/linode/linodego/pull/503) - Linode Disk Encryption by [@​lgarber-akamai](https://togithub.com/lgarber-akamai) in [https://github.com/linode/linodego/pull/541](https://togithub.com/linode/linodego/pull/541) ##### ๐Ÿ’ก Improvements - Migrated nodebalancer_firewalls to object_storage_clusters to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/544](https://togithub.com/linode/linodego/pull/544) - Migrated volumes to vpc_subnet from resty to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/552](https://togithub.com/linode/linodego/pull/552) - Migrated object_storage_keys to profile_logins from resty to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/550](https://togithub.com/linode/linodego/pull/550) - Migrated regions_availability to vlans from resty to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/551](https://togithub.com/linode/linodego/pull/551) - Migrated profile_phone_number to regions from resty to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/547](https://togithub.com/linode/linodego/pull/547) ##### ๐Ÿงช Testing Improvements - Fix LKE node pool tests by [@​zliang-akamai](https://togithub.com/zliang-akamai) in [https://github.com/linode/linodego/pull/556](https://togithub.com/linode/linodego/pull/556) ##### โš™๏ธ Repo/CI Improvements - Add project label by [@​zliang-akamai](https://togithub.com/zliang-akamai) in [https://github.com/linode/linodego/pull/554](https://togithub.com/linode/linodego/pull/554) ##### ๐Ÿ“– Documentation - Update api doc urls to point to new docs by [@​jriddle-linode](https://togithub.com/jriddle-linode) in [https://github.com/linode/linodego/pull/548](https://togithub.com/linode/linodego/pull/548) - Updated README to explicitly mention ListOptions pointer ownership by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/553](https://togithub.com/linode/linodego/pull/553) #### New Contributors - [@​avestuk](https://togithub.com/avestuk) made their first contribution in [https://github.com/linode/linodego/pull/503](https://togithub.com/linode/linodego/pull/503) - [@​mrogers950](https://togithub.com/mrogers950) made their first contribution in [https://github.com/linode/linodego/pull/549](https://togithub.com/linode/linodego/pull/549) **Full Changelog**: https://github.com/linode/linodego/compare/v1.37.0...v1.38.0 ### [`v1.37.0`](https://togithub.com/linode/linodego/releases/tag/v1.37.0) [Compare Source](https://togithub.com/linode/linodego/compare/v1.36.2...v1.37.0) #### What's Changed ##### ๐Ÿš€ New Features - Add Support for Object Storage Region as a Part of MultiCluster Object Storage Project by [@​zliang-akamai](https://togithub.com/zliang-akamai) in [https://github.com/linode/linodego/pull/522](https://togithub.com/linode/linodego/pull/522) ##### ๐Ÿ“ฆ Dependency Updates - build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/linode/linodego/pull/542](https://togithub.com/linode/linodego/pull/542) **Full Changelog**: https://github.com/linode/linodego/compare/v1.36.2...v1.37.0 ### [`v1.36.2`](https://togithub.com/linode/linodego/releases/tag/v1.36.2) [Compare Source](https://togithub.com/linode/linodego/compare/v1.36.1...v1.36.2) #### What's Changed ##### ๐Ÿ’ก Improvements - Restored legacy PagedResponse structs and added deprecation notice by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/539](https://togithub.com/linode/linodego/pull/539) - Added helper to improve readability of pointer literals by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/535](https://togithub.com/linode/linodego/pull/535) - Migrated instance_ips to kernels to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/537](https://togithub.com/linode/linodego/pull/537) - Migrated network_ips to nodebalancer to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/543](https://togithub.com/linode/linodego/pull/543) - Migrated firewall_rules to instance_firewalls to request helpers by [@​ezilber-akamai](https://togithub.com/ezilber-akamai) in [https://github.com/linode/linodego/pull/533](https://togithub.com/linode/linodego/pull/533) ##### ๐Ÿงช Testing Improvements - Added submodule checkout in cross repo test workflow by [@​ykim-1](https://togithub.com/ykim-1) in [https://github.com/linode/linodego/pull/545](https://togithub.com/linode/linodego/pull/545) **Full Changelog**: https://github.com/linode/linodego/compare/v1.36.1...v1.36.2
urfave/cli (github.com/urfave/cli/v2) ### [`v2.27.4`](https://togithub.com/urfave/cli/releases/tag/v2.27.4) [Compare Source](https://togithub.com/urfave/cli/compare/v2.27.3...v2.27.4) #### What's Changed - Fix:(issue\_1962) Fix tests failing on 32 bit architectures by [@​dearchap](https://togithub.com/dearchap) in [https://github.com/urfave/cli/pull/1963](https://togithub.com/urfave/cli/pull/1963) **Full Changelog**: https://github.com/urfave/cli/compare/v2.27.3...v2.27.4 ### [`v2.27.3`](https://togithub.com/urfave/cli/releases/tag/v2.27.3) [Compare Source](https://togithub.com/urfave/cli/compare/v2.27.2...v2.27.3) #### What's Changed - v2 Docs: Mention value from env as default value by [@​sj14](https://togithub.com/sj14) in [https://github.com/urfave/cli/pull/1910](https://togithub.com/urfave/cli/pull/1910) - Bump github.com/xrash/smetrics dependency by [@​elezar](https://togithub.com/elezar) in [https://github.com/urfave/cli/pull/1911](https://togithub.com/urfave/cli/pull/1911) - fix: disable bash completion if double dash is included in arguments (v2) by [@​suzuki-shunsuke](https://togithub.com/suzuki-shunsuke) in [https://github.com/urfave/cli/pull/1938](https://togithub.com/urfave/cli/pull/1938) - Fix improper whitespace formatting in usageTemplate, AppHelpTemplate โ€ฆ by [@​caeret](https://togithub.com/caeret) in [https://github.com/urfave/cli/pull/1947](https://togithub.com/urfave/cli/pull/1947) #### New Contributors - [@​sj14](https://togithub.com/sj14) made their first contribution in [https://github.com/urfave/cli/pull/1910](https://togithub.com/urfave/cli/pull/1910) - [@​elezar](https://togithub.com/elezar) made their first contribution in [https://github.com/urfave/cli/pull/1911](https://togithub.com/urfave/cli/pull/1911) - [@​caeret](https://togithub.com/caeret) made their first contribution in [https://github.com/urfave/cli/pull/1947](https://togithub.com/urfave/cli/pull/1947) **Full Changelog**: https://github.com/urfave/cli/compare/v2.27.2...v2.27.3
golang/go (go) ### [`v1.23.0`](https://togithub.com/golang/go/compare/go1.22.6...go1.23rc1) ### [`v1.22.6`](https://togithub.com/golang/go/compare/go1.22.5...go1.22.6)
woodpecker-ci/woodpecker (go.woodpecker-ci.org/woodpecker/v2) ### [`v2.7.0`](https://togithub.com/woodpecker-ci/woodpecker/releases/tag/v2.7.0): 2.7.0 [Compare Source](https://togithub.com/woodpecker-ci/woodpecker/compare/v2.6.1...v2.7.0) #### [2.7.0](https://togithub.com/woodpecker-ci/woodpecker/releases/tag/v2.7.0) - 2024-07-18 ##### โค๏ธ Thanks to all contributors! โค๏ธ [@​6543](https://togithub.com/6543), [@​anbraten](https://togithub.com/anbraten), [@​dvjn](https://togithub.com/dvjn), [@​hhamalai](https://togithub.com/hhamalai), [@​lafriks](https://togithub.com/lafriks), [@​pat-s](https://togithub.com/pat-s), [@​qwerty287](https://togithub.com/qwerty287), [@​smainz](https://togithub.com/smainz), [@​tongjicoder](https://togithub.com/tongjicoder), [@​zc-devs](https://togithub.com/zc-devs) ##### โค๏ธ Special thanks the security researchers and those who fixed them โค๏ธ - Daniel Kilimnik [@​D_K_Dev](https://x.com/D_K_Dev) (Neodyme AG) *reporting the bugs and orchestrating the communication* - Felipe Custodio Romero [@​*localo*](https://x.com/\_localo\_) (Neodyme AG) *finding the bugs* - [@​6543](https://togithub.com/6543) *fixing the bugs and orchestrating the communication* ##### ๐Ÿ”’ Security - Add blocklist of environment variables who could alter execution of plugins \[[#​3934](https://togithub.com/woodpecker-ci/woodpecker/pull/3934)] - Make sure plugins only mount the workspace base in a predefinde location \[[#​3933](https://togithub.com/woodpecker-ci/woodpecker/pull/3933)] - Disallow to set arbitrary environments for plugins \[[#​3909](https://togithub.com/woodpecker-ci/woodpecker/pull/3909)] - Use proper oauth state \[[#​3847](https://togithub.com/woodpecker-ci/woodpecker/pull/3847)] - Enhance token checking \[[#​3842](https://togithub.com/woodpecker-ci/woodpecker/pull/3842)] - Bump github.com/hashicorp/go-retryablehttp v0.7.5 -> v0.7.7 \[[#​3834](https://togithub.com/woodpecker-ci/woodpecker/pull/3834)] ##### โœจ Features - Gracefully shutdown server \[[#​3896](https://togithub.com/woodpecker-ci/woodpecker/pull/3896)] - Gracefully shutdown agent \[[#​3895](https://togithub.com/woodpecker-ci/woodpecker/pull/3895)] - Convert urls in logs to links \[[#​3904](https://togithub.com/woodpecker-ci/woodpecker/pull/3904)] - Allow login using multiple forges \[[#​3822](https://togithub.com/woodpecker-ci/woodpecker/pull/3822)] - Global and organization registries \[[#​1672](https://togithub.com/woodpecker-ci/woodpecker/pull/1672)] - Cli get repo from git remote \[[#​3830](https://togithub.com/woodpecker-ci/woodpecker/pull/3830)] - Add api for forges \[[#​3733](https://togithub.com/woodpecker-ci/woodpecker/pull/3733)] ##### ๐Ÿ“ˆ Enhancement - Cli fix pipeline logs \[[#​3913](https://togithub.com/woodpecker-ci/woodpecker/pull/3913)] - Migrate to github.com/urfave/cli/v3 \[[#​2951](https://togithub.com/woodpecker-ci/woodpecker/pull/2951)] - Allow to change the working directory also for plugins and services \[[#​3914](https://togithub.com/woodpecker-ci/woodpecker/pull/3914)] - Remove `unplugin-icons` \[[#​3809](https://togithub.com/woodpecker-ci/woodpecker/pull/3809)] - Release windows binaries as zip file \[[#​3906](https://togithub.com/woodpecker-ci/woodpecker/pull/3906)] - Convert to openapi 3.0 \[[#​3897](https://togithub.com/woodpecker-ci/woodpecker/pull/3897)] - Add user registries UI \[[#​3888](https://togithub.com/woodpecker-ci/woodpecker/pull/3888)] - Sort users by login \[[#​3891](https://togithub.com/woodpecker-ci/woodpecker/pull/3891)] - Exclude dummy backend in production \[[#​3877](https://togithub.com/woodpecker-ci/woodpecker/pull/3877)] - Fix deploy task env \[[#​3878](https://togithub.com/woodpecker-ci/woodpecker/pull/3878)] - Get default branch and show message in pipeline list \[[#​3867](https://togithub.com/woodpecker-ci/woodpecker/pull/3867)] - Add timestamp for last work done by agent \[[#​3844](https://togithub.com/woodpecker-ci/woodpecker/pull/3844)] - Adjust logger types \[[#​3859](https://togithub.com/woodpecker-ci/woodpecker/pull/3859)] - Cleanup state reporting \[[#​3850](https://togithub.com/woodpecker-ci/woodpecker/pull/3850)] - Unify DB tables/columns \[[#​3806](https://togithub.com/woodpecker-ci/woodpecker/pull/3806)] - Let webhook pass on pipeline parsing error \[[#​3829](https://togithub.com/woodpecker-ci/woodpecker/pull/3829)] - Exclude mocks from release build \[[#​3831](https://togithub.com/woodpecker-ci/woodpecker/pull/3831)] - K8s secrets reference from step \[[#​3655](https://togithub.com/woodpecker-ci/woodpecker/pull/3655)] ##### ๐Ÿ› Bug Fixes - Handle empty repositories in gitea when listing PRs \[[#​3925](https://togithub.com/woodpecker-ci/woodpecker/pull/3925)] - Update alpine package dep for docker images \[[#​3917](https://togithub.com/woodpecker-ci/woodpecker/pull/3917)] - Don't report error if agent was terminated gracefully \[[#​3894](https://togithub.com/woodpecker-ci/woodpecker/pull/3894)] - Let agents continuously report their health \[[#​3893](https://togithub.com/woodpecker-ci/woodpecker/pull/3893)] - Ignore warnings for cli exec \[[#​3868](https://togithub.com/woodpecker-ci/woodpecker/pull/3868)] - Correct favicon states \[[#​3832](https://togithub.com/woodpecker-ci/woodpecker/pull/3832)] - Cleanup of the login flow and tests \[[#​3810](https://togithub.com/woodpecker-ci/woodpecker/pull/3810)] - Fix newlines in logs \[[#​3808](https://togithub.com/woodpecker-ci/woodpecker/pull/3808)] - Fix authentication error handling \[[#​3807](https://togithub.com/woodpecker-ci/woodpecker/pull/3807)] ##### ๐Ÿ“š Documentation - Streamline docs for new users \[[#​3803](https://togithub.com/woodpecker-ci/woodpecker/pull/3803)] - Add mastodon verification \[[#​3843](https://togithub.com/woodpecker-ci/woodpecker/pull/3843)] - chore(deps): update docs npm deps non-major \[[#​3837](https://togithub.com/woodpecker-ci/woodpecker/pull/3837)] - fix(deps): update docs npm deps non-major \[[#​3824](https://togithub.com/woodpecker-ci/woodpecker/pull/3824)] - Add openSUSE package \[[#​3800](https://togithub.com/woodpecker-ci/woodpecker/pull/3800)] - chore(deps): update docs npm deps non-major \[[#​3798](https://togithub.com/woodpecker-ci/woodpecker/pull/3798)] - Add "Docker Tags" Plugin \[[#​3796](https://togithub.com/woodpecker-ci/woodpecker/pull/3796)] - chore(deps): update dependency marked to v13 \[[#​3792](https://togithub.com/woodpecker-ci/woodpecker/pull/3792)] - chore: fix some comments \[[#​3788](https://togithub.com/woodpecker-ci/woodpecker/pull/3788)] ##### Misc - chore(deps): update web npm deps non-major \[[#​3930](https://togithub.com/woodpecker-ci/woodpecker/pull/3930)] - chore(deps): update dependency vitest to v2 \[[#​3905](https://togithub.com/woodpecker-ci/woodpecker/pull/3905)] - fix(deps): update module github.com/google/go-github/v62 to v63 \[[#​3910](https://togithub.com/woodpecker-ci/woodpecker/pull/3910)] - chore(deps): update docker.io/woodpeckerci/plugin-docker-buildx docker tag to v4.1.0 \[[#​3908](https://togithub.com/woodpecker-ci/woodpecker/pull/3908)] - Update plugin-git and add renovate trigger \[[#​3901](https://togithub.com/woodpecker-ci/woodpecker/pull/3901)] - chore(deps): update docker.io/mstruebing/editorconfig-checker docker tag to v3.0.3 \[[#​3903](https://togithub.com/woodpecker-ci/woodpecker/pull/3903)] - fix(deps): update golang-packages \[[#​3875](https://togithub.com/woodpecker-ci/woodpecker/pull/3875)] - chore(deps): lock file maintenance \[[#​3876](https://togithub.com/woodpecker-ci/woodpecker/pull/3876)] - \[pre-commit.ci] pre-commit autoupdate \[[#​3862](https://togithub.com/woodpecker-ci/woodpecker/pull/3862)] - Add dummy backend \[[#​3820](https://togithub.com/woodpecker-ci/woodpecker/pull/3820)] - chore(deps): update dependency replace-in-file to v8 \[[#​3852](https://togithub.com/woodpecker-ci/woodpecker/pull/3852)] - Update forgejo sdk \[[#​3840](https://togithub.com/woodpecker-ci/woodpecker/pull/3840)] - chore(deps): lock file maintenance \[[#​3838](https://togithub.com/woodpecker-ci/woodpecker/pull/3838)] - Allow to set dist dir using env var \[[#​3814](https://togithub.com/woodpecker-ci/woodpecker/pull/3814)] - chore(deps): lock file maintenance \[[#​3805](https://togithub.com/woodpecker-ci/woodpecker/pull/3805)] - chore(deps): update docker.io/lycheeverse/lychee docker tag to v0.15.1 \[[#​3797](https://togithub.com/woodpecker-ci/woodpecker/pull/3797)]

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 if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] commented 2 months ago

โ„น Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

Details:

Package Change
golang.org/x/sys v0.22.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0
woodpecker-bot commented 1 month ago

๐ŸŽ‰ This PR is included in version 0.3.0 ๐ŸŽ‰

The release is now available here

Thank you for your contribution. โค๏ธ๐Ÿ“ฆ๐Ÿš€