diff --git a/CHANGELOG.md b/CHANGELOG.md index d826cf0..c3b68bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Change Log This file documents all notable changes to juttle-engine. The release numbering uses [semantic versioning](http://semver.org). +## 0.4.0 +Released 2016-03-10 + +### Minor Changes +- The default root path for juttle program files is now the current working directory [[#75](https://github.com/juttle/juttle-engine/pull/75)] +- Updated juttle-viewer to the [0.3.0 release](https://github.com/juttle/juttle-viewer/releases/tag/v0.3.0). +This includes a total reorg of the app layout. +- Make the top level index.html page served by juttle-engine configurable [[#74](https://github.com/juttle/juttle-engine/pull/74)] +- Minor changes to README to aid in understanding the overall ecosystem [[#64](https://github.com/juttle/juttle-engine/pull/64)] [[#72](https://github.com/juttle/juttle-engine/pull/72)] +- Minor changes to example programs [[#65](https://github.com/juttle/juttle-engine/pull/65)] [[#63](https://github.com/juttle/juttle-engine/pull/63)] [[#70](https://github.com/juttle/juttle-engine/pull/70)] [[#71](https://github.com/juttle/juttle-engine/pull/71)] [[#78](https://github.com/juttle/juttle-engine/pull/78)] +- Added automated tests to verify example programs work with latest released versions of dependent modules and adapters [[#58](https://github.com/juttle/juttle-engine/pull/58)] [[#68](https://github.com/juttle/juttle-engine/pull/68)] [[#76](https://github.com/juttle/juttle-engine/pull/76)] + ## 0.3.0 Released 2016-02-29 diff --git a/package.json b/package.json index 853f2d4..885e03f 100644 --- a/package.json +++ b/package.json @@ -35,17 +35,17 @@ "express": "^4.13.4", "juttle-aws-adapter": "^0.2.0", "juttle-cloudwatch-adapter": "^0.3.0", - "juttle-elastic-adapter": "^0.5.0", + "juttle-elastic-adapter": "^0.6.0", "juttle-gmail-adapter": "^0.5.0", - "juttle-graphite-adapter": "^0.4.2", - "juttle-influx-adapter": "^0.5.0", + "juttle-graphite-adapter": "^0.5.0", + "juttle-influx-adapter": "^0.6.0", "juttle-mysql-adapter": "^0.5.0", "juttle-opentsdb-adapter": "^0.2.0", "juttle-postgres-adapter": "^0.5.0", - "juttle-service": "^0.4.0-rc.0", + "juttle-service": "^0.4.0", "juttle-sqlite-adapter": "^0.5.0", "juttle-twitter-adapter": "^0.3.0", - "juttle-viewer": "^0.2.0", + "juttle-viewer": "^0.3.0", "minimist": "^1.2.0", "open": "^0.0.5", "request-promise": "^2.0.0", diff --git a/test/app/app.spec.js b/test/app/app.spec.js index 06a4df3..fa775c6 100644 --- a/test/app/app.spec.js +++ b/test/app/app.spec.js @@ -51,7 +51,8 @@ describe('app tests', function() { }); }); - it('can open juttle program with an input, fill it out, and run', () => { + // https://github.com/juttle/juttle-engine/issues/83 + it.skip('can open juttle program with an input, fill it out, and run', () => { return juttleEngineTester.run({ path: path.join(__dirname, 'juttle', 'one-input.juttle') })