Skip to content

Commit 3d29561

Browse files
authored
Merge pull request #167 from SAP/develop
Release v0.6.4
2 parents 44a8508 + bb5d6fe commit 3d29561

13 files changed

Lines changed: 698 additions & 616 deletions

.github/workflows/be-installation-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Check out Git repository
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Set up Python environment
2828
uses: actions/setup-python@v6

.github/workflows/changelog-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Build changelog
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323

2424
- name: Run Changelog CI
2525
uses: saadmk11/changelog-ci@v1.2.0

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
frontend_version: ${{ steps.version_check.outputs.frontend_version }}
2020
steps:
2121
- name: Check out the repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 2 # Need at least 2 commits to compare
2525

@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ubuntu-latest
9292
steps:
9393
- name: Check out the repo
94-
uses: actions/checkout@v5
94+
uses: actions/checkout@v6
9595

9696
- name: Set up Docker Buildx
9797
uses: docker/setup-buildx-action@v3
@@ -129,7 +129,7 @@ jobs:
129129
runs-on: ubuntu-latest
130130
steps:
131131
- name: Check out the repo
132-
uses: actions/checkout@v5
132+
uses: actions/checkout@v6
133133

134134
- name: Set up Node.js for Frontend build
135135
uses: actions/setup-node@v6

.github/workflows/fe-installation-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Check out Git repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Set up Node.js environment
3030
uses: actions/setup-node@v6

.github/workflows/lint-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Check out Git repository
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Set up Python environment
2828
uses: actions/setup-python@v6

.github/workflows/lint-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Check out Git repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030

3131
- name: Set up Node.js
3232
uses: actions/setup-node@v6

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run:
1414
shell: bash
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Get version number
1919
id: get-pr-number

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Version: v0.6.4
2+
3+
* [#148](https://github.com/SAP/STARS/pull/148): Bump js-yaml from 4.1.0 to 4.1.1 in /frontend
4+
* [#149](https://github.com/SAP/STARS/pull/149): Bump ollama from 0.6.0 to 0.6.1 in /backend-agent
5+
* [#150](https://github.com/SAP/STARS/pull/150): Bump unstructured from 0.18.15 to 0.18.20 in /backend-agent
6+
* [#151](https://github.com/SAP/STARS/pull/151): Bump the js-dependencies group across 1 directory with 24 updates
7+
* [#152](https://github.com/SAP/STARS/pull/152): Bump js-yaml from 4.1.0 to 4.1.1 in /frontend
8+
* [#153](https://github.com/SAP/STARS/pull/153): Bump actions/checkout from 5 to 6
9+
* [#154](https://github.com/SAP/STARS/pull/154): Bump faiss-cpu from 1.12.0 to 1.13.0 in /backend-agent
10+
* [#157](https://github.com/SAP/STARS/pull/157): Bump node-forge from 1.3.1 to 1.3.2 in /frontend
11+
* [#159](https://github.com/SAP/STARS/pull/159): Bump unstructured from 0.18.20 to 0.18.21 in /backend-agent
12+
* [#163](https://github.com/SAP/STARS/pull/163): Bump express in /frontend
13+
* [#166](https://github.com/SAP/STARS/pull/166): Update angular packages
14+
15+
116
# Version: v0.6.3
217

318
* [#139](https://github.com/SAP/STARS/pull/139): Add perplexity model family

backend-agent/llm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
'gemini-2.0-flash',
7272
'gemini-2.0-flash-lite',
7373
'gemini-2.5-flash',
74+
'gemini-2.5-flash-lite',
7475
'gemini-2.5-pro',
7576
],
7677
'perplexity-ai':

backend-agent/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = 'stars'
3-
version = '0.6.3'
3+
version = '0.6.4'
44
description = 'Smart Threat AI Reporting Scanner (STARS)'
55
readme = 'README.md'
66
license = {text = 'Apache-2.0'}
@@ -13,9 +13,9 @@ maintainers = [
1313
]
1414
requires-python = '>=3.10,<3.13'
1515
dependencies = [
16-
'sap-ai-sdk-gen[all]==5.8.0',
16+
'sap-ai-sdk-gen[all]==5.9.0',
1717
'python-dotenv==1.2.1',
18-
'faiss-cpu==1.12.0',
18+
'faiss-cpu==1.13.0',
1919
'Flask==3.1.2',
2020
'Flask-Cors==6.0.1',
2121
'flask_sock==0.7.0',
@@ -26,10 +26,10 @@ dependencies = [
2626
'langchain-text-splitters>=0.3.0,<0.4.0',
2727
'PyYAML==6.0.3',
2828
'requests==2.32.5',
29-
'unstructured==0.18.15',
29+
'unstructured==0.18.21',
3030
'art==6.5',
3131
'pandas==2.3.3',
32-
'ollama==0.6.0',
32+
'ollama==0.6.1',
3333
'weasyprint==66.0',
3434
'pyrit==0.9.0',
3535
'codeattack @ git+https://github.com/marcorosa/CodeAttack',

0 commit comments

Comments
 (0)