Skip to content

Commit c69bbaf

Browse files
Release 0.10.0 (#291)
Contributed on behalf of STMicroelectronics Co-authored-by: Simon Graband <sgraband@eclipsesource.com>
1 parent f5d7e4a commit c69bbaf

File tree

28 files changed

+52
-50
lines changed

28 files changed

+52
-50
lines changed

.github/workflows/publish-demos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
required: true
1818

1919
env:
20-
VERSION: 0.10.0-next
20+
VERSION: 0.10.0
2121

2222
jobs:
2323
check-version:

.github/workflows/reusable-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
required: true
2020

2121
env:
22-
VERSION: 0.10.0-next
22+
VERSION: 0.10.0
2323

2424
jobs:
2525
build:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## [0.10.0] - estimated 2024-04
3+
<!-- ## [0.11.0] - estimated 2024-07 -->
4+
5+
## [0.10.0] - 2024-04-02
46

57
- [.github/workflows] Improve version detection in workflows (do not build release commits, auto-detect version for demo publishing) [#280](https://github.com/eclipsesource/theia-cloud/pull/280) - contributed on behalf of STMicroelectronics
68
- [node] Separate `monitor` package from other workspaces to fix bundling the extension [#280](https://github.com/eclipsesource/theia-cloud/pull/280) - contributed on behalf of STMicroelectronics
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM theiacloud/theia-cloud-demo:0.10.0-next as production-stage
1+
FROM theiacloud/theia-cloud-demo:0.10.0 as production-stage
22

3-
COPY --chown=theia:theia theiacloud-monitor-0.10.0-next.vsix /home/theia/plugins
3+
COPY --chown=theia:theia theiacloud-monitor-0.10.0.vsix /home/theia/plugins

demo/dockerfiles/demo-theia-monitor-vscode/theiacloud-monitor-0.10.0-next.vsix renamed to demo/dockerfiles/demo-theia-monitor-vscode/theiacloud-monitor-0.10.0.vsix

382 KB
Binary file not shown.

dockerfiles/conversion-webhook/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN cd /conversion/common/maven-conf && \
1212

1313
FROM eclipse-temurin:17-jre-alpine
1414
WORKDIR /conversion
15-
COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-0.10.0-SNAPSHOT-runner.jar .
15+
COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-0.10.0-runner.jar .
1616

17-
ENTRYPOINT java -jar ./conversion-webhook-0.10.0-SNAPSHOT-runner.jar
17+
ENTRYPOINT java -jar ./conversion-webhook-0.10.0-runner.jar
1818
CMD [ "" ]

dockerfiles/operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN mkdir /templates
1515
WORKDIR /log-config
1616
COPY java/operator/org.eclipse.theia.cloud.operator/log4j2.xml .
1717
WORKDIR /operator
18-
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.10.0-SNAPSHOT-jar-with-dependencies.jar .
18+
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.10.0-jar-with-dependencies.jar .
1919
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
20-
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.10.0-SNAPSHOT-jar-with-dependencies.jar" ]
20+
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.10.0-jar-with-dependencies.jar" ]
2121
CMD [ "" ]

dockerfiles/operator/Dockerfile.withcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir /templates
1616
WORKDIR /log-config
1717
COPY java/operator/org.eclipse.theia.cloud.operator/log4j2.xml .
1818
WORKDIR /operator
19-
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.10.0-SNAPSHOT-jar-with-dependencies.jar .
19+
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.operator/target/operator-0.10.0-jar-with-dependencies.jar .
2020
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
21-
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.10.0-SNAPSHOT-jar-with-dependencies.jar" ]
21+
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./operator-0.10.0-jar-with-dependencies.jar" ]
2222
CMD [ "" ]

dockerfiles/service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN cd /service/common/maven-conf && \
1212

1313
FROM eclipse-temurin:17-jre-alpine
1414
WORKDIR /service
15-
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.10.0-SNAPSHOT-runner.jar .
15+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.10.0-runner.jar .
1616
ENV APPID default-app-id
1717
ENV SERVICE_PORT 8081
1818

@@ -29,5 +29,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
2929
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
3030
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
3131
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
32-
-jar ./service-0.10.0-SNAPSHOT-runner.jar
32+
-jar ./service-0.10.0-runner.jar
3333
CMD [ "" ]

dockerfiles/service/Dockerfile.withcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.m2 \
1313

1414
FROM eclipse-temurin:17-jre-alpine
1515
WORKDIR /service
16-
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.10.0-SNAPSHOT-runner.jar .
16+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.10.0-runner.jar .
1717
ENV APPID default-app-id
1818
ENV SERVICE_PORT 8081
1919

@@ -30,5 +30,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
3030
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
3131
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
3232
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
33-
-jar ./service-0.10.0-SNAPSHOT-runner.jar
33+
-jar ./service-0.10.0-runner.jar
3434
CMD [ "" ]

0 commit comments

Comments
 (0)