Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down