-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1790 from BladeRunnerJS/1.7.0-release-notes
adding release notes for 1.7.0
- Loading branch information
Showing
4 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"milestone": "1.7.0", | ||
"name": "BladeRunnerJS 1.7.0", | ||
"prerelease": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## BladeRunnerJS @tagVersion@ | ||
|
||
BladeRunnerJS @tagVersion@ contains enhancements and minor bug fixes. | ||
|
||
### Bug Fixes | ||
|
||
- `br.parsing.LocalisedAmountParser` has been updated to use BigNumber to fix rounding errors when parsing some values. | ||
- `br.util.Observable` now uses typeof in place of intanceof to avoid errors when using some classes used by downstream projects. | ||
|
||
### Enhancements | ||
|
||
- The version of Jetty packaged with BRJS has been upgraded to 9.4.6. This version contains a fix to an issue which caused bad requires to throw ServletExceptions in the browser when using our dev server. | ||
- `br.presenter.testing.PresentationModelFixture` now has `setPMMappings` method to support editing Presenter Mappings in acceptance tests. | ||
- The version of Selenium packaged with BRJS has been upgraded to 3.4.0. | ||
|
||
### Backwards Compatability | ||
|
||
- Changes to `br.util.Observable` will mean that any observers which are primitives instantiated using `new` (e.g. new String) will fail the type check. |