Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .secrets.baseline

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The `set-version.sh` script allows you to set the version of the Galasa througho

Use the `--help` flag to see what options are supported.

Basic usage: `set-version.sh --version 1.1.0`
Basic usage: `set-version.sh --version 1.1.1`


## Using vscode
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# This file is used to source the version of artifacts created by the github build workflows.
# It gets maintained by the set-version.sh script, so don't change it manually without using that script.
GALASA_VERSION=1.1.0
GALASA_VERSION=1.1.1
2 changes: 1 addition & 1 deletion docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
// into the code, so the code knows what versions of galasa it should be
// dealing with. Do not mess with the `def {variableName}` part of the following
// lines, only change the versions we rely upon.
version="1.1.0"
version="1.1.1"

repositories {
gradlePluginPortal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Choose your installation method:
brew install galasactl
```

Or install a specific version (e.g., 1.1.0):
Or install a specific version (e.g., 1.1.1):
```bash
brew install galasactl@1.1.0`
brew install galasactl@1.1.1`
```

3. Check available versions:
Expand Down Expand Up @@ -96,7 +96,7 @@ Choose your installation method:

4. Install a specific version:
```powershell
scoop install galasactl@1.1.0`
scoop install galasactl@1.1.1`
```

5. Verify the installation:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Gradle projects have a different structure than Maven projects:
plugins {
id 'java'
id 'maven-publish'
id 'dev.galasa.tests' version '1.1.0'
id 'dev.galasa.tests' version '1.1.1'
id 'biz.aQute.bnd.builder' version '6.4.0'
}

Expand All @@ -150,7 +150,7 @@ Gradle projects have a different structure than Maven projects:
version = '0.0.1-SNAPSHOT'

dependencies {
implementation platform('dev.galasa:galasa-bom:1.1.0')
implementation platform('dev.galasa:galasa-bom:1.1.1')

implementation 'dev.galasa:dev.galasa'
implementation 'dev.galasa:dev.galasa.framework'
Expand Down Expand Up @@ -199,8 +199,8 @@ Gradle projects have a different structure than Maven projects:
plugins {
id 'base'
id 'maven-publish'
id 'dev.galasa.obr' version '1.1.0'
id 'dev.galasa.testcatalog' version '1.1.0'
id 'dev.galasa.obr' version '1.1.1'
id 'dev.galasa.testcatalog' version '1.1.1'
}

group = 'dev.galasa.example.banking'
Expand Down
1 change: 1 addition & 0 deletions docs/content/docs/ecosystem/ecosystem-installing-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ The following table shows the minimum and maximum Kubernetes versions supported

| **Galasa Version** | **Minimum Kubernetes Version** | **Maximum Kubernetes Version** |
|--------|------|------|
| 1.1.1 | 1.28 | 1.36 |
| 1.1.0 | 1.28 | 1.36 |
| 1.0.1 | 1.28 | 1.36 |
| 1.0.0 | 1.28 | 1.36 |
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 [Galasa simplatform repository](https://github.com/galasa-dev/simplatform){target="_blank"} 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 [Launching the SimBank application](../running-simbank-tests/simbank-cli.md) 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 `1.1.0` and Galasa uber OBR version `1.1.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 `1.1.1` and Galasa uber OBR version `1.1.1`.

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 Expand Up @@ -87,15 +87,15 @@ Remember to initialise your local environment by running the `galasactl local in

```shell
galasactl runs submit local --log - \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr \
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT
```

=== "Windows (Powershell)"

```powershell
galasactl runs submit local --log - `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr `
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT
```

Expand All @@ -115,15 +115,15 @@ To run other SimBank tests, for example `BasicAccountCreditTest`, replace the te

```shell
galasactl runs submit local --log - \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr \
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest
```

=== "Windows (Powershell)"

```powershell
galasactl runs submit local --log - `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr `
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest
```

Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/running-simbank-tests/simbank-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To start exploring the Galasa Simbank application and to run the sample SimBank

1. Clone the Galasa `simplatform` repository on your machine by running the following command in a terminal in the directory on your local machine in which you want to clone the repository files:
```
git clone https://github.com/galasa-dev/simplatform.git --branch v1.1.0 --single-branch
git clone https://github.com/galasa-dev/simplatform.git --branch v1.1.1 --single-branch
```
1. Run the `./build-locally.sh` script to build the code.
1. Run the `./run-locally.sh --server` script to start the simbank server inside a local JVM.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Complete the following steps to build a Docker image called `simbank-webapp` to

1. If you have not done so already, clone the Galasa `simplatform` repository on your machine by running the following command in the directory on your local machine in which you want to clone the repository files:
```
git clone https://github.com/galasa-dev/simplatform.git --branch v1.1.0 --single-branch
git clone https://github.com/galasa-dev/simplatform.git --branch v1.1.1 --single-branch
```
2. Build the image and test that the container is working correctly by running the following commands. For the commands to work, the terminal must be running in the same directory as the one that contains the Dockerfile. The Dockerfile is located in the [galasa-simplatform-webapp directory](https://github.com/galasa-dev/simplatform/tree/main/galasa-simplatform-application/galasa-simplatform-webapp) in the Galasa `simplatform` repository.
```
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

## Running the SimBank IVT test class by using the CLI

The SimBank tests are located in the `maven` directory of the `isolated.zip` downloadable file. Complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `1.1.0`.
The SimBank tests are located in the `maven` directory of the `isolated.zip` downloadable file. Complete the following steps to run the SimBankIVT test that is provided with Galasa. The following example uses SimBank OBR version `1.1.1`.

Remember to initialise your local environment by running the `galasactl local init` command and to start the SimPlatform server by running the `run-simplatform.sh` script, as described in the [Launching the SimBank application offline](./simbank-cli-offline.md) documentation.

Expand All @@ -62,7 +62,7 @@ You are now ready to run a local Galasa test offline with just the contents of t

```shell
galasactl runs submit local --log - \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr \
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT \
--localMaven file:////Users/youruserid/Downloads/isolated/maven
```
Expand All @@ -71,7 +71,7 @@ You are now ready to run a local Galasa test offline with just the contents of t

```powershell
galasactl runs submit local --log - `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr `
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.SimBankIVT `
--localMaven file:////Users/youruserid/Downloads/isolated/maven
```
Expand All @@ -87,7 +87,7 @@ To run other SimBank tests, for example `BasicAccountCreditTest`, replace the te

```shell
galasactl runs submit local --log - \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr \
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr \
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest \
--localMaven file:////Users/youruserid/Downloads/isolated/maven
```
Expand All @@ -96,7 +96,7 @@ To run other SimBank tests, for example `BasicAccountCreditTest`, replace the te

```powershell
galasactl runs submit local --log - `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.0/obr `
--obr mvn:dev.galasa/dev.galasa.simbank.obr/1.1.1/obr `
--class dev.galasa.simbank.tests/dev.galasa.simbank.tests.BasicAccountCreditTest `
--localMaven file:////Users/youruserid/Downloads/isolated/maven
```
Expand Down
2 changes: 1 addition & 1 deletion docs/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Allowing you to test applications at scale regardless of platform — including

[Get started](./docs/index.md){ .md-button .md-button--primary }
[Learn more](./about/index.md){ .md-button }
[1.1.0 highlights](./releases/posts/v1.1.0.md){ .md-button }
[1.1.1 highlights](./releases/posts/v1.1.1.md){ .md-button }

</div>

Expand Down
2 changes: 1 addition & 1 deletion modules/buildutils/openapi2beans/JavaChecker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>dev.galasa</groupId>
<artifactId>dev.galasa.platform</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/buildutils/pkg/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var rootCmd = &cobra.Command{
Use: "galasabld",
Short: "Build utilities for Galasa",
Long: "",
Version: "1.1.0",
Version: "1.1.1",
}

func Execute() {
Expand Down
2 changes: 1 addition & 1 deletion modules/cli/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
4 changes: 2 additions & 2 deletions modules/cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
// dealing with. Do not mess with the `def {variableName}` part of the following
// lines, only change the versions we rely upon.

def galasaVersion = '1.1.0'
def galasaVersion = '1.1.1'

repositories {
gradlePluginPortal()
Expand All @@ -36,7 +36,7 @@ def group = "dev.galasa"

dependencies {
// Use dev.galasa.platform to obtain the versions
implementation platform('dev.galasa:dev.galasa.platform:1.1.0')
implementation platform('dev.galasa:dev.galasa.platform:1.1.1')
// We need the galasa-boot jar so we can launch tests in a local JVM
implementation 'dev.galasa:galasa-boot'
// We need the openapi generator to turn a yaml file into go client stubs,
Expand Down
2 changes: 1 addition & 1 deletion modules/cli/docs/generated/galasactl_runs_cleanup_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ galasactl runs cleanup local [flags]
'*' (wildcard) Matches zero or more characters.
'?' matches exactly one character
For example, the pattern '*MyResourceCleanupClass' will match any provider that ends with 'MyResourceCleanupClass' such as 'my.company.resources.MyResourceCleanupClass' and so that provider will not be loaded.
--galasaVersion string the version of galasa you want to use. This should match the version of the galasa obr you built your resource cleanup providers against. (default "1.1.0")
--galasaVersion string the version of galasa you want to use. This should match the version of the galasa obr you built your resource cleanup providers against. (default "1.1.1")
-h, --help Displays the options for the 'runs cleanup local' command.
--includes-pattern strings The glob pattern(s) representing the resource cleanup providers that should be loaded. Supported glob patterns include the following special characters:
'*' (wildcard) Matches zero or more characters.
Expand Down
2 changes: 1 addition & 1 deletion modules/cli/docs/generated/galasactl_runs_prepare_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ galasactl runs prepare local [flags]
### Options

```
--galasaVersion string the version of galasa you want to use to prepare dependencies. This should match the version of the galasa obr you built your test bundles against. (default "1.1.0")
--galasaVersion string the version of galasa you want to use to prepare dependencies. This should match the version of the galasa obr you built your test bundles against. (default "1.1.1")
-h, --help Displays the options for the 'runs prepare local' command.
--localMaven string The url of a local maven repository where galasa bundles will be cached on your local file system. Defaults to your home .m2/repository file. Please note that this should be in a URL form e.g. 'file:///Users/myuserid/.m2/repository', or 'file://C:/Users/myuserid/.m2/repository'
--obr strings The maven coordinates of the obr bundle(s) whose dependencies should be downloaded. The format of this parameter is 'mvn:${TEST_OBR_GROUP_ID}/${TEST_OBR_ARTIFACT_ID}/${TEST_OBR_VERSION}/obr' Multiple instances of this flag can be used to describe multiple obr bundles.
Expand Down
2 changes: 1 addition & 1 deletion modules/cli/docs/generated/galasactl_runs_submit_local.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ galasactl runs submit local [flags]
--debug When set (or true) the debugger pauses on startup and tries to connect to a Java debugger. The connection is established using the --debugMode and --debugPort values.
--debugMode string The mode to use when the --debug option causes the testcase to connect to a Java debugger. Valid values are 'listen' or 'attach'. 'listen' means the testcase JVM will pause on startup, waiting for the Java debugger to connect to the debug port (see the --debugPort option). 'attach' means the testcase JVM will pause on startup, trying to attach to a java debugger which is listening on the debug port. The default value is 'listen' but can be overridden by the 'galasactl.jvm.local.launch.debug.mode' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command.
--debugPort uint32 The port to use when the --debug option causes the testcase to connect to a java debugger. The default value used is 2970 which can be overridden by the 'galasactl.jvm.local.launch.debug.port' property in the bootstrap file, which in turn can be overridden by this explicit parameter on the galasactl command.
--galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "1.1.0")
--galasaVersion string the version of galasa you want to use to run your tests. This should match the version of the galasa obr you built your test bundles against. (default "1.1.1")
--gherkin strings Gherkin feature file URL. Should start with 'file://'.
-h, --help Displays the options for the 'runs submit local' command.
--localMaven string The url of a local maven repository are where galasa bundles can be loaded from on your local file system. Defaults to your home .m2/repository file. Please note that this should be in a URL form e.g. 'file:///Users/myuserid/.m2/repository', or 'file://C:/Users/myuserid/.m2/repository'
Expand Down
6 changes: 3 additions & 3 deletions modules/extensions/galasa-extensions-parent/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'biz.aQute.bnd.builder' version '7.1.0' apply false
id 'dev.galasa.githash' version '1.1.0' apply false
id 'dev.galasa.githash' version '1.1.1' apply false
id 'maven-publish'
id 'signing'
}

