From b7e15a3345ee603682dfca1e278006a5c84286f9 Mon Sep 17 00:00:00 2001 From: swirlds-automation Date: Thu, 14 Sep 2023 16:17:26 +0000 Subject: [PATCH] chore(release): 0.8.0 [skip ci] ## [0.8.0](https://github.com/hashgraph/full-stack-testing/compare/v0.7.0...v0.8.0) (2023-09-14) ### Features * add hedera node explorer as a conditional sub chart ([#275](https://github.com/hashgraph/full-stack-testing/issues/275)) ([c4eb8d7](https://github.com/hashgraph/full-stack-testing/commit/c4eb8d7a526d0ee1c2cf63db833b96b776ea3968)) * add helm chart tests to check haproxy and envoy proxy deployments ([#319](https://github.com/hashgraph/full-stack-testing/issues/319)) ([08c3f85](https://github.com/hashgraph/full-stack-testing/commit/08c3f852355b1f1423a54c92b10914cbf9e43868)) * add helm chart tests to validate state of sidecars ([#314](https://github.com/hashgraph/full-stack-testing/issues/314)) ([e04de57](https://github.com/hashgraph/full-stack-testing/commit/e04de57e57c13165a15c6d4662ebb6bbe1365f51)) * add optional Gateway API resource definition to expose endpoints ([#280](https://github.com/hashgraph/full-stack-testing/issues/280)) ([9b9effd](https://github.com/hashgraph/full-stack-testing/commit/9b9effd093790694478dd07fd6e7f7866976b743)) * allow pod-monitor-role to have access to secrets ([#309](https://github.com/hashgraph/full-stack-testing/issues/309)) ([75e66c3](https://github.com/hashgraph/full-stack-testing/commit/75e66c33d929bd6827b7d93311f1fb33fabc2a58)) * convert helm client test source set to a module ([#300](https://github.com/hashgraph/full-stack-testing/issues/300)) ([2fcb3c3](https://github.com/hashgraph/full-stack-testing/commit/2fcb3c3cb38f9e3cc15cff02d4558f7c8be77778)) * enable locally building and loading kubectl-bats docker image into the cluster for helm tests ([#310](https://github.com/hashgraph/full-stack-testing/issues/310)) ([230b291](https://github.com/hashgraph/full-stack-testing/commit/230b291a199510fd7a66294ebc321e9951a0ae9d)) * ensure OTel collector is able to export metrics and traces ([#298](https://github.com/hashgraph/full-stack-testing/issues/298)) ([8c24733](https://github.com/hashgraph/full-stack-testing/commit/8c24733469437eea58762c3d967dbc6f84fd181e)) * expose envoy-proxy prometheus metrics endpoint ([#328](https://github.com/hashgraph/full-stack-testing/issues/328)) ([f052481](https://github.com/hashgraph/full-stack-testing/commit/f052481dcf61befbb4953aacd0f8da9fb4d31ba9)) * expose prometheus metrics from HAProxy ([#320](https://github.com/hashgraph/full-stack-testing/issues/320)) ([8d4f51c](https://github.com/hashgraph/full-stack-testing/commit/8d4f51cbfd67a88a546c42c1ca91f76bf19da1da)) * introduces the build-logic project instead of buildSrc ([#327](https://github.com/hashgraph/full-stack-testing/issues/327)) ([aeb4c48](https://github.com/hashgraph/full-stack-testing/commit/aeb4c48debb190edcd5e622d5ed83fab08af576b)) * parameterize gateway port mapping using values file ([#339](https://github.com/hashgraph/full-stack-testing/issues/339)) ([0c16855](https://github.com/hashgraph/full-stack-testing/commit/0c1685569e067eac2f6f64054d5f58b6124e7989)) * support higher number of nodes with consistent gateway port mapping ([#337](https://github.com/hashgraph/full-stack-testing/issues/337)) ([8b44410](https://github.com/hashgraph/full-stack-testing/commit/8b44410aa7882d4dcffe6eb22b39f0d9e95de3fc)) * switch from JPMS module conventions to project level plugin ([#312](https://github.com/hashgraph/full-stack-testing/issues/312)) ([b3a7429](https://github.com/hashgraph/full-stack-testing/commit/b3a7429e19ceeeb7593721ba3e60fb968646a3d5)) * update Open Telemetry configuration to support optional remote write pushing of metrics and log ([#281](https://github.com/hashgraph/full-stack-testing/issues/281)) ([f5aadc5](https://github.com/hashgraph/full-stack-testing/commit/f5aadc520ddf45b1fa4c6527809c4d7b2a47fc69)) ### Bug Fixes * lock the semantic release toolchain to specific known working versions ([#342](https://github.com/hashgraph/full-stack-testing/issues/342)) ([5eb8600](https://github.com/hashgraph/full-stack-testing/commit/5eb8600cdfbcda9c3c068f477f2e55f9bec96d3a)) * resolves the accidental mangling of Helm subchart versions on release ([#285](https://github.com/hashgraph/full-stack-testing/issues/285)) ([4e6a539](https://github.com/hashgraph/full-stack-testing/commit/4e6a5399d0be0bafc7ca96db880e34ba0f2b7e95)) * use 9090 as prometheus port across services for consistency ([#330](https://github.com/hashgraph/full-stack-testing/issues/330)) ([5052945](https://github.com/hashgraph/full-stack-testing/commit/5052945f7e29e11df7fcb6cd6d3898e71e9bef91)) --- charts/hedera-network/Chart.yaml | 4 ++-- gradle.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/hedera-network/Chart.yaml b/charts/hedera-network/Chart.yaml index 9c406e07e..02fb107a1 100644 --- a/charts/hedera-network/Chart.yaml +++ b/charts/hedera-network/Chart.yaml @@ -15,13 +15,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.7.0 +version: 0.8.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.7.0" +appVersion: "0.8.0" # This is range of versions of Kubernetes server that is supported by this chart. kubeVersion: ">=1.25.0" diff --git a/gradle.properties b/gradle.properties index 345f7117d..de4e3de2b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,7 +19,7 @@ end-to-end and full stack tests against the Hedera network software. Designed wi purpose built for the Hedera community and open-source contributors. # Version for all subprojects -version=0.7.0 +version=0.8.0 # Set the default Group ID group=com.hedera.fullstack