Skip to content

Commit

Permalink
v5.3.1
Browse files Browse the repository at this point in the history
v5.3.1
  • Loading branch information
lmajano committed Sep 13, 2023
2 parents ae0ddcf + 29d39bd commit eb64312
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
tests:
name: Test Suites
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -49,6 +50,7 @@ jobs:
uses: Ortus-Solutions/setup-commandbox@v2.0.1
with:
version: ${{ matrix.commandbox_version }}
install: testbox-cli

- name: Install Dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"TestBox",
"version":"5.3.0",
"version":"5.3.1",
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/testbox-@build.version@.zip",
"author":"Ortus Solutions <info@ortussolutions.com>",
"slug":"testbox",
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- The variable `thisSuite` isn't defined if the for loop in the try/catch is never reached before the error.
(https://github.com/Ortus-Solutions/TestBox/pull/150)

## [5.3.0] - 2023-08-01

### New Features
Expand Down
2 changes: 1 addition & 1 deletion system/runners/BDDRunner.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ component
e,
arguments.target,
arguments.testResults,
thisSuite
isNull( thisSuite ) ? {} : thisSuite
]
);
}
Expand Down

0 comments on commit eb64312

Please sign in to comment.