allprojects {
group = 'dev.galasa'
version = '1.1.0'
version = '1.1.1'
}

//---------------------------------------------------------------
Expand Down Expand Up @@ -170,7 +170,7 @@ publishing {
name = "Manifest for extensions bundle versions"
artifactId = "dev.galasa.extensions.manifest"
groupId = 'dev.galasa'
version = '1.1.0'
version = '1.1.1'
description = "Conveys bundle version information to OBR builds."
licenses {
license {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

description = 'Galasa RAS - CouchDB'

version = '1.1.0'
version = '1.1.1'

configurations {
implementation.transitive = false
Expand Down
16 changes: 8 additions & 8 deletions modules/extensions/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ framework:


- artifact: dev.galasa.auth.couchdb
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -32,7 +32,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.cps.etcd
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -41,7 +41,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.cps.rest
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -50,7 +50,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.creds.os
version: 1.1.0
version: 1.1.1
obr: true
mvp: true
bom: false
Expand All @@ -59,7 +59,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.events.kafka
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -68,7 +68,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.extensions.common
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -77,7 +77,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.extensions.common.couchdb
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand All @@ -86,7 +86,7 @@ framework:
codecoverage: true

- artifact: dev.galasa.ras.couchdb
version: 1.1.0
version: 1.1.1
obr: true
mvp: false
bom: false
Expand Down
Loading
Loading