Skip to content

Commit

Permalink
Update docs for 0.38.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: James Taylor <[email protected]>
  • Loading branch information
jt-nti committed Dec 5, 2024
1 parent 459c25e commit f1d635c
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ On Mac:
3. Then you have a choice. Either install the latest version fo the `galasactl` tool, or install a specific version.
1. To install the latest version of `galasactl`:
`brew install --no-quarantine galasactl`
2. To install a specific version of `galasactl` (version 0.37.0 for example):
`brew install --no-quarantine galasactl@0.37.0`
2. To install a specific version of `galasactl` (version 0.38.0 for example):
`brew install --no-quarantine galasactl@0.38.0`
Note: You can check to see what versions are available using this:
`brew tap-info galasa-dev/tap --json` and look in the `"cask_tokens"` part of the json file.

Expand Down
6 changes: 3 additions & 3 deletions src/markdown-pages/docs/ecosystem/ecosystem-installing-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,22 +214,22 @@ Once you have successfully installed the Ecosystem, you can then deploy your Gal
## Upgrading the Galasa Ecosystem


Get the latest version of the Ecosystem chart and upgrade the Galasa Ecosystem to use the newer version of Galasa - for example version 0.37.0 - by running the following command:
Get the latest version of the Ecosystem chart and upgrade the Galasa Ecosystem to use the newer version of Galasa - for example version 0.38.0 - by running the following command:

On Mac or Unix:

```console
helm repo update \
helm upgrade <release-name> galasa/ecosystem --reuse-values \
--set galasaVersion=0.37.0 --wait
--set galasaVersion=0.38.0 --wait
```

On Windows (Powershell):

```console
helm repo update `
helm upgrade <release-name> galasa/ecosystem --reuse-values `
--set galasaVersion=0.37.0 --wait
--set galasaVersion=0.38.0 --wait
```

where:<br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ The following are properties used to configure the Galasa Ecosystem Manager.
| Required: | No |
| Default value: | None |
| Valid values: | Valid URL |
| Examples: | <code>galasaecosystem.isolated.mvp.zip=https://github.com/galasa-dev/isolated/releases/download/v0.37.0/galasa-isolated-mvp-0.37.0.zip</code> |
| Examples: | <code>galasaecosystem.isolated.mvp.zip=https://github.com/galasa-dev/isolated/releases/download/v0.38.0/galasa-isolated-mvp-0.38.0.zip</code> |

</details>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ In order to run the Galasa SimBanks tests you need to add some configuration inf

The SimBank tests are held in the <a href="https://github.com/galasa-dev/simplatform" target="_blank"> Galasa simplatform repository</a> in GitHub. To start running the tests you need to clone the repository, if you have not already done so. To find out how to clone the cli repository, follow the instruction in the [Running Galasa SimBank online](../running-simbank-tests/simbank-cli) documentation.

After cloning the repository, complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.25.0` and Galasa uber OBR version `0.37.0`.
After cloning the repository, complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `0.25.0` and Galasa uber OBR version `0.38.0`.

You can find the version of the `dev.galasa.simbank.obr` that you are using by looking in the `pom.xml` file in the `dev.galasa.simbank.obr` folder. The `dev.galasa.uber.obr` is the OBR that contains all the bundles that are needed for Galasa to work including Managers, any required dependencies, the framework, etc. The version of the `dev.galasa.uber.obr` depends on which version of Galasa you have installed.

Expand Down
22 changes: 21 additions & 1 deletion src/markdown-pages/highlights.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,31 @@ We have the following available Slack channels:
Access the Galasa source code in [GitHub](https://github.com/galasa-dev) and open issues in the [project management repository](https://github.com/galasa-dev/projectmanagement).


## 0.37.0 - Release Highlights
## 0.38.0 - Release Highlights

- CLI updates:

- You can get and delete secrets from the credentials store using the `galasactl secrets get` and `galasactl secrets delete` commands.

[Managing Ecosystem encryption keys](./docs/ecosystem/ecosystem-managing-encryption-keys.md) describes how to use `galasactl secrets get` to replace the encryption key being used to encrypt credentials in the Galasa Ecosystem's credentials store.

- Users can now be deleted with the `galasactl users delete` command.

- Web UI updates:

- A new settings page has been added to the web UI to manage access tokens.

- Recent login activity is now available on the profile page.

- This release also includes bug fixes, security updates, and other dependency updates.

<details>
<summary><b>0.37.0 - Release Highlights</b></summary>

- Galasa now supports Java 17.

- You can delete a test run by using the `galasactl runs delete` command. Deleting a test run removes all information about the test run along with any associated artifacts from an ecosystem's RAS.
</details>


<details>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const IndexPage = () => (
Learn more
</Button>
<Button target={"/releases"} flash={true} isPrimary={true}>
0.37.0 highlights
0.38.0 highlights
</Button>
</div>
</div>
Expand Down

0 comments on commit f1d635c

Please sign in to comment.