Skip to content

Commit cb098d3

Browse files
committed
update CHANGELOG and VERSION
- enable tests for iaas
1 parent 432afcb commit cb098d3

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
- `postgresflex`: [v1.3.0](services/postgresflex/CHANGELOG.md#v130)
55
- **Breaking Change:** The attribute type for `PartialUpdateInstancePayload` and `UpdateInstancePayload` changed from `Storage` to `StorageUpdate`.
66
- **Deprecation:** `StorageUpdate`: updating the performance class field is not possible.
7+
- `iaas`: [v1.0.0](services/iaas/CHANGELOG.md#v100)
8+
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.
9+
- **Feature:** Add new methods to manage routing tables: `AddRoutingTableToArea`, `DeleteRoutingTableFromArea`, `GetRoutingTableOfArea`, `ListRoutingTablesOfArea` and `UpdateRoutingTableOfArea`
10+
- **Feature:** Add new methods to manage routes in routing tables: `AddRoutesToRoutingTable`, `DeleteRouteFromRoutingTable`, `GetRouteOfRoutingTable`, `ListRoutesOfRoutingTable` and `UpdateRouteOfRoutingTable`
11+
- **Breaking Change:** Add new method to manage network area regions: `CreateNetworkAreaRegion`, `DeleteNetworkAreaRegion`, `GetNetworkAreaRegion`, `ListNetworkAreaRegions` and `UpdateNetworkAreaRegion`
12+
- **Feature:** Add new wait handler for network area region: `CreateNetworkAreaRegionWaitHandler` and `DeleteRegionalNetworkAreaConfigurationWaitHandler`
13+
- **Deprecated:** Deprecated wait handler and will be removed after April 2026: `CreateNetworkAreaWaitHandler`, `UpdateNetworkAreaWaitHandler` and `DeleteNetworkAreaWaitHandler`
14+
- Migrate iaas examples to the new iaas methods
715

816
## Release (2025-10-13)
917
- `observability`: [v0.15.0](services/observability/CHANGELOG.md#v0150)

scripts/test-go.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ else
4949
for service_dir in ${SERVICES_PATH}/*; do
5050
service=$(basename ${service_dir})
5151

52-
# Our unit test template fails because it doesn't support fields with validations,
53-
# such as the UUID component used by IaaS. We introduce this hardcoded skip until we fix it
54-
if [ "${service}" = "iaas" ] || [ "${service}" = "iaasalpha" ]; then
55-
echo ">> Skipping services/${service}"
56-
continue
57-
fi
58-
5952
test_service ${service}
6053
done
6154
fi

services/iaas/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v1.0.0
2+
- **Breaking Change:** The region is no longer specified within the client configuration. Instead, the region must be passed as a parameter to any region-specific request.
3+
- **Feature:** Add new methods to manage routing tables: `AddRoutingTableToArea`, `DeleteRoutingTableFromArea`, `GetRoutingTableOfArea`, `ListRoutingTablesOfArea`, `UpdateRoutingTableOfArea`
4+
- **Feature:** Add new methods to manage routes in routing tables: `AddRoutesToRoutingTable`, `DeleteRouteFromRoutingTable`, `GetRouteOfRoutingTable`, `ListRoutesOfRoutingTable`, `UpdateRouteOfRoutingTable`
5+
- **Breaking Change:** Add new method to manage network area regions: `CreateNetworkAreaRegion`, `DeleteNetworkAreaRegion`, `GetNetworkAreaRegion`, `ListNetworkAreaRegions`, `UpdateNetworkAreaRegion`
6+
- **Feature:** Add new wait handler for network area region: `CreateNetworkAreaRegionWaitHandler` and `DeleteRegionalNetworkAreaConfigurationWaitHandler`
7+
- **Deprecated:** Deprecated wait handler and will be removed after April 2026: `CreateNetworkAreaWaitHandler`, `UpdateNetworkAreaWaitHandler` and `DeleteNetworkAreaWaitHandler`
8+
- Migrate iaas examples to the new iaas methods
9+
110
## v0.31.0
211
- Add `CreatedAt` and `UpdatedAt` fields to `BaseSecurityGroupRule` struct
312
- Add `Description` field to `CreateNicPayload`, `NIC`, `UpdateNicPayload` structs

services/iaas/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.31.0
1+
v1.0.0

0 commit comments

Comments
 (0)