diff --git a/CHANGELOG.md b/CHANGELOG.md index 248453da0..52dab3ad5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## [0.9.1](https://github.com/trento-project/trento/tree/0.9.1) (2022-03-11) + +[Full Changelog](https://github.com/trento-project/trento/compare/0.9.0...0.9.1) + +### Fixed + +- Add /usr/sbin to the PATH for the execution [\#858](https://github.com/trento-project/trento/pull/858) (@arbulu89) +- Associate attached database properly when the database name is resolved [\#854](https://github.com/trento-project/trento/pull/854) (@arbulu89) +- Exclude diagnostics service sap systems [\#849](https://github.com/trento-project/trento/pull/849) (@arbulu89) + +### Other Changes + +- Bump github.com/spf13/cobra from 1.3.0 to 1.4.0 [\#859](https://github.com/trento-project/trento/pull/859) (@dependabot[bot]) +- Bump axios from 0.26.0 to 0.26.1 in /web/frontend [\#857](https://github.com/trento-project/trento/pull/857) (@dependabot[bot]) +- Bump css-loader from 6.7.0 to 6.7.1 in /web/frontend [\#856](https://github.com/trento-project/trento/pull/856) (@dependabot[bot]) +- Bump css-loader from 6.6.0 to 6.7.0 in /web/frontend [\#853](https://github.com/trento-project/trento/pull/853) (@dependabot[bot]) +- Bump eslint-plugin-react from 7.29.2 to 7.29.3 in /web/frontend [\#852](https://github.com/trento-project/trento/pull/852) (@dependabot[bot]) +- Bump webpack from 5.69.1 to 5.70.0 in /web/frontend [\#851](https://github.com/trento-project/trento/pull/851) (@dependabot[bot]) +- Bump docker/login-action from 1.14.0 to 1.14.1 [\#848](https://github.com/trento-project/trento/pull/848) (@dependabot[bot]) +- Bump actions/checkout from 2 to 3 [\#847](https://github.com/trento-project/trento/pull/847) (@dependabot[bot]) +- Bump docker/login-action from 1.13.0 to 1.14.0 [\#845](https://github.com/trento-project/trento/pull/845) (@dependabot[bot]) +- Bump actions/setup-python from 2.3.2 to 3 [\#844](https://github.com/trento-project/trento/pull/844) (@dependabot[bot]) +- Bump eslint-plugin-react from 7.28.0 to 7.29.2 in /web/frontend [\#842](https://github.com/trento-project/trento/pull/842) (@dependabot[bot]) +- Bump eslint from 8.9.0 to 8.10.0 in /web/frontend [\#841](https://github.com/trento-project/trento/pull/841) (@dependabot[bot]) + ## [0.9.0](https://github.com/trento-project/trento/tree/0.9.0) (2022-02-25) [Full Changelog](https://github.com/trento-project/trento/compare/0.8.1...0.9.0) diff --git a/hack/helm/trento-dev/Chart.lock b/hack/helm/trento-dev/Chart.lock index 2c7e261a1..7f6c8875c 100644 --- a/hack/helm/trento-dev/Chart.lock +++ b/hack/helm/trento-dev/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: trento-server repository: file://../../../packaging/helm/trento-server - version: 0.4.3 -digest: sha256:c9eb70724904783089fa70a421f98290502fbdce2d442a89b5ab2f55bf80972f -generated: "2022-02-25T10:41:59.698382251+01:00" + version: 0.4.4 +digest: sha256:6fa69fcd648fdd5d81ccc04bf6a380eaa0704926857d597227c41f93b3205807 +generated: "2022-03-11T10:21:30.822605308+01:00" diff --git a/install-agent.sh b/install-agent.sh index 52b20c3bf..c380686f0 100755 --- a/install-agent.sh +++ b/install-agent.sh @@ -48,7 +48,7 @@ ARGUMENT_LIST=( "use-tgz" ) -readonly TRENTO_VERSION=0.9.0 +readonly TRENTO_VERSION=0.9.1 opts=$( getopt \ diff --git a/install-server.sh b/install-server.sh index 8b10bef18..fe9922011 100755 --- a/install-server.sh +++ b/install-server.sh @@ -4,7 +4,7 @@ set -e readonly ARGS=("$@") readonly PROGNAME="./install-server.sh" -TRENTO_VERSION="0.9.0" +TRENTO_VERSION="0.9.1" usage() { cat <<-EOF diff --git a/packaging/helm/trento-server/Chart.yaml b/packaging/helm/trento-server/Chart.yaml index b7ba48626..7c8e8bd1e 100644 --- a/packaging/helm/trento-server/Chart.yaml +++ b/packaging/helm/trento-server/Chart.yaml @@ -1,12 +1,12 @@ -#!BuildTag: trento/trento-server:0.4.3 -#!BuildTag: trento/trento-server:0.4.3-build%RELEASE% +#!BuildTag: trento/trento-server:0.4.4 +#!BuildTag: trento/trento-server:0.4.4-build%RELEASE% apiVersion: v2 name: trento-server description: The trento server chart contains all the components necessary to run a Trento server. type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates -version: 0.4.3 +version: 0.4.4 dependencies: - name: trento-web diff --git a/packaging/helm/trento-server/charts/trento-runner/Chart.yaml b/packaging/helm/trento-server/charts/trento-runner/Chart.yaml index 927ba108b..97efa41fa 100644 --- a/packaging/helm/trento-server/charts/trento-runner/Chart.yaml +++ b/packaging/helm/trento-server/charts/trento-runner/Chart.yaml @@ -15,4 +15,4 @@ 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.3.10 +version: 0.3.11 diff --git a/packaging/helm/trento-server/charts/trento-runner/values.yaml b/packaging/helm/trento-server/charts/trento-runner/values.yaml index 9c3c3957b..ba28de665 100644 --- a/packaging/helm/trento-server/charts/trento-runner/values.yaml +++ b/packaging/helm/trento-server/charts/trento-runner/values.yaml @@ -16,7 +16,7 @@ replicaCount: 1 image: repository: ghcr.io/trento-project/trento-runner pullPolicy: IfNotPresent - tag: "0.9.0" + tag: "0.9.1" imagePullSecrets: [] nameOverride: "" diff --git a/packaging/helm/trento-server/charts/trento-web/Chart.yaml b/packaging/helm/trento-server/charts/trento-web/Chart.yaml index 7b60e26fc..eee8e9550 100644 --- a/packaging/helm/trento-server/charts/trento-web/Chart.yaml +++ b/packaging/helm/trento-server/charts/trento-web/Chart.yaml @@ -15,4 +15,4 @@ 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.4.4 +version: 0.4.5 diff --git a/packaging/helm/trento-server/charts/trento-web/values.yaml b/packaging/helm/trento-server/charts/trento-web/values.yaml index b5080aa52..2584de5b8 100644 --- a/packaging/helm/trento-server/charts/trento-web/values.yaml +++ b/packaging/helm/trento-server/charts/trento-web/values.yaml @@ -25,7 +25,7 @@ replicaCount: 1 image: repository: ghcr.io/trento-project/trento-web pullPolicy: IfNotPresent - tag: "0.9.0" + tag: "0.9.1" imagePullSecrets: [] nameOverride: ""