Skip to content

Commit

Permalink
The version has been updated to 3.20.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
aw350m33d committed Dec 28, 2024
1 parent a482bf3 commit b4de9fe
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 18 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/publish-vsc-marketplace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,12 @@ jobs:
echo "EXT_ISPREVIEW=0" >> $GITHUB_ENV
echo "EXT_ISPREVIEW=0"
fi
- name: Get tag message body
run: |
EOF=${{ github.sha }}
echo "msg<<$EOF" >> $GITHUB_OUTPUT
echo "$(git tag -l --format='%(contents:body)' ${{ github.ref_name }})" >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
id: get_tag_message

- name: Stamp version
Expand All @@ -65,7 +64,6 @@ jobs:
cp /tmp/package.json ./package.json
npm ci
npm run vscode:prepublish
- name: Package release extension
if: env.EXT_ISPREVIEW != 1
run: npx vsce package -o "./vscode-xp-${{ env.EXT_VERSION }}.vsix"
Expand All @@ -76,26 +74,17 @@ jobs:

- name: Create release
id: create_release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: v${{ env.EXT_VERSION }}
name: v${{ env.EXT_VERSION }}
draft: false
prerelease: ${{env.EXT_ISPREVIEW == 1}}
body: |
${{ steps.get_tag_message.outputs.msg }}
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./vscode-xp-${{ env.EXT_VERSION }}.vsix
asset_name: vscode-xp-${{ env.EXT_VERSION }}.vsix
asset_content_type: application/zip
files: ./vscode-xp-${{ env.EXT_VERSION }}.vsix

- name: Publish at VSCode marketplace
if: env.EXT_ISPREVIEW != 1
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 3.20.1 (Release)

- Rewrote Metainfo editor in React
- Added default author setting (default author name is automatically added to knowledge holders list every time Metainfo editor is saved)
- Added info (name, description, link, etc.) for every MITRE technique
- Added dependencies tab with the ability to navigate to each file
- Fixed YAML formatting (special thanks @sanguis_meus)
- Fixed bruteforce correlation rule template (special thanks @pantos05)

## 3.20.0 (Release)

- Started migration of webviews to React SPA
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 3.20.1 (Release)

- Редактор Metainfo переписан на React
- В настройки добавлено имя автора по умолчанию (имя автора по умолчанию автоматически добавляется в список обладателей знаний при каждом сохранении метаинформации)
- Переработана информация (название, описание, ссылка и т.д.) для каждой техники MITRE в метаинформации
- Добавлена вкладка зависимостей с возможностью перехода к каждому файлу при наличии информации о зависимостях
- Исправлено форматирование YAML (special thanks @sanguis_meus)
- Исправлен шаблон правил корреляции для атак методом перебора (special thanks @pantos05)

## 3.20.0 (Release)

- Начат процесс переписывания веб-форм на React SPA
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Language client",
"author": "Dmitry Fedosov (@DmitryOffsec)",
"license": "MIT",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/Security-Experts-Community/vscode-xp"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"author": "Dmitry Fedosov (@DmitryOffsec)",
"icon": "resources/xp.png",
"license": "MIT",
"version": "3.20.0",
"version": "3.20.1",
"repository": {
"type": "git",
"url": "https://github.com/Security-Experts-Community/vscode-xp"
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "server",
"description": "Language server",
"version": "3.20.0",
"version": "3.20.1",
"author": "Dmitry Fedosov (@DmitryOffsec)",
"license": "MIT",
"engines": {
Expand Down

0 comments on commit b4de9fe

Please sign in to comment.