Skip to content

Commit 6af69e7

Browse files
authored
Merge pull request #1110 from tisnik/lcore-1280-bump-up-to-version-0.4.1
LCORE-1280: bump-up LCORE to version 0.4.1
2 parents d1f691e + 9eb94c6 commit 6af69e7

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

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.0)
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)
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.0"
16+
"version": "0.4.1"
1717
},
1818
"servers": [
1919
{
@@ -9313,4 +9313,4 @@
93139313
}
93149314
}
93159315
}
9316-
}
9316+
}

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.0",
88+
"cla_version": "CLA/0.4.1",
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.0",
33+
cla_version="CLA/0.4.1",
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.0"
12+
__version__ = "0.4.1"

tests/e2e/features/info.feature

Lines changed: 2 additions & 2 deletions
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.0
18+
And The body of the response has proper name Lightspeed Core Service (LCS) and version 0.4.1
1919
And The body of the response has llama-stack version 0.4.3
2020

2121
@skip-in-library-mode
@@ -136,4 +136,4 @@ Feature: Info tests
136136
Then The status code of the response is 200
137137
And The body of the response has proper client auth options structure
138138
And The response contains server "github-api" with client auth header "Authorization"
139-
And The response contains server "gitlab-api" with client auth header "X-API-Token"
139+
And The response contains server "gitlab-api" with client auth header "X-API-Token"

tests/integration/endpoints/test_rlsapi_v1_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def _create_mock_request(mocker: MockerFixture) -> Any:
4242
mock_request = mocker.Mock()
4343
# Use spec=[] to create a Mock with no attributes, simulating absent rh_identity_data
4444
mock_request.state = mocker.Mock(spec=[])
45-
mock_request.headers = {"User-Agent": "CLA/0.4.0"}
45+
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
4646
return mock_request
4747

4848

@@ -169,7 +169,7 @@ async def test_rlsapi_v1_infer_minimal_request(
169169
attachments=RlsapiV1Attachment(contents="log content"),
170170
terminal=RlsapiV1Terminal(output="command not found"),
171171
systeminfo=RlsapiV1SystemInfo(os="RHEL", version="9.3", arch="x86_64"),
172-
cla=RlsapiV1CLA(nevra="cla-0.4.0", version="0.4.0"),
172+
cla=RlsapiV1CLA(nevra="cla-0.4.1", version="0.4.1"),
173173
),
174174
"full_context",
175175
id="full_context",

tests/unit/app/endpoints/test_rlsapi_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
def _create_mock_request(mocker: MockerFixture, rh_identity: Any = None) -> Any:
4141
"""Create a mock FastAPI Request with optional RH Identity data."""
4242
mock_request = mocker.Mock()
43-
mock_request.headers = {"User-Agent": "CLA/0.4.0"}
43+
mock_request.headers = {"User-Agent": "CLA/0.4.1"}
4444

4545
if rh_identity is not None:
4646
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
@@ -18,7 +18,7 @@ def sample_event_data_fixture() -> InferenceEventData:
1818
org_id="12345678",
1919
system_id="abc-def-123",
2020
request_id="req_xyz789",
21-
cla_version="CLA/0.4.0",
21+
cla_version="CLA/0.4.1",
2222
system_os="RHEL",
2323
system_version="9.3",
2424
system_arch="x86_64",
@@ -39,7 +39,7 @@ def test_builds_event_with_all_fields(sample_event_data: InferenceEventData) ->
3939
assert event["org_id"] == "12345678"
4040
assert event["system_id"] == "abc-def-123"
4141
assert event["request_id"] == "req_xyz789"
42-
assert event["cla_version"] == "CLA/0.4.0"
42+
assert event["cla_version"] == "CLA/0.4.1"
4343
assert event["system_os"] == "RHEL"
4444
assert event["system_version"] == "9.3"
4545
assert event["system_arch"] == "x86_64"

0 commit comments

Comments
 (0)