From 5f6262c36fc7682f8d21e77c86656355dbba784b Mon Sep 17 00:00:00 2001 From: Steve Calvert Date: Thu, 16 Apr 2020 13:29:47 -0700 Subject: [PATCH] Release 0.0.7 --- CHANGELOG.md | 38 +++++++++++++++++++++++ packages/cli/package.json | 10 +++--- packages/core/package.json | 2 +- packages/plugin-ember-octane/package.json | 4 +-- packages/plugin-ember/package.json | 6 ++-- packages/test-helpers/package.json | 4 +-- 6 files changed, 51 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdfee018..48d62064d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,41 @@ +## v0.0.7 (2020-04-16) + +#### :rocket: Enhancement +* [#246](https://github.com/checkupjs/checkup/pull/246) Using volta to pin node && yarn versions ([@carakessler](https://github.com/carakessler)) + +#### :bug: Bug Fix +* `cli` + * [#247](https://github.com/checkupjs/checkup/pull/247) Fixing `task` flag ([@scalvert](https://github.com/scalvert)) + +#### :memo: Documentation +* [#252](https://github.com/checkupjs/checkup/pull/252) Adding badges to top-level readme ([@scalvert](https://github.com/scalvert)) + +#### :house: Internal +* `cli`, `core`, `plugin-ember-octane`, `plugin-ember`, `test-helpers` + * [#262](https://github.com/checkupjs/checkup/pull/262) Refactoring build to utilize typescript project references ([@scalvert](https://github.com/scalvert)) +* `cli` + * [#257](https://github.com/checkupjs/checkup/pull/257) Modifying reporter results to use pdf hook ([@carakessler](https://github.com/carakessler)) + * [#222](https://github.com/checkupjs/checkup/pull/222) Implementing numerical-card ([@carakessler](https://github.com/carakessler)) +* `cli`, `core`, `plugin-ember-octane`, `plugin-ember` + * [#221](https://github.com/checkupjs/checkup/pull/221) Removing `undefined` from `ReportResultData`, and adding mock results to all existing tasks ([@carakessler](https://github.com/carakessler)) +* `cli`, `core`, `test-helpers` + * [#256](https://github.com/checkupjs/checkup/pull/256) Updating task ordering to sort by category then priority ([@scalvert](https://github.com/scalvert)) +* `cli`, `core`, `parser-eslint`, `plugin-ember-octane` + * [#251](https://github.com/checkupjs/checkup/pull/251) Extracting parsers to @checkup/core package ([@scalvert](https://github.com/scalvert)) +* Other + * [#250](https://github.com/checkupjs/checkup/pull/250) Use volta-cli/action for CI ([@rwjblue](https://github.com/rwjblue)) +* `cli`, `core`, `parser-eslint`, `plugin-ember-octane`, `test-helpers` + * [#245](https://github.com/checkupjs/checkup/pull/245) Adding --no-cache for jest tests to address test caching issues ([@scalvert](https://github.com/scalvert)) +* `cli`, `core` + * [#237](https://github.com/checkupjs/checkup/pull/237) Implementing table ([@carakessler](https://github.com/carakessler)) + +#### Committers: 4 +- Robert Jackson ([@rwjblue](https://github.com/rwjblue)) +- Steve Calvert ([@scalvert](https://github.com/scalvert)) +- [@carakessler](https://github.com/carakessler) +- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) + + ## v0.0.6 (2020-04-07) #### :memo: Documentation diff --git a/packages/cli/package.json b/packages/cli/package.json index 0fb9f0521..4d448b819 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@checkup/cli", "description": "A CLI that provides health check information about your project.", - "version": "0.0.6", + "version": "0.0.7", "author": "Steve Calvert ", "bin": { "checkup": "./bin/run" @@ -10,9 +10,9 @@ "dependencies": { "@babel/traverse": "^7.9.5", "@babel/types": "7.9.5", - "@checkup/core": "0.0.6", - "@checkup/plugin-ember": "0.0.6", - "@checkup/plugin-ember-octane": "0.0.6", + "@checkup/core": "0.0.7", + "@checkup/plugin-ember": "0.0.7", + "@checkup/plugin-ember-octane": "0.0.7", "@oclif/command": "^1", "@oclif/config": "^1", "@oclif/plugin-help": "^2", @@ -34,7 +34,7 @@ "yeoman-generator": "^4.8.0" }, "devDependencies": { - "@checkup/test-helpers": "0.0.6", + "@checkup/test-helpers": "0.0.7", "@oclif/dev-cli": "^1", "@oclif/test": "^1", "@types/yeoman-environment": "^2.3.3", diff --git a/packages/core/package.json b/packages/core/package.json index ea33029ce..43ea0c7d0 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@checkup/core", "description": "Checkup's core library", - "version": "0.0.6", + "version": "0.0.7", "author": "Steve Calvert ", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { diff --git a/packages/plugin-ember-octane/package.json b/packages/plugin-ember-octane/package.json index 590e53b81..3f9a2ff62 100644 --- a/packages/plugin-ember-octane/package.json +++ b/packages/plugin-ember-octane/package.json @@ -1,11 +1,11 @@ { "name": "@checkup/plugin-ember-octane", "description": "An oclif plugin for Ember Octane migration tasks", - "version": "0.0.6", + "version": "0.0.7", "author": "Lewis Miller @lbdm44", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "0.0.6", + "@checkup/core": "0.0.7", "@oclif/command": "^1", "@oclif/config": "^1", "babel-eslint": "^10.1.0", diff --git a/packages/plugin-ember/package.json b/packages/plugin-ember/package.json index 9bdc8775c..b1e77b6cd 100644 --- a/packages/plugin-ember/package.json +++ b/packages/plugin-ember/package.json @@ -1,17 +1,17 @@ { "name": "@checkup/plugin-ember", "description": "An oclif plugin for Ember project tasks", - "version": "0.0.6", + "version": "0.0.7", "author": "Steve Calvert @scalvert", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "0.0.6", + "@checkup/core": "0.0.7", "@oclif/command": "^1", "@oclif/config": "^1", "tslib": "^1" }, "devDependencies": { - "@checkup/test-helpers": "0.0.6", + "@checkup/test-helpers": "0.0.7", "@oclif/dev-cli": "^1", "fixturify-project": "^2.1.0", "rimraf": "^3.0.2" diff --git a/packages/test-helpers/package.json b/packages/test-helpers/package.json index ea0d7af1f..355102a85 100644 --- a/packages/test-helpers/package.json +++ b/packages/test-helpers/package.json @@ -1,11 +1,11 @@ { "name": "@checkup/test-helpers", "description": "Checkup's test helper library", - "version": "0.0.6", + "version": "0.0.7", "author": "Steve Calvert ", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "0.0.6", + "@checkup/core": "0.0.7", "fixturify-project": "^2.1.0", "handlebars": "^4.7.6", "stdout-stderr": "^0.1.13",