From 98bd5fd0870ef7e3f928d9c8b8a82032d2b69c26 Mon Sep 17 00:00:00 2001 From: Steve Calvert Date: Fri, 7 Aug 2020 13:06:48 -0700 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 58 +++++++++++++++++++ package.json | 2 +- .../checkup-plugin-ember-octane/package.json | 4 +- packages/checkup-plugin-ember/package.json | 6 +- .../checkup-plugin-javascript/package.json | 6 +- packages/cli/package.json | 6 +- packages/core/package.json | 2 +- packages/test-helpers/package.json | 4 +- 8 files changed, 73 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edeb7575e..0f453af40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,61 @@ +## v0.3.0 (2020-08-07) + +#### :boom: Breaking Change +* `checkup-plugin-ember-octane`, `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core` + * [#612](https://github.com/checkupjs/checkup/pull/612) Removal of meta property in favor of flat properties ([@scalvert](https://github.com/scalvert)) + * [#611](https://github.com/checkupjs/checkup/pull/611) Deleting all TaskResult classes ([@scalvert](https://github.com/scalvert)) + * [#608](https://github.com/checkupjs/checkup/pull/608) First pass at removing toConsole by creating a console reporter ([@scalvert](https://github.com/scalvert)) + * [#569](https://github.com/checkupjs/checkup/pull/569) Converting to new checkup schema format. ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core` + * [#610](https://github.com/checkupjs/checkup/pull/610) Adding actions registration system to decouple from task results ([@scalvert](https://github.com/scalvert)) + * [#588](https://github.com/checkupjs/checkup/pull/588) Convert eslint summary to schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember-octane`, `checkup-plugin-ember` + * [#604](https://github.com/checkupjs/checkup/pull/604) Standardizing task names within plugins for consistency. ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember-octane`, `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core`, `test-helpers` + * [#600](https://github.com/checkupjs/checkup/pull/600) Converting octane-migration-status task to schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core`, `test-helpers` + * [#587](https://github.com/checkupjs/checkup/pull/587) Converting eslint-disable task to schema ([@scalvert](https://github.com/scalvert)) + * [#584](https://github.com/checkupjs/checkup/pull/584) Convert loc to schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `cli`, `core` + * [#586](https://github.com/checkupjs/checkup/pull/586) Converting template-lint-disable task to schema ([@scalvert](https://github.com/scalvert)) + * [#583](https://github.com/checkupjs/checkup/pull/583) Convert ember test types to new schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `checkup-plugin-javascript`, `core` + * [#573](https://github.com/checkupjs/checkup/pull/573) Updating outdated dependencies task to use new schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `core`, `test-helpers` + * [#572](https://github.com/checkupjs/checkup/pull/572) Schema changes based on pairing session ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember`, `checkup-plugin-javascript`, `core`, `test-helpers` + * [#571](https://github.com/checkupjs/checkup/pull/571) Converting ember types task to schema ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember` + * [#570](https://github.com/checkupjs/checkup/pull/570) Converting in-repo task to schema ([@scalvert](https://github.com/scalvert)) +* Other + * [#559](https://github.com/checkupjs/checkup/pull/559) Adds result schema and corresponding types ([@scalvert](https://github.com/scalvert)) + +#### :rocket: Enhancement +* `cli` + * [#607](https://github.com/checkupjs/checkup/pull/607) Add linting to plugins generated by plugin generator ([@scalvert](https://github.com/scalvert)) +* `cli`, `core`, `test-helpers` + * [#605](https://github.com/checkupjs/checkup/pull/605) Adding `--listTasks` flag to list all available tasks to run ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-javascript`, `core` + * [#602](https://github.com/checkupjs/checkup/pull/602) Updates eslint-summary output ([@scalvert](https://github.com/scalvert)) + +#### :house: Internal +* `checkup-plugin-ember-octane`, `checkup-plugin-ember` + * [#606](https://github.com/checkupjs/checkup/pull/606) Cleanup of task name standardization ([@scalvert](https://github.com/scalvert)) +* `checkup-plugin-ember-octane`, `checkup-plugin-ember`, `checkup-plugin-javascript`, `cli`, `core`, `test-helpers` + * [#585](https://github.com/checkupjs/checkup/pull/585) Remove unneeded dependencies ([@scalvert](https://github.com/scalvert)) +* `cli`, `core` + * [#560](https://github.com/checkupjs/checkup/pull/560) Consolidate meta tasks ([@scalvert](https://github.com/scalvert)) + +#### :bar_chart: Checkup Task +* `checkup-plugin-javascript`, `core` + * [#602](https://github.com/checkupjs/checkup/pull/602) Updates eslint-summary output ([@scalvert](https://github.com/scalvert)) + +#### Committers: 3 +- Steve Calvert ([@scalvert](https://github.com/scalvert)) +- [@carakessler](https://github.com/carakessler) +- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) + + ## v0.2.3 (2020-07-16) #### :rocket: Enhancement diff --git a/package.json b/package.json index e69c89d79..233ee8887 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "checkup", - "version": "0.2.3", + "version": "0.3.0", "private": true, "repository": "https://github.com/checkupjs/checkup.git", "license": "MIT", diff --git a/packages/checkup-plugin-ember-octane/package.json b/packages/checkup-plugin-ember-octane/package.json index efc91d213..4dc56f119 100644 --- a/packages/checkup-plugin-ember-octane/package.json +++ b/packages/checkup-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.2.3", + "version": "0.3.0", "author": "Lewis Miller @lbdm44", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "^0.2.3", + "@checkup/core": "^0.3.0", "@oclif/command": "^1", "@oclif/config": "^1", "babel-eslint": "^10.1.0", diff --git a/packages/checkup-plugin-ember/package.json b/packages/checkup-plugin-ember/package.json index 18da11306..db9666cff 100644 --- a/packages/checkup-plugin-ember/package.json +++ b/packages/checkup-plugin-ember/package.json @@ -1,18 +1,18 @@ { "name": "checkup-plugin-ember", "description": "An oclif plugin for Ember project tasks", - "version": "0.2.3", + "version": "0.3.0", "author": "Steve Calvert @scalvert", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "^0.2.3", + "@checkup/core": "^0.3.0", "@oclif/command": "^1", "@oclif/config": "^1", "ember-template-recast": "^4.1.5", "tslib": "^2" }, "devDependencies": { - "@checkup/test-helpers": "^0.2.3", + "@checkup/test-helpers": "^0.3.0", "@oclif/dev-cli": "^1", "fixturify-project": "^2.1.0", "rimraf": "^3.0.2" diff --git a/packages/checkup-plugin-javascript/package.json b/packages/checkup-plugin-javascript/package.json index af31612bf..bbe6538a5 100644 --- a/packages/checkup-plugin-javascript/package.json +++ b/packages/checkup-plugin-javascript/package.json @@ -1,18 +1,18 @@ { "name": "checkup-plugin-javascript", "description": "An oclif plugin for Javascript project tasks", - "version": "0.2.3", + "version": "0.3.0", "author": "Cara Kessler @carakessler", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "^0.2.3", + "@checkup/core": "^0.3.0", "@oclif/command": "^1", "@oclif/config": "^1", "ember-template-recast": "^4.1.5", "tslib": "^2" }, "devDependencies": { - "@checkup/test-helpers": "^0.2.3", + "@checkup/test-helpers": "^0.3.0", "@oclif/dev-cli": "^1", "fixturify-project": "^2.1.0", "rimraf": "^3.0.2" diff --git a/packages/cli/package.json b/packages/cli/package.json index c3566843f..7496875c3 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.2.3", + "version": "0.3.0", "author": "Steve Calvert ", "bin": { "checkup": "./bin/run" @@ -11,7 +11,7 @@ "@babel/parser": "^7.11.0", "@babel/traverse": "^7.11.0", "@babel/types": "7.11.0", - "@checkup/core": "0.2.3", + "@checkup/core": "0.3.0", "@oclif/command": "^1", "@oclif/config": "^1", "@oclif/errors": "^1.3.3", @@ -38,7 +38,7 @@ "yeoman-generator": "^4.11.0" }, "devDependencies": { - "@checkup/test-helpers": "0.2.3", + "@checkup/test-helpers": "0.3.0", "@oclif/dev-cli": "^1", "@types/yeoman-environment": "^2.3.3", "@types/yeoman-generator": "^3.1.4", diff --git a/packages/core/package.json b/packages/core/package.json index 92e4e82fb..238b9c4de 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.2.3", + "version": "0.3.0", "author": "Steve Calvert ", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { diff --git a/packages/test-helpers/package.json b/packages/test-helpers/package.json index 872447800..a30b362b0 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.2.3", + "version": "0.3.0", "author": "Steve Calvert ", "bugs": "https://github.com/checkupjs/checkup/issues", "dependencies": { - "@checkup/core": "0.2.3", + "@checkup/core": "0.3.0", "@oclif/config": "^1.15.1", "fixturify-project": "^2.1.0", "handlebars": "^4.7.6",