Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 59 additions & 21 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
**An open-source, production-ready Generative AI platform for institutions**
*Built by Boise State University, designed for everyone.*

[![Release](https://img.shields.io/badge/Release-v1.16.0-6366f1?style=flat&logo=github&logoColor=white)](RELEASE_NOTES.md)
[![Release](https://img.shields.io/badge/Release-v1.17.0-6366f1?style=flat&logo=github&logoColor=white)](RELEASE_NOTES.md)
[![Nightly](https://github.com/Boise-State-Development/agentcore-public-stack/actions/workflows/nightly.yml/badge.svg)](https://github.com/Boise-State-Development/agentcore-public-stack/actions/workflows/nightly.yml)

![Python](https://img.shields.io/badge/Python-3.13+-3776AB?style=flat&logo=python&logoColor=white)
Expand Down Expand Up @@ -296,7 +296,7 @@ agentcore-public-stack/

See [RELEASE_NOTES.md](RELEASE_NOTES.md) for the full changelog, including new features, bug fixes, platform upgrades, and deployment notes for each release.

**Current release:** v1.16.0
**Current release:** v1.17.0

---

Expand Down
194 changes: 194 additions & 0 deletions RELEASE_NOTES.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.16.0
1.17.0
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agentcore-stack"
version = "1.16.0"
version = "1.17.0"
requires-python = ">=3.10"
description = "Multi-agent conversational AI system with AWS Bedrock AgentCore"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion backend/src/apis/inference_api/chat/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ async def invocations(request: InvocationRequest, current_user: User = Depends(g
if await session_owned_by_other_user(input_data.session_id, user_id):
logger.warning(
"Rejected invocation for session %s — owned by a different user",
input_data.session_id,
_sanitize_log(input_data.session_id),
)
raise HTTPException(status_code=404, detail="Session not found")
# Resume requests reuse the cached agent and its paused interrupt state;
Expand Down
4 changes: 0 additions & 4 deletions backend/src/apis/shared/kb_backend/provisioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,9 +466,6 @@ async def _call(


# ── The saga ─────────────────────────────────────────────────────────────────
#: Statuses a knowledge base can hold while still on its way to usable.
KB_PENDING_STATUSES = ("CREATING", "UPDATING")

#: The status the data-source create requires.
KB_ACTIVE_STATUS = "ACTIVE"

Expand Down Expand Up @@ -579,7 +576,6 @@ async def _wait_for_knowledge_base_active(
interval = KB_ACTIVE_POLL_SECONDS if interval_seconds is None else interval_seconds

waited = 0.0
last_status = "UNKNOWN"
while True:
described = await asyncio.to_thread(
lambda: client.get_knowledge_base(knowledgeBaseId=aws_kb_id)
Expand Down
2 changes: 1 addition & 1 deletion backend/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/ai.client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/ai.client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ai.client",
"version": "1.16.0",
"version": "1.17.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infrastructure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "infrastructure",
"version": "1.16.0",
"version": "1.17.0",
"bin": {
"infrastructure": "bin/infrastructure.js"
},
Expand Down
2 changes: 1 addition & 1 deletion tui/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "agentcore-tui"
version = "1.16.0"
version = "1.17.0"
requires-python = ">=3.11"
description = "Terminal client for the AgentCore Public Stack — streaming AI chat in your terminal"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tui/src/agentcore_tui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

from __future__ import annotations

__version__ = "1.16.0"
__version__ = "1.17.0"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion tui/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.