Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Aug 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 28, 2024

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

Compare Source

Bug Fixes

v2.13.0

Compare Source

Features
Bug Fixes

v2.12.0

Compare Source

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.

Upgrading
Server Type Included Traffic

If you were using the field hcloud.ServerType.IncludedTraffic, you can now get the information through hcloud.ServerType.Pricings:

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:

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) (6205076)
  • add new WithPollOpts client option (#​493) (2c1a2d6)
  • allow checking multiple errors codes in IsError (#​491) (af59ab8)
  • load-balancer-type: new traffic price fields (94e0f44)
  • pricing: mark traffic field as deprecated (94e0f44)
  • server-type: mark included traffic field as deprecated (94e0f44)
  • server-type: new traffic price fields (94e0f44)

v2.11.0

Compare Source

Features
Bug Fixes
linode/linodego (github.com/linode/linodego)

v1.39.0

Compare Source

What's Changed

📋 New Project
💡 Improvements
🧪 Testing Improvements
📦 Dependency Updates

New Contributors

Full Changelog: linode/linodego@v1.38.0...v1.39.0

v1.38.0

Compare Source

What's Changed

⚠️ Breaking Change
🐛 Bug Fixes
🚀 New Features
Linode Disk Encryption
💡 Improvements
🧪 Testing Improvements
⚙️ Repo/CI Improvements
📖 Documentation

New Contributors

Full Changelog: linode/linodego@v1.37.0...v1.38.0

v1.37.0

Compare Source

What's Changed

🚀 New Features
📦 Dependency Updates

Full Changelog: linode/linodego@v1.36.2...v1.37.0

v1.36.2

Compare Source

What's Changed

💡 Improvements
🧪 Testing Improvements

Full Changelog: linode/linodego@v1.36.1...v1.36.2

urfave/cli (github.com/urfave/cli/v2)

v2.27.4

Compare Source

What's Changed

Full Changelog: urfave/cli@v2.27.3...v2.27.4

v2.27.3

Compare Source

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.2...v2.27.3

golang/go (go)

v1.23.0

v1.22.6

woodpecker-ci/woodpecker (go.woodpecker-ci.org/woodpecker/v2)

v2.7.0: 2.7.0

Compare Source

2.7.0 - 2024-07-18

❤️ Thanks to all contributors! ❤️

@​6543, @​anbraten, @​dvjn, @​hhamalai, @​lafriks, @​pat-s, @​qwerty287, @​smainz, @​tongjicoder, @​zc-devs

❤️ Special thanks the security researchers and those who fixed them ❤️
  • Daniel Kilimnik @​D_K_Dev (Neodyme AG) reporting the bugs and orchestrating the communication
  • Felipe Custodio Romero @​localo (Neodyme AG) finding the bugs
  • @​6543 fixing the bugs and orchestrating the communication
🔒 Security
  • Add blocklist of environment variables who could alter execution of plugins [#​3934]
  • Make sure plugins only mount the workspace base in a predefinde location [#​3933]
  • Disallow to set arbitrary environments for plugins [#​3909]
  • Use proper oauth state [#​3847]
  • Enhance token checking [#​3842]
  • Bump github.com/hashicorp/go-retryablehttp v0.7.5 -> v0.7.7 [#​3834]
✨ Features
📈 Enhancement
  • Cli fix pipeline logs [#​3913]
  • Migrate to github.com/urfave/cli/v3 [#​2951]
  • Allow to change the working directory also for plugins and services [#​3914]
  • Remove unplugin-icons [#​3809]
  • Release windows binaries as zip file [#​3906]
  • Convert to openapi 3.0 [#​3897]
  • Add user registries UI [#​3888]
  • Sort users by login [#​3891]
  • Exclude dummy backend in production [#​3877]
  • Fix deploy task env [#​3878]
  • Get default branch and show message in pipeline list [#​3867]
  • Add timestamp for last work done by agent [#​3844]
  • Adjust logger types [#​3859]
  • Cleanup state reporting [#​3850]
  • Unify DB tables/columns [#​3806]
  • Let webhook pass on pipeline parsing error [#​3829]
  • Exclude mocks from release build [#​3831]
  • K8s secrets reference from step [#​3655]
🐛 Bug Fixes
  • Handle empty repositories in gitea when listing PRs [#​3925]
  • Update alpine package dep for docker images [#​3917]
  • Don't report error if agent was terminated gracefully [#​3894]
  • Let agents continuously report their health [#​3893]
  • Ignore warnings for cli exec [#​3868]
  • Correct favicon states [#​3832]
  • Cleanup of the login flow and tests [#​3810]
  • Fix newlines in logs [#​3808]
  • Fix authentication error handling [#​3807]
📚 Documentation
  • Streamline docs for new users [#​3803]
  • Add mastodon verification [#​3843]
  • chore(deps): update docs npm deps non-major [#​3837]
  • fix(deps): update docs npm deps non-major [#​3824]
  • Add openSUSE package [#​3800]
  • chore(deps): update docs npm deps non-major [#​3798]
  • Add "Docker Tags" Plugin [#​3796]
  • chore(deps): update dependency marked to v13 [#​3792]
  • chore: fix some comments [#​3788]
Misc
  • chore(deps): update web npm deps non-major [#​3930]
  • chore(deps): update dependency vitest to v2 [#​3905]
  • fix(deps): update module github.com/google/go-github/v62 to v63 [#​3910]
  • chore(deps): update docker.io/woodpeckerci/plugin-docker-buildx docker tag to v4.1.0 [#​3908]
  • Update plugin-git and add renovate trigger [#​3901]
  • chore(deps): update docker.io/mstruebing/editorconfig-checker docker tag to v3.0.3 [#​3903]
  • fix(deps): update golang-packages [#​3875]
  • chore(deps): lock file maintenance [#​3876]
  • [pre-commit.ci] pre-commit autoupdate [#​3862]
  • Add dummy backend [#​3820]
  • chore(deps): update dependency replace-in-file to v8 [#​3852]
  • Update forgejo sdk [#​3840]
  • chore(deps): lock file maintenance [#​3838]
  • Allow to set dist dir using env var [#​3814]
  • chore(deps): lock file maintenance [#​3805]
  • chore(deps): update docker.io/lycheeverse/lychee docker tag to v0.15.1 [#​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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot enabled auto-merge (squash) July 28, 2024 00:57
@renovate renovate bot force-pushed the renovate/golang-deps-non-major branch 4 times, most recently from 7084625 to e5131a1 Compare August 6, 2024 19:18
Copy link
Contributor Author

renovate bot commented Aug 6, 2024

ℹ 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):

  • 2 additional dependencies were updated

Details:

Package Change
golang.org/x/sys v0.22.0 -> v0.23.0
golang.org/x/text v0.16.0 -> v0.17.0

@renovate renovate bot force-pushed the renovate/golang-deps-non-major branch 4 times, most recently from c70f4fc to 339a09a Compare August 13, 2024 16:34
@renovate renovate bot force-pushed the renovate/golang-deps-non-major branch from 339a09a to c43e704 Compare August 23, 2024 00:38
@renovate renovate bot merged commit 52ad761 into main Aug 23, 2024
3 of 5 checks passed
@renovate renovate bot deleted the renovate/golang-deps-non-major branch August 23, 2024 00:45
@woodpecker-bot woodpecker-bot mentioned this pull request Aug 26, 2024
1 task
@woodpecker-bot
Copy link
Contributor

🎉 This PR is included in version 0.3.0 🎉

The release is now available here

Thank you for your contribution. ❤️📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant