feat(server,load-balancer): add --ip-range argument to attach-to-network commands#1164
Merged
feat(server,load-balancer): add --ip-range argument to attach-to-network commands#1164
Conversation
Contributor
Author
|
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1164 +/- ##
==========================================
- Coverage 70.33% 69.76% -0.57%
==========================================
Files 245 271 +26
Lines 10772 12302 +1530
==========================================
+ Hits 7576 8582 +1006
- Misses 2509 2913 +404
- Partials 687 807 +120
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
jooola
reviewed
Sep 24, 2025
lukasmetzner
approved these changes
Oct 15, 2025
apricote
pushed a commit
that referenced
this pull request
Oct 21, 2025
### Storage Box API Experimental This release adds support for the [Storage Box API](https://docs.hetzner.cloud/reference/hetzner#storage-boxes). The Storage Box integration will be introduced as an **experimental** feature. This experimental phase is expected to last until **21 November 2025**. During this period, upcoming minor releases of the project may include breaking changes to features related to the Storage Box API. You can find out the current state of this in [#1202](#1202). This release includes all changes from the recent [Storage Box API changelog](https://docs.hetzner.cloud/changelog#2025-10-21-storage-box-api-update) entry. #### Examples ```shell hcloud storage-box create \ --name backups \ --type bx11 \ --location fsn1 \ --password "$PASSWORD" \ --enable-ssh \ --reachable-externally hcloud storage-box enable-snapshot-plan backups \ --max-snapshots 10 \ --minute 0 \ --hour 2 ``` ### Features - **server,load-balancer**: add --ip-range argument to attach-to-network commands (#1164) - add support for Storage Boxes (#1118) ### Bug Fixes - list commands print `null` instead of `[]` in JSON mode (#1191) - outdated JSON output after creating resources (#1194) - formatting of server-type describe output (#1196)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A new
ip_rangeattribute was introduced into the API (Changelog). This PR implements new arguments to allow setting this property when attaching Servers or Load Balancers to a Network.