Skip to content

Commit 64bb63a

Browse files
authored
Merge pull request #1288 from tisnik/lcore-1215-preparing-for-0.4.2-release
LCORE-1215: Preparing for 0.4.2 release
2 parents 9f4acf0 + 299e6d0 commit 64bb63a

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/lightspeed-core/lightspeed-stack/blob/main/LICENSE)
77
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
88
[![Required Python version](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Flightspeed-core%2Flightspeed-stack%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)](https://www.python.org/)
9-
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.4.1)
9+
[![Tag](https://img.shields.io/github/v/tag/lightspeed-core/lightspeed-stack)](https://github.com/lightspeed-core/lightspeed-stack/releases/tag/0.4.2)
1010

1111
Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to product questions using backend LLM services, agents, and RAG databases.
1212

docs/openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"name": "Apache 2.0",
1414
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
1515
},
16-
"version": "0.4.1"
16+
"version": "0.4.2"
1717
},
1818
"servers": [
1919
{
@@ -9854,4 +9854,4 @@
98549854
}
98559855
}
98569856
}
9857-
}
9857+
}

docs/splunk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Events follow the rlsapi telemetry format for consistency with existing analytic
8585
"system_id": "abc-def-123",
8686
"total_llm_tokens": 0,
8787
"request_id": "req_xyz789",
88-
"cla_version": "CLA/0.4.1",
88+
"cla_version": "CLA/0.4.2",
8989
"system_os": "RHEL",
9090
"system_version": "9.3",
9191
"system_arch": "x86_64"

src/observability/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ event_data = InferenceEventData(
3030
org_id="12345678",
3131
system_id="abc-def-123",
3232
request_id="req_xyz789",
33-
cla_version="CLA/0.4.1",
33+
cla_version="CLA/0.4.2",
3434
system_os="RHEL",
3535
system_version="9.3",
3636
system_arch="x86_64",

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# [tool.pdm.version]
1010
# source = "file"
1111
# path = "src/version.py"
12-
__version__ = "0.4.1"
12+
__version__ = "0.4.2"

tests/e2e/features/info.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Feature: Info tests
1515
Given The system is in default state
1616
When I access REST API endpoint "info" using HTTP GET method
1717
Then The status code of the response is 200
18-
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.1
18+
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.2
1919
And The body of the response has llama-stack version 0.4.3
2020

2121
@skip-in-library-mode

tests/integration/endpoints/test_rlsapi_v1_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def _create_mock_request(mocker: MockerFixture) -> Any:
4444
mock_request = mocker.Mock()
4545
# Use spec=[] to create a Mock with no attributes, simulating absent rh_identity_data
4646
mock_request.state = mocker.Mock(spec=[])
47-
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
47+
mock_request.headers = {"User-Agent": "CLA/0.4.2"}
4848
return mock_request
4949

5050

tests/unit/app/endpoints/test_rlsapi_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _set(prompt: str) -> None:
6565
def _create_mock_request(mocker: MockerFixture, rh_identity: Any = None) -> Any:
6666
"""Create a mock FastAPI Request with optional RH Identity data."""
6767
mock_request = mocker.Mock()
68-
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
68+
mock_request.headers = {"User-Agent": "CLA/0.4.2"}
6969

7070
if rh_identity is not None:
7171
mock_request.state = mocker.Mock()

tests/unit/observability/formats/test_rlsapi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def sample_event_data_fixture() -> InferenceEventData:
1717
org_id="12345678",
1818
system_id="abc-def-123",
1919
request_id="req_xyz789",
20-
cla_version="CLA/0.4.1",
20+
cla_version="CLA/0.4.2",
2121
system_os="RHEL",
2222
system_version="9.3",
2323
system_arch="x86_64",
@@ -40,7 +40,7 @@ def test_builds_event_with_all_fields(
4040
assert event["org_id"] == "12345678"
4141
assert event["system_id"] == "abc-def-123"
4242
assert event["request_id"] == "req_xyz789"
43-
assert event["cla_version"] == "CLA/0.4.1"
43+
assert event["cla_version"] == "CLA/0.4.2"
4444
assert event["system_os"] == "RHEL"
4545
assert event["system_version"] == "9.3"
4646
assert event["system_arch"] == "x86_64"

0 commit comments

Comments
 (0)