diff --git a/CHANGELOG.md b/CHANGELOG.md index 8141afbf..b9850526 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ If you are upgrading or migrating from [Zuul](https://github.com/defunctzombie/z ## [Unreleased][unreleased] +## [2.0.0] - 2018-12-29 + +### Changed + +- Update `browserify` from `~13.3.0` to `~16.2.3` ([#233](https://github.com/airtap/airtap/issues/233)) ([**@vweevers**](https://github.com/vweevers)) +- Update `airtap-browsers` devDependency from `0.0.2` to `^0.1.0` ([#233](https://github.com/airtap/airtap/issues/233)) ([**@vweevers**](https://github.com/vweevers)) + ## [1.0.0] - 2018-12-27 ### Changed @@ -255,7 +262,9 @@ First release :seedling:. Forked from [`zuul`](https://github.com/defunctzombie/ - Undocument `--ui` option (we intend to remove it) ([**@vweevers**](https://github.com/vweevers)) - Remove `HISTORY.md` (replaced by `CHANGELOG.md`) ([**@vweevers**](https://github.com/vweevers)) -[unreleased]: https://github.com/airtap/airtap/compare/v1.0.0...HEAD +[unreleased]: https://github.com/airtap/airtap/compare/v2.0.0...HEAD + +[2.0.0]: https://github.com/airtap/airtap/compare/v1.0.0...v2.0.0 [1.0.0]: https://github.com/airtap/airtap/compare/v0.1.0...v1.0.0 diff --git a/UPGRADING.md b/UPGRADING.md index c7f8b061..24ead38f 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -2,6 +2,10 @@ This document describes breaking changes and how to upgrade. For a complete list of changes including minor and patch releases, please refer to the [changelog](CHANGELOG.md). +## 2.0.0 + +Upgraded browserify from `13.x` to `16.x`, which ends support of IE < 11. If you need IE 9-10, either stick with `airtap@1` or follow the workaround described in [#171](https://github.com/airtap/airtap/issues/171). + ## 1.0.0 First stable release. No breaking changes since `0.1.0`. Intended as release line for users needing IE9-10 support; the next major release will only support IE11+ ([#171](https://github.com/airtap/airtap/issues/171)). diff --git a/package.json b/package.json index d5541ac3..189be80b 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "dependencies": { "batch": "~0.6.1", "body-parser": "~1.18.3", - "browserify": "~13.3.0", + "browserify": "~16.2.3", "browserify-istanbul": "~3.0.1", "chalk": "^2.3.1", "commander": "~2.19.0", @@ -40,7 +40,7 @@ "yamljs": "~0.3.0" }, "devDependencies": { - "airtap-browsers": "0.0.2", + "airtap-browsers": "^0.1.0", "cross-env": "~5.2.0", "dependency-check": "^3.0.0", "electron": "^2.0.3",