Skip to content

Commit 4e51eea

Browse files
authored
chore: release v0.31.6 (#724)
* chore: bump version to 0.31.6 * test: update makefile fixtures for agent identity support - Update makefile snapshots to include agent identity parameter - Refresh hashes for agent_engine deployment targets --------- Co-authored-by: eliasecchig <eliasecchig@users.noreply.github.com>
1 parent 5a73698 commit 4e51eea

File tree

7 files changed

+18
-10
lines changed

7 files changed

+18
-10
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agent-starter-pack"
3-
version = "0.31.5"
3+
version = "0.31.6"
44
description = "CLI to bootstrap production-ready Google Cloud GenAI agent projects from templates."
55
authors = [
66
{ name = "Google LLC", email = "agent-starter-pack@google.com" },
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"adk_a2a_agent_engine": "e50910683a24d9eaedc8adb714bb9f9eab8af9e9151b7fa16be8e66052c28146",
2+
"adk_a2a_agent_engine": "e10e3b4b549a6b14bd3eb43a6404626122b724270ec8b2b3756616f32502f1f4",
33
"adk_a2a_cloud_run": "92b91981cbfd71d5d6350d85b4d4336fed9af16c72befd9b287700f78302d475",
4-
"adk_agent_engine_no_data": "e043a1621cca3113d5df08aa54764e629d25ab85ade1ec27a617d035b446295f",
4+
"adk_agent_engine_no_data": "05def9bdafdaa9a8388e011b5a2b3c3edd0838fe39c0112415610dba6e16c201",
55
"adk_cloud_run_no_data": "a7add7c1e46b9f6cb91981144e673fcea4faad40af22fbc9b31ba28f0e4f16b6",
6-
"adk_live_agent_engine": "533a3febfefe854f92f4744b5365e88fd395156853f37232a75043a6e66c5566",
6+
"adk_live_agent_engine": "d9012014dcf6d9680efe79bdd487769e2f50797554e3d9b12b4b25f2197228f2",
77
"adk_live_cloud_run": "9330fb90ef729b4da44d0067af1ec11c2bdc22356a4ad15b083eddc6625f2b5c",
88
"agent_with_agent_garden": "d140a9ed58cf05755cfdf769f7de891465a2c5309363399986d78a7fcb4b5d03",
99
"agent_with_custom_commands": "7074c57e71c5e9527b78eb1b27de989f875e9efe3f9e857861114c1a5bc7b6ef",
1010
"agentic_rag_cloud_run_vector_search": "af4339d6f7ea405eb760a10b49e03d04d5cb817cc3e2f865e54d7531305f7f0f",
1111
"agentic_rag_cloud_run_vertex_search": "731ade1232409e7b696790c52f98c22c8e8d91c0519724bcca8f571ef75b0f61",
12-
"langgraph_agent_engine": "49f01d675b52b0b8669d5c98270519ee33dc5aee7196e5a00eae5bdeaeac2b37",
12+
"langgraph_agent_engine": "a33a5b0a881b8c4d103f6aa01081a0bd00160a5ef3765d17a8a1b1b812c2d9b8",
1313
"langgraph_cloud_run": "3e33383b3a9c2b1b684d173e38d702f4d60a554926ad7f56064c14383871786b"
1414
}

tests/fixtures/makefile_snapshots/adk_a2a_agent_engine.makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ build-inspector-if-needed:
7878
# ==============================================================================
7979

8080
# Deploy the agent remotely
81+
# Usage: make deploy [AGENT_IDENTITY=true] - Set AGENT_IDENTITY=true to enable per-agent IAM identity (Preview)
8182
deploy:
8283
# Export dependencies to requirements file using uv export.
8384
(uv export --no-hashes --no-header --no-dev --no-emit-project --no-annotate > test_a2a/app_utils/.requirements.txt 2>/dev/null || \
@@ -86,7 +87,8 @@ deploy:
8687
--source-packages=./test_a2a \
8788
--entrypoint-module=test_a2a.agent_engine_app \
8889
--entrypoint-object=agent_engine \
89-
--requirements-file=test_a2a/app_utils/.requirements.txt
90+
--requirements-file=test_a2a/app_utils/.requirements.txt \
91+
$(if $(AGENT_IDENTITY),--agent-identity)
9092

9193
# Alias for 'make deploy' for backward compatibility
9294
backend: deploy

tests/fixtures/makefile_snapshots/adk_agent_engine_no_data.makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ playground:
2828
# ==============================================================================
2929

3030
# Deploy the agent remotely
31+
# Usage: make deploy [AGENT_IDENTITY=true] - Set AGENT_IDENTITY=true to enable per-agent IAM identity (Preview)
3132
deploy:
3233
# Export dependencies to requirements file using uv export.
3334
(uv export --no-hashes --no-header --no-dev --no-emit-project --no-annotate > test_adk/app_utils/.requirements.txt 2>/dev/null || \
@@ -36,7 +37,8 @@ deploy:
3637
--source-packages=./test_adk \
3738
--entrypoint-module=test_adk.agent_engine_app \
3839
--entrypoint-object=agent_engine \
39-
--requirements-file=test_adk/app_utils/.requirements.txt
40+
--requirements-file=test_adk/app_utils/.requirements.txt \
41+
$(if $(AGENT_IDENTITY),--agent-identity)
4042

4143
# Alias for 'make deploy' for backward compatibility
4244
backend: deploy

tests/fixtures/makefile_snapshots/adk_live_agent_engine.makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ playground-dev:
8585
# ==============================================================================
8686

8787
# Deploy the agent remotely
88+
# Usage: make deploy [AGENT_IDENTITY=true] - Set AGENT_IDENTITY=true to enable per-agent IAM identity (Preview)
8889
deploy:
8990
# Export dependencies to requirements file using uv export.
9091
(uv export --no-hashes --no-header --no-dev --no-emit-project --no-annotate > test_adk_live/app_utils/.requirements.txt 2>/dev/null || \
@@ -93,7 +94,8 @@ deploy:
9394
--source-packages=./test_adk_live \
9495
--entrypoint-module=test_adk_live.agent_engine_app \
9596
--entrypoint-object=agent_engine \
96-
--requirements-file=test_adk_live/app_utils/.requirements.txt
97+
--requirements-file=test_adk_live/app_utils/.requirements.txt \
98+
$(if $(AGENT_IDENTITY),--agent-identity)
9799

98100
# Alias for 'make deploy' for backward compatibility
99101
backend: deploy

tests/fixtures/makefile_snapshots/langgraph_agent_engine.makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ build-inspector-if-needed:
7777
# ==============================================================================
7878

7979
# Deploy the agent remotely
80+
# Usage: make deploy [AGENT_IDENTITY=true] - Set AGENT_IDENTITY=true to enable per-agent IAM identity (Preview)
8081
deploy:
8182
# Export dependencies to requirements file using uv export.
8283
(uv export --no-hashes --no-header --no-dev --no-emit-project --no-annotate > test_langgraph/app_utils/.requirements.txt 2>/dev/null || \
@@ -85,7 +86,8 @@ deploy:
8586
--source-packages=./test_langgraph \
8687
--entrypoint-module=test_langgraph.agent_engine_app \
8788
--entrypoint-object=agent_engine \
88-
--requirements-file=test_langgraph/app_utils/.requirements.txt
89+
--requirements-file=test_langgraph/app_utils/.requirements.txt \
90+
$(if $(AGENT_IDENTITY),--agent-identity)
8991

9092
# Alias for 'make deploy' for backward compatibility
9193
backend: deploy

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)