diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index d9a25971..aad21db2 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -27,6 +27,7 @@ jobs: exit 1 fi - name: Determine Oclif channel + id: determine-oclif-channel run: | VERSION=${{ steps.verify-version.outputs.version }} if [[ "$VERSION" == *"-beta"* ]]; then @@ -40,7 +41,7 @@ jobs: fi outputs: version: ${{ steps.verify-version.outputs.version }} - oclif_channel: ${{ steps.determine-channel.outputs.oclif_channel }} + oclif_channel: ${{ steps.determine-oclif-channel.outputs.oclif_channel }} test: runs-on: ubuntu-latest @@ -90,7 +91,6 @@ jobs: --generate-notes \ --draft \ --prerelease=${{ needs.check-version.outputs.oclif_channel != 'latest' }} \ - --discussion-category "Announcements" \ dist/*.tar.gz env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 85fd10bc..c66965b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. + +## [1.5.0-beta.2](https://github.com/herodevs/cli/compare/v1.4.0-beta.1...v1.5.0-beta.2) (2025-04-18) + + +### Features + +* add update-notifier feature for npx users ([#176](https://github.com/herodevs/cli/issues/176)) ([0daecad](https://github.com/herodevs/cli/commit/0daecad6890f4ace15b3eee403938baadb2cad07)) +* add vuln count to table output ([#175](https://github.com/herodevs/cli/issues/175)) ([d730975](https://github.com/herodevs/cli/commit/d7309756000d419dbb061ee7f530cc919dae8add)) +* enable vuln count feature ([#187](https://github.com/herodevs/cli/issues/187)) ([6915c6e](https://github.com/herodevs/cli/commit/6915c6e208e99d8712ebd3922bb3c28bb3f737af)), closes [#188](https://github.com/herodevs/cli/issues/188) +* hide extra columns on ok and unknown tables ([#189](https://github.com/herodevs/cli/issues/189)) ([2dd96f3](https://github.com/herodevs/cli/commit/2dd96f3a7724d2a668a7600b5bb11953ab34bf41)) +* outputs eol scan in table format ([#168](https://github.com/herodevs/cli/issues/168)) ([fbacece](https://github.com/herodevs/cli/commit/fbacece9344ef4b479b084eaa8658a347bb75b83)) +* swap scheduled for lts status ([#177](https://github.com/herodevs/cli/issues/177)) ([e82ab2c](https://github.com/herodevs/cli/commit/e82ab2c4fae2784d3a47f7b1c5a14bb488af68d7)) +* upload tarballs to s3 ([#157](https://github.com/herodevs/cli/issues/157)) ([3ce8582](https://github.com/herodevs/cli/commit/3ce8582f3fb8f834fb43e5694a4fa956d18d4d40)) + + +### Bug Fixes + +* properly display package names on table ([#183](https://github.com/herodevs/cli/issues/183)) ([b16f825](https://github.com/herodevs/cli/commit/b16f82559e3a051fb3b2fe8d9eb1540a12f136cb)) + ## [1.1.0-beta.1](https://github.com/herodevs/cli/compare/v1.0.0-beta.0...v1.1.0-beta.0) (2025-03-24) diff --git a/package-lock.json b/package-lock.json index 792b8a50..1f58f9ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@herodevs/cli", - "version": "1.5.0-beta.1", + "version": "1.5.0-beta.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@herodevs/cli", - "version": "1.5.0-beta.1", + "version": "1.5.0-beta.2", "license": "MIT", "dependencies": { "@apollo/client": "^3.13.8", diff --git a/package.json b/package.json index 10c106be..0064a21c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@herodevs/cli", - "version": "1.5.0-beta.1", + "version": "1.5.0-beta.2", "author": "HeroDevs, Inc", "bin": { "hd": "./bin/run.js"