From e7bb9196b14609a52effcbc62e059c4a212d7c7c Mon Sep 17 00:00:00 2001
From: Anthony Rose <20302208+Cx01N@users.noreply.github.com>
Date: Sat, 6 Apr 2024 16:46:51 -0400
Subject: [PATCH 1/6] Added completed and error status to taskings (#192)
* Added completed and error status to taskings
* Added keylog status to taskings
* changed keylog to continuous
* added icons for plugin tasks
---
CHANGELOG.md | 4 ++++
src/components/agents/AgentTasksTable.vue | 11 ++++++++++-
src/components/plugins/PluginTasksTable.vue | 16 +++++++++++++++-
3 files changed, 29 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3c454f1..ad0cb77 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+### Added
+
+- Added completed, error, continuous statuses to taskings
+
## [2.7.3] - 2024-02-22
### Added
diff --git a/src/components/agents/AgentTasksTable.vue b/src/components/agents/AgentTasksTable.vue
index e54f7e7..2c0e832 100644
--- a/src/components/agents/AgentTasksTable.vue
+++ b/src/components/agents/AgentTasksTable.vue
@@ -118,12 +118,21 @@
-
+
fa-check-square
fa-clock
+
+ fa-check-circle
+
+
+ fa-times-circle
+
+
+ fa-infinity
+
- {{ item.status }}
+
+ fa-check-square
+
+
+ fa-clock
+
+
+ fa-check-circle
+
+
+ fa-times-circle
+
+
+ fa-infinity
+
{{ truncateMessage(item.input) }}
From 119c254822cffb802cacc28ea8d2f5191b634b97 Mon Sep 17 00:00:00 2001
From: Vince Rose
Date: Sun, 7 Apr 2024 19:06:15 -0700
Subject: [PATCH 2/6] add dependabot for github actions
---
.github/{.dependabot.yml => dependabot.yml} | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
rename .github/{.dependabot.yml => dependabot.yml} (51%)
diff --git a/.github/.dependabot.yml b/.github/dependabot.yml
similarity index 51%
rename from .github/.dependabot.yml
rename to .github/dependabot.yml
index b689aae..07eee46 100644
--- a/.github/.dependabot.yml
+++ b/.github/dependabot.yml
@@ -1,8 +1,7 @@
version: 2
updates:
- - package_manager: "npm"
+ - package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- day: "sunday"
- target-branch: "dev"
+ target-branch: "private-main"
From 2312db23ff3f778d34cf22a811652d505b9622cb Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 7 Apr 2024 19:07:49 -0700
Subject: [PATCH 3/6] Bump actions/setup-node from 3 to 4 (#193)
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/lint-and-test.yml | 2 +-
.github/workflows/release-private-start.yml | 2 +-
.github/workflows/release-private-tag.yml | 2 +-
.github/workflows/release-public-start.yml | 2 +-
.github/workflows/release-public-tag.yml | 2 +-
.github/workflows/release-sponsor-kali-start.yml | 2 +-
.github/workflows/release-sponsor-kali-tag.yml | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml
index 51ff5e3..18dde40 100644
--- a/.github/workflows/lint-and-test.yml
+++ b/.github/workflows/lint-and-test.yml
@@ -15,7 +15,7 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
cache: "yarn"
diff --git a/.github/workflows/release-private-start.yml b/.github/workflows/release-private-start.yml
index 9195fcf..a063ef5 100644
--- a/.github/workflows/release-private-start.yml
+++ b/.github/workflows/release-private-start.yml
@@ -30,7 +30,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
- name: Change version number
diff --git a/.github/workflows/release-private-tag.yml b/.github/workflows/release-private-tag.yml
index ae8303c..f1c17e4 100644
--- a/.github/workflows/release-private-tag.yml
+++ b/.github/workflows/release-private-tag.yml
@@ -21,7 +21,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
- name: Set application version as variable
diff --git a/.github/workflows/release-public-start.yml b/.github/workflows/release-public-start.yml
index c7a30c9..19ce778 100644
--- a/.github/workflows/release-public-start.yml
+++ b/.github/workflows/release-public-start.yml
@@ -29,7 +29,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
- name: Get app version
diff --git a/.github/workflows/release-public-tag.yml b/.github/workflows/release-public-tag.yml
index 71f1687..f07eea6 100644
--- a/.github/workflows/release-public-tag.yml
+++ b/.github/workflows/release-public-tag.yml
@@ -25,7 +25,7 @@ jobs:
tags=$(echo "$tags" | grep -v -E "beta|alpha|rc|RC")
latest_tag=$(echo "$tags" | head -n 1)
echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
cache: "yarn"
diff --git a/.github/workflows/release-sponsor-kali-start.yml b/.github/workflows/release-sponsor-kali-start.yml
index 35a9af2..6d66566 100644
--- a/.github/workflows/release-sponsor-kali-start.yml
+++ b/.github/workflows/release-sponsor-kali-start.yml
@@ -21,7 +21,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
- name: Get app version
diff --git a/.github/workflows/release-sponsor-kali-tag.yml b/.github/workflows/release-sponsor-kali-tag.yml
index 2410346..af6c0ef 100644
--- a/.github/workflows/release-sponsor-kali-tag.yml
+++ b/.github/workflows/release-sponsor-kali-tag.yml
@@ -23,7 +23,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
with:
node-version: 16
cache: "yarn"
From 6942faf372afd44e88f6604299a9420bf7b803f5 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 7 Apr 2024 19:08:38 -0700
Subject: [PATCH 4/6] Bump actions/checkout from 3 to 4 (#195)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/lint-and-test.yml | 2 +-
.github/workflows/prerelease-sponsor-kali-merge-private.yml | 2 +-
.github/workflows/release-private-start.yml | 2 +-
.github/workflows/release-private-tag.yml | 2 +-
.github/workflows/release-public-start.yml | 2 +-
.github/workflows/release-public-tag.yml | 2 +-
.github/workflows/release-sponsor-kali-start.yml | 2 +-
.github/workflows/release-sponsor-kali-tag.yml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml
index 18dde40..26ae127 100644
--- a/.github/workflows/lint-and-test.yml
+++ b/.github/workflows/lint-and-test.yml
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
diff --git a/.github/workflows/prerelease-sponsor-kali-merge-private.yml b/.github/workflows/prerelease-sponsor-kali-merge-private.yml
index be5ac5b..c59771f 100644
--- a/.github/workflows/prerelease-sponsor-kali-merge-private.yml
+++ b/.github/workflows/prerelease-sponsor-kali-merge-private.yml
@@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: "recursive"
ref: private-main
diff --git a/.github/workflows/release-private-start.yml b/.github/workflows/release-private-start.yml
index a063ef5..97f1646 100644
--- a/.github/workflows/release-private-start.yml
+++ b/.github/workflows/release-private-start.yml
@@ -20,7 +20,7 @@ jobs:
- name: Set target branch
run: echo "TARGET_BRANCH=private-main" >> $GITHUB_ENV
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
ref: ${{ env.TARGET_BRANCH }}
submodules: "recursive"
diff --git a/.github/workflows/release-private-tag.yml b/.github/workflows/release-private-tag.yml
index f1c17e4..e1ac04f 100644
--- a/.github/workflows/release-private-tag.yml
+++ b/.github/workflows/release-private-tag.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
fetch-depth: 0
diff --git a/.github/workflows/release-public-start.yml b/.github/workflows/release-public-start.yml
index 19ce778..954736e 100644
--- a/.github/workflows/release-public-start.yml
+++ b/.github/workflows/release-public-start.yml
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out sponsor repo
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: "BC-Security/Starkiller-Sponsors"
ref: ${{ inputs.sponsorTag }}
diff --git a/.github/workflows/release-public-tag.yml b/.github/workflows/release-public-tag.yml
index f07eea6..645f4af 100644
--- a/.github/workflows/release-public-tag.yml
+++ b/.github/workflows/release-public-tag.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Initialize mandatory git config
diff --git a/.github/workflows/release-sponsor-kali-start.yml b/.github/workflows/release-sponsor-kali-start.yml
index 6d66566..6eff1d2 100644
--- a/.github/workflows/release-sponsor-kali-start.yml
+++ b/.github/workflows/release-sponsor-kali-start.yml
@@ -12,7 +12,7 @@ jobs:
run: |
echo "TARGET_BRANCH=sponsors-main" >> $GITHUB_ENV
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
ref: sponsors-main
fetch-depth: 0
diff --git a/.github/workflows/release-sponsor-kali-tag.yml b/.github/workflows/release-sponsor-kali-tag.yml
index af6c0ef..6a08c0a 100644
--- a/.github/workflows/release-sponsor-kali-tag.yml
+++ b/.github/workflows/release-sponsor-kali-tag.yml
@@ -15,7 +15,7 @@ jobs:
run: |
echo "TAG_NAME=$(echo ${{ github.head_ref }} | sed 's/release\///')" >> $GITHUB_ENV
- name: Check out code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
token: ${{ secrets.RELEASE_TOKEN }}
From af63012b8fe6a2ad8746c2d53e0f6095098f6e60 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 7 Apr 2024 19:08:54 -0700
Subject: [PATCH 5/6] Bump thomaseizinger/create-pull-request from 1.0.0 to
1.3.1 (#194)
Bumps [thomaseizinger/create-pull-request](https://github.com/thomaseizinger/create-pull-request) from 1.0.0 to 1.3.1.
- [Release notes](https://github.com/thomaseizinger/create-pull-request/releases)
- [Changelog](https://github.com/thomaseizinger/create-pull-request/blob/master/CHANGELOG.md)
- [Commits](https://github.com/thomaseizinger/create-pull-request/compare/1.0.0...1.3.1)
---
updated-dependencies:
- dependency-name: thomaseizinger/create-pull-request
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
.github/workflows/release-private-start.yml | 2 +-
.github/workflows/release-public-start.yml | 2 +-
.github/workflows/release-sponsor-kali-start.yml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release-private-start.yml b/.github/workflows/release-private-start.yml
index 97f1646..f55f268 100644
--- a/.github/workflows/release-private-start.yml
+++ b/.github/workflows/release-private-start.yml
@@ -58,7 +58,7 @@ jobs:
- name: Push new branch
run: git push origin ${{ env.RELEASE_BRANCH }}
- name: Create pull request into ${{ env.TARGET_BRANCH }}
- uses: thomaseizinger/create-pull-request@1.0.0
+ uses: thomaseizinger/create-pull-request@1.3.1
with:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
head: ${{ env.RELEASE_BRANCH }}
diff --git a/.github/workflows/release-public-start.yml b/.github/workflows/release-public-start.yml
index 954736e..2dfd7b7 100644
--- a/.github/workflows/release-public-start.yml
+++ b/.github/workflows/release-public-start.yml
@@ -44,7 +44,7 @@ jobs:
- name: Push new branch
run: git push public ${{ env.RELEASE_BRANCH }}
- name: Create pull request into main
- uses: thomaseizinger/create-pull-request@1.0.0
+ uses: thomaseizinger/create-pull-request@1.3.1
with:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
head: ${{ env.RELEASE_BRANCH }}
diff --git a/.github/workflows/release-sponsor-kali-start.yml b/.github/workflows/release-sponsor-kali-start.yml
index 6eff1d2..b53371f 100644
--- a/.github/workflows/release-sponsor-kali-start.yml
+++ b/.github/workflows/release-sponsor-kali-start.yml
@@ -47,7 +47,7 @@ jobs:
- name: Push new branch
run: git push origin ${{ env.RELEASE_BRANCH }}
- name: Create pull request into ${{ env.TARGET_BRANCH }}
- uses: thomaseizinger/create-pull-request@1.0.0
+ uses: thomaseizinger/create-pull-request@1.3.1
with:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
head: ${{ env.RELEASE_BRANCH }}
From 4a812c6bb87fa9d9a0f75bf947ea5fdcc5cf7fde Mon Sep 17 00:00:00 2001
From: GitHub Actions
Date: Mon, 8 Apr 2024 02:09:31 +0000
Subject: [PATCH 6/6] Prepare release 2.8.0 private
---
CHANGELOG.md | 6 +++++-
package.json | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad0cb77..b443805 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [2.8.0] - 2024-04-08
+
### Added
- Added completed, error, continuous statuses to taskings
@@ -365,7 +367,9 @@ Including but not limited to:
- Initial Release
-[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.3...HEAD
+[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.8.0...HEAD
+
+[2.8.0]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.3...v2.8.0
[2.7.3]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.2...v2.7.3
diff --git a/package.json b/package.json
index eaa5e5d..03c29d9 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "starkiller",
- "version": "2.7.3",
+ "version": "2.8.0",
"private": true,
"scripts": {
"dev": "vite",