Skip to content

Commit 0dc1378

Browse files
authored
Merge branch 'main' into spec-update/orchestration/fix/streaming-response-type
2 parents 46413d0 + 8d0d5cf commit 0dc1378

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/spec-update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ jobs:
8888
FILE_PATH='core-services/document-grounding/src/main/resources/spec/grounding.yaml'
8989
;;
9090
orchestration)
91-
API_URL="$API_BASE_URL/AI/llm-orchestration/contents/src/spec/api.yaml?ref=$REF"
92-
FILE_PATH='orchestration/src/main/resources/spec/v1.yaml'
91+
API_URL="$API_BASE_URL/AI/llm-orchestration/contents/src/spec/v2.yaml?ref=$REF"
92+
FILE_PATH='orchestration/src/main/resources/spec/orchestration.yaml'
9393
;;
9494
prompt-registry)
9595
API_URL="$API_BASE_URL/AI/prompt-registry/contents/src/spec/prompt-registry.yaml?ref=$REF"

core-services/prompt-registry/src/main/resources/spec/prompt-registry.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,12 +544,15 @@ components:
544544
name:
545545
type: string
546546
maxLength: 120
547+
pattern: "^[a-zA-Z0-9_-]+$"
547548
version:
548549
type: string
549550
maxLength: 10
551+
pattern: "^[a-zA-Z0-9._-]+$"
550552
scenario:
551553
type: string
552554
maxLength: 120
555+
pattern: "^[a-zA-Z0-9_-]+$"
553556
spec:
554557
$ref: "#/components/schemas/PromptTemplateSpec"
555558
PromptTemplatePostResponse:

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6060
<project.build.outputTimestamp>2025-04-03T13:23:00Z</project.build.outputTimestamp>
6161
<cloud-sdk.version>5.20.0</cloud-sdk.version>
62-
<junit-jupiter.version>5.13.2</junit-jupiter.version>
62+
<junit-jupiter.version>5.13.3</junit-jupiter.version>
6363
<wiremock.version>3.13.1</wiremock.version>
6464
<assertj-core.version>3.27.3</assertj-core.version>
6565
<slf4j.version>2.0.17</slf4j.version>
@@ -326,7 +326,7 @@
326326
<plugin>
327327
<groupId>org.apache.maven.plugins</groupId>
328328
<artifactId>maven-enforcer-plugin</artifactId>
329-
<version>3.5.0</version>
329+
<version>3.6.0</version>
330330
<configuration>
331331
<fail>true</fail>
332332
<skip>${enforcer.skip}</skip>
@@ -889,7 +889,7 @@ https://gitbox.apache.org/repos/asf?p=maven-pmd-plugin.git;a=blob_plain;f=src/ma
889889
<plugin>
890890
<groupId>org.apache.maven.plugins</groupId>
891891
<artifactId>maven-gpg-plugin</artifactId>
892-
<version>3.2.7</version>
892+
<version>3.2.8</version>
893893
<executions>
894894
<execution>
895895
<id>sign-artifacts</id>

sample-code/spring-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<spring-boot.version>3.5.0</spring-boot.version>
3737
<logback.version>1.5.18</logback.version>
3838
<cf-logging.version>3.8.5</cf-logging.version>
39-
<apache-tomcat-embed.version>11.0.8</apache-tomcat-embed.version>
39+
<apache-tomcat-embed.version>11.0.9</apache-tomcat-embed.version>
4040
<!-- Skip end-to-end tests by default, can be overridden with -DskipTests=false -->
4141
<skipTests>true</skipTests>
4242
<!-- Allow logging frameworks because this module is not released -->

0 commit comments

Comments
 (0)