Skip to content

Commit 0d68496

Browse files
fix(deps): update auto merged updates (#863)
Signed-off-by: Platform Engineering Bot <platform-engineering@redhat.com>
1 parent 900d38a commit 0d68496

File tree

12 files changed

+80
-62
lines changed

12 files changed

+80
-62
lines changed

model_servers/object_detection_python/src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mdurl==0.1.2
2222
mpmath==1.3.0
2323
networkx==3.3
2424
numpy==2.0.1
25-
orjson==3.10.15
25+
orjson==3.10.16
2626
packaging==24.1
2727
pillow==10.3.0
2828
pydantic==2.7.4

recipes/natural_language_processing/chatbot-java-quarkus/app/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<dependency>
6464
<groupId>org.mvnpm</groupId>
6565
<artifactId>wc-chatbot</artifactId>
66-
<version>0.2.0</version>
66+
<version>0.2.1</version>
6767
<scope>runtime</scope>
6868
</dependency>
6969
</dependencies>
@@ -87,7 +87,7 @@
8787
</plugin>
8888
<plugin>
8989
<artifactId>maven-surefire-plugin</artifactId>
90-
<version>3.5.2</version>
90+
<version>3.5.3</version>
9191
<configuration>
9292
<systemPropertyVariables>
9393
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
@@ -110,7 +110,7 @@
110110
<plugins>
111111
<plugin>
112112
<artifactId>maven-failsafe-plugin</artifactId>
113-
<version>3.5.2</version>
113+
<version>3.5.3</version>
114114
<executions>
115115
<execution>
116116
<goals>

recipes/natural_language_processing/chatbot-nodejs/app/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install dependencies only when needed
2-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS deps
2+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS deps
33
USER 0
44
WORKDIR /app
55

@@ -13,7 +13,7 @@ RUN \
1313
fi
1414

1515
# Rebuild the source code only when needed
16-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS builder
16+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS builder
1717
USER 0
1818
WORKDIR /app
1919
COPY --from=deps /app/node_modules ./node_modules
@@ -28,7 +28,7 @@ ENV NEXT_TELEMETRY_DISABLED 1
2828
RUN npm run build
2929

3030
# Production image, copy all the files and run next
31-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS runner
31+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS runner
3232
USER 0
3333
WORKDIR /app
3434

recipes/natural_language_processing/chatbot-nodejs/app/package-lock.json

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

recipes/natural_language_processing/chatbot-nodejs/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"web-vitals": "^2.1.4"
2020
},
2121
"devDependencies": {
22-
"autoprefixer": "^10.4.19",
22+
"autoprefixer": "^10.4.20",
2323
"eslint": "^8",
2424
"eslint-config-next": "14.0.3",
2525
"postcss": "^8.4.39",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
streamlit==1.41.1
2-
pydantic-ai==0.0.36
2+
pydantic-ai==0.0.52

recipes/natural_language_processing/function-calling-nodejs/app/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install the app dependencies in a full UBI Node docker image
2-
FROM registry.access.redhat.com/ubi9/nodejs-20:9.5-1741165622
2+
FROM registry.access.redhat.com/ubi9/nodejs-20:9.5-1743584090
33

44
# Copy package.json
55
COPY --chown=default:root --chmod=0775 package*.json ./

recipes/natural_language_processing/function-calling-nodejs/app/package-lock.json

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

recipes/natural_language_processing/graph-rag/app/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ nest_asyncio==1.6.0
88
future==1.0.0
99
setuptools==75.8.2
1010
tenacity==9.0.0
11-
PyMuPDF==1.25.3
11+
PyMuPDF==1.25.5
1212
streamlit==1.42.0
1313
tiktoken
1414
torch

recipes/natural_language_processing/rag-nodejs/app/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install dependencies only when needed
2-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS deps
2+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS deps
33
USER 0
44
WORKDIR /app
55

@@ -13,7 +13,7 @@ RUN \
1313
fi
1414

1515
# Rebuild the source code only when needed
16-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS builder
16+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS builder
1717
USER 0
1818
WORKDIR /app
1919
COPY --from=deps /app/node_modules ./node_modules
@@ -28,7 +28,7 @@ ENV NEXT_TELEMETRY_DISABLED 1
2828
RUN npm run build
2929

3030
# Production image, copy all the files and run next
31-
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-141.1740063160 AS runner
31+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1-142.1741811153 AS runner
3232
USER 0
3333
WORKDIR /app
3434

0 commit comments

Comments
 (0)