Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed May 25, 2021
2 parents eed07b5 + d88f2c2 commit 7008519
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
6 changes: 3 additions & 3 deletions box.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"TestBox",
"version":"4.3.0",
"version":"4.3.1",
"location":"https://downloads.ortussolutions.com/ortussolutions/testbox/@build.version@/[email protected]@.zip",
"author":"Ortus Solutions <[email protected]>",
"slug":"testbox",
Expand Down Expand Up @@ -51,7 +51,7 @@
"start:lucee":"server start [email protected]",
"start:2016":"server start [email protected]",
"start:2018":"server start [email protected]",
"start:2021":"server start [email protected]",
"cfpm":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\" install ${1}' | run"
"start:2021":"server start [email protected]",
"cfpm":"echo '\".engine/adobe2021/WEB-INF/cfusion/bin/cfpm.sh\" install ${1}' | run"
}
}
32 changes: 32 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

----

## [4.3.1] => 2021-MAY-25

### Fixed

- [TESTBOX-310](https://ortussolutions.atlassian.net/browse/TESTBOX-310) acf regression on caluclating length of arrays with len()

----

## [4.3.0] => 2021-MAY-24

### Bugs

- [TESTBOX-299](https://ortussolutions.atlassian.net/browse/TESTBOX-299) Bug in XML-escaping in JUnit reporters
- [TESTBOX-298](https://ortussolutions.atlassian.net/browse/TESTBOX-298) min reporter is making assumptions that url.directory will exist
- [TESTBOX-297](https://ortussolutions.atlassian.net/browse/TESTBOX-297) code coverage QoQ doesn't account for nulls in sum\(\)
- [TESTBOX-287](https://ortussolutions.atlassian.net/browse/TESTBOX-287) Simple Reporter doesn't show the Test that fails but the assertion in the origin

### Improvements

- [TESTBOX-305](https://ortussolutions.atlassian.net/browse/TESTBOX-305) Show the type of the actual pass into instance type expectations
- [TESTBOX-300](https://ortussolutions.atlassian.net/browse/TESTBOX-300) Improvement: shift test summary to the bottom of MinTextReporter
- [TESTBOX-295](https://ortussolutions.atlassian.net/browse/TESTBOX-295) Update the junit and antjunit reports to NOT include supported locales due to the size of the packet

### New Features

- [TESTBOX-309](https://ortussolutions.atlassian.net/browse/TESTBOX-309) Reworked simple reporter to better visualize fail origins and tag contexts.
- [TESTBOX-308](https://ortussolutions.atlassian.net/browse/TESTBOX-308) Simple reporter now has editor integrations to open failure and error stacks in your editor
- [TESTBOX-307](https://ortussolutions.atlassian.net/browse/TESTBOX-307) New text and min text reporters to improve visualizations
- [TESTBOX-306](https://ortussolutions.atlassian.net/browse/TESTBOX-306) Test failures triggered in beforeAll are counted incorrectly

----

## [4.2.1] => 2020-NOV-19

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion system/reports/assets/mintext.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Code Coverage
TestBox: #space( 6 )# v#testbox.getVersion()#
Duration: #space( 5 )# #results.getTotalDuration()# ms
CFML Engine: #space( 2 )# #results.getCFMLEngine()# #results.getCFMLEngineVersion()#
Labels: #space( 7 )# #arrayToList( results.getLabels() )#<cfif !len( results.getLabels() )>None</cfif>
Labels: #space( 7 )# #arrayToList( results.getLabels() )#<cfif !arrayLen( results.getLabels() )>None</cfif>
#space()#

<!--- Legend --->
Expand Down
2 changes: 1 addition & 1 deletion system/reports/assets/text.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Code Coverage
TestBox: #space( 6 )# v#testbox.getVersion()#
Duration: #space( 5 )# #results.getTotalDuration()# ms
CFML Engine: #space( 2 )# #results.getCFMLEngine()# #results.getCFMLEngineVersion()#
Labels: #space( 7 )# #arrayToList( results.getLabels() )#<cfif !len( results.getLabels() )>None</cfif>
Labels: #space( 7 )# #arrayToList( results.getLabels() )#<cfif !arrayLen( results.getLabels() )>None</cfif>
#space()#

<!--- Legend --->
Expand Down

0 comments on commit 7008519

Please sign in to comment.