Skip to content

Commit 13a80e9

Browse files
authored
Merge branch 'develop' into feature/metainfo_editor_default_image
2 parents 86d5be8 + 371831b commit 13a80e9

File tree

12 files changed

+28
-26
lines changed

12 files changed

+28
-26
lines changed

Earthfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG --global --required MAVEN_REGISTRY_RELEASES
88
ARG --global --required MAVEN_REGISTRY_SNAPSHOTS
99

1010
build:
11-
FROM eclipse-temurin:21.0.6_7-jdk-alpine
11+
FROM eclipse-temurin:21.0.7_6-jdk-alpine
1212
DO github.com/genestack/earthly-libs+GRADLE_PREPARE
1313

1414
CACHE /root/.gradle/caches

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ repositories {
77
}
88

99
dependencies {
10-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.3")
10+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.0")
1111
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
22

33
[versions]
4-
openapiGenerator = "7.12.0"
4+
openapiGenerator = "7.13.0"
55

66
[plugins]
77
openapi-generator = { id = "org.openapi.generator", version.ref = "openapiGenerator" }

gradle/wrapper/gradle-wrapper.jar

59 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
1-
#
2-
# Copyright (c) 2011-2025 Genestack Limited
3-
# All Rights Reserved
4-
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF GENESTACK LIMITED
5-
# The copyright notice above does not evidence any
6-
# actual or intended publication of such source code.
7-
#
8-
91
distributionBase=GRADLE_USER_HOME
102
distributionPath=wrapper/dists
11-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
124
networkTimeout=10000
135
validateDistributionUrl=true
146
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/Earthfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VERSION 0.8
22

33
swagger:
4-
FROM swaggerapi/swagger-ui:v5.21.0
4+
FROM swaggerapi/swagger-ui:v5.22.0
55

66
COPY v1 /usr/share/nginx/html/yaml/
77
COPY swagger/fs /
@@ -20,7 +20,7 @@ swagger:
2020
SAVE IMAGE --cache-hint
2121

2222
explorer-build:
23-
FROM node:22.14.0-alpine
23+
FROM node:22.16.0-alpine
2424
DO github.com/genestack/earthly-libs+NPM_PREPARE
2525

2626
CACHE /root/.npm
@@ -31,7 +31,7 @@ explorer-build:
3131
SAVE ARTIFACT node_modules/openapi-explorer/dist/browser/openapi-explorer.min.js
3232

3333
explorer:
34-
FROM nginxinc/nginx-unprivileged:1.27.4-alpine
34+
FROM nginxinc/nginx-unprivileged:1.28.0-alpine
3535

3636
COPY v1/schemas /usr/share/nginx/html/schemas/
3737
COPY v1/odmApi.yaml /usr/share/nginx/html/

openapi/explorer/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/v1/odmApi.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18026,6 +18026,9 @@ paths:
1802618026
post:
1802718027
operationId: "create"
1802818028
requestBody:
18029+
description: "Request body for creating a new xrefset.\n## Important:\nThe\
18030+
\ length of 'sourceId' strings is limited to 255 characters. Ensure that\
18031+
\ the provided values adhere to this limitation to avoid data truncation.\n"
1802918032
content:
1803018033
application/json:
1803118034
schema:
@@ -18073,7 +18076,9 @@ paths:
1807318076
targetId\" and \"sourceId\". If non-empty lists of values for \"targetId\"\
1807418077
\ and \"sourceId\" are supplied, the following search rule is applied: (sourceId\
1807518078
\ = \"S1\" OR .. sourceId = \"Sn\") AND (targetId = \"T1\" OR .. targetId\
18076-
\ = \"Tm\").\n\n"
18079+
\ = \"Tm\").\n## Important:\nThe length of 'sourceId' strings is limited to\
18080+
\ 255 characters. Ensure that the provided values adhere to this limitation\
18081+
\ to avoid data truncation.\n"
1807718082
operationId: "searchEntries"
1807818083
parameters:
1807918084
- description: "Supply sourceId in the format \"sourceId\". For transcript-gene\

0 commit comments

Comments
 (0)