diff --git a/.github/workflows/publish-demos.yml b/.github/workflows/publish-demos.yml
index ba4eac1e..5016011b 100644
--- a/.github/workflows/publish-demos.yml
+++ b/.github/workflows/publish-demos.yml
@@ -17,7 +17,7 @@ on:
required: true
env:
- VERSION: 1.0.0-next
+ VERSION: 1.0.0
jobs:
check-version:
diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml
index e61428cd..67368e57 100644
--- a/.github/workflows/reusable-docker.yml
+++ b/.github/workflows/reusable-docker.yml
@@ -19,7 +19,7 @@ on:
required: true
env:
- VERSION: 1.0.0-next
+ VERSION: 1.0.0
jobs:
build:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9463caa0..318ce24d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,12 @@
# Changelog
-## [1.0.0] - estimated 2024-11
+
+
+## [1.0.0] - 2024-11-29
+
+- [java/operator] Add Theia Cloud Labels on Resources created by operator [#362](https://github.com/eclipse-theia/theia-cloud/pull/362)
+- [node] Updated Node Dependencies [#371](https://github.com/eclipse-theia/theia-cloud/pull/371) - contributed on behalf of STMicroelectronics
+- [terraform] Update `cert-manager`, `ingress-nginx`, and `keycloak` [#371](https://github.com/eclipse-theia/theia-cloud/pull/371) - contributed on behalf of STMicroelectronics
## [0.12.0] - 2024-10-30
diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile b/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
index 33e1a33b..b4e168f1 100644
--- a/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
+++ b/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile
@@ -2,9 +2,9 @@ FROM node:18-bullseye-slim as build-stage
# Copy and unzip the vsix file
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
-COPY theia-cloud-monitor-1.0.0-next.vsix /tmp/theia-cloud-monitor.vsix
+COPY theia-cloud-monitor-1.0.0.vsix /tmp/theia-cloud-monitor.vsix
RUN mkdir /tmp/extracted && unzip /tmp/theia-cloud-monitor.vsix -d /tmp/extracted
-FROM theiacloud/theia-cloud-demo:1.0.0-next as production-stage
+FROM theiacloud/theia-cloud-demo:1.0.0 as production-stage
COPY --chown=theia:theia --from=build-stage /tmp/extracted /home/theia/plugins
\ No newline at end of file
diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix
deleted file mode 100644
index 3bdc485c..00000000
Binary files a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0-next.vsix and /dev/null differ
diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0.vsix b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0.vsix
new file mode 100644
index 00000000..88720d20
Binary files /dev/null and b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-1.0.0.vsix differ
diff --git a/dockerfiles/conversion-webhook/Dockerfile b/dockerfiles/conversion-webhook/Dockerfile
index e4a4bee1..709c2ac6 100644
--- a/dockerfiles/conversion-webhook/Dockerfile
+++ b/dockerfiles/conversion-webhook/Dockerfile
@@ -12,7 +12,7 @@ RUN cd /conversion/common/maven-conf && \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /conversion
-COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-1.0.0-SNAPSHOT-runner.jar .
+COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-1.0.0-runner.jar .
-ENTRYPOINT java -jar ./conversion-webhook-1.0.0-SNAPSHOT-runner.jar
+ENTRYPOINT java -jar ./conversion-webhook-1.0.0-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/dockerfiles/operator/Dockerfile b/dockerfiles/operator/Dockerfile
index 19c338e5..aa4fd991 100644
--- a/dockerfiles/operator/Dockerfile
+++ b/dockerfiles/operator/Dockerfile
@@ -17,7 +17,7 @@ RUN mkdir /templates
WORKDIR /log-config
COPY java/operator/org.eclipse.theia.cloud.defaultoperator/log4j2.xml .
WORKDIR /operator
-COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar .
+COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-jar-with-dependencies.jar .
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
-ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar" ]
+ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-jar-with-dependencies.jar" ]
CMD [ "" ]
diff --git a/dockerfiles/operator/Dockerfile.withcache b/dockerfiles/operator/Dockerfile.withcache
index db849445..c389ea85 100644
--- a/dockerfiles/operator/Dockerfile.withcache
+++ b/dockerfiles/operator/Dockerfile.withcache
@@ -18,7 +18,7 @@ RUN mkdir /templates
WORKDIR /log-config
COPY java/operator/org.eclipse.theia.cloud.defaultoperator/log4j2.xml .
WORKDIR /operator
-COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar .
+COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-jar-with-dependencies.jar .
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
-ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar" ]
+ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-jar-with-dependencies.jar" ]
CMD [ "" ]
diff --git a/dockerfiles/service/Dockerfile b/dockerfiles/service/Dockerfile
index 934fcdd2..b4d05e29 100644
--- a/dockerfiles/service/Dockerfile
+++ b/dockerfiles/service/Dockerfile
@@ -12,7 +12,7 @@ RUN cd /service/common/maven-conf && \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /service
-COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-SNAPSHOT-runner.jar .
+COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-runner.jar .
ENV APPID default-app-id
ENV SERVICE_PORT 8081
@@ -29,5 +29,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
- -jar ./service-1.0.0-SNAPSHOT-runner.jar
+ -jar ./service-1.0.0-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/dockerfiles/service/Dockerfile.withcache b/dockerfiles/service/Dockerfile.withcache
index b96cf5ff..330f6623 100644
--- a/dockerfiles/service/Dockerfile.withcache
+++ b/dockerfiles/service/Dockerfile.withcache
@@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.m2 \
FROM eclipse-temurin:17-jre-alpine
WORKDIR /service
-COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-SNAPSHOT-runner.jar .
+COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.0-runner.jar .
ENV APPID default-app-id
ENV SERVICE_PORT 8081
@@ -30,5 +30,5 @@ ENTRYPOINT java -Dtheia.cloud.app.id=${APPID} \
-Dquarkus.oidc.auth-server-url=${KEYCLOAK_SERVERURL} \
-Dquarkus.oidc.client-id=${KEYCLOAK_CLIENTID} \
-Dquarkus.oidc.credentials.secret=${KEYCLOAK_CLIENTSECRET} \
- -jar ./service-1.0.0-SNAPSHOT-runner.jar
+ -jar ./service-1.0.0-runner.jar
CMD [ "" ]
\ No newline at end of file
diff --git a/java/common/maven-conf/pom.xml b/java/common/maven-conf/pom.xml
index 5e12edc6..8dff5374 100644
--- a/java/common/maven-conf/pom.xml
+++ b/java/common/maven-conf/pom.xml
@@ -5,7 +5,7 @@
4.0.0
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
pom
Theia Cloud Maven Configuration
Common properties and configuration
diff --git a/java/common/org.eclipse.theia.cloud.common/pom.xml b/java/common/org.eclipse.theia.cloud.common/pom.xml
index 6cf402e3..1fb06342 100644
--- a/java/common/org.eclipse.theia.cloud.common/pom.xml
+++ b/java/common/org.eclipse.theia.cloud.common/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
../../common/maven-conf/
diff --git a/java/conversion/org.eclipse.theia.cloud.conversion/README.md b/java/conversion/org.eclipse.theia.cloud.conversion/README.md
index 38d3514c..2aec4f5e 100644
--- a/java/conversion/org.eclipse.theia.cloud.conversion/README.md
+++ b/java/conversion/org.eclipse.theia.cloud.conversion/README.md
@@ -49,7 +49,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
./mvnw package -Pnative -Dquarkus.native.container-build=true
```
-You can then execute your native executable with: `./target/conversion-webhook-1.0.0-SNAPSHOT-runner`
+You can then execute your native executable with: `./target/conversion-webhook-1.0.0-runner`
If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.
diff --git a/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml b/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
index 809680f9..c3309395 100644
--- a/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
+++ b/java/conversion/org.eclipse.theia.cloud.conversion/pom.xml
@@ -9,7 +9,7 @@
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
../../common/maven-conf/
@@ -45,7 +45,7 @@
org.eclipse.theia.cloud
common
- 1.0.0-SNAPSHOT
+ 1.0.0
diff --git a/java/operator/README.md b/java/operator/README.md
index 5c40707d..778d094f 100644
--- a/java/operator/README.md
+++ b/java/operator/README.md
@@ -15,7 +15,7 @@ This project implements the default Kubernetes Operator for Theia Cloud.
```sh
mvn clean install
-java -jar target/defaultoperator-1.0.0-SNAPSHOT-jar-with-dependencies.jar
+java -jar target/defaultoperator-1.0.0-jar-with-dependencies.jar
```
#### Debugging the Default Theia Cloud Operator
diff --git a/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml b/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
index 06cb6f92..f72a494e 100644
--- a/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
+++ b/java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
../../common/maven-conf/
@@ -19,12 +19,12 @@
org.eclipse.theia.cloud
operator
- 1.0.0-SNAPSHOT
+ 1.0.0
org.eclipse.theia.cloud
common
- 1.0.0-SNAPSHOT
+ 1.0.0
org.json
diff --git a/java/operator/org.eclipse.theia.cloud.operator/pom.xml b/java/operator/org.eclipse.theia.cloud.operator/pom.xml
index ba7da32f..b9104d92 100644
--- a/java/operator/org.eclipse.theia.cloud.operator/pom.xml
+++ b/java/operator/org.eclipse.theia.cloud.operator/pom.xml
@@ -11,7 +11,7 @@
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
../../common/maven-conf/
@@ -19,7 +19,7 @@
org.eclipse.theia.cloud
common
- 1.0.0-SNAPSHOT
+ 1.0.0
org.json
diff --git a/java/service/org.eclipse.theia.cloud.service/README.md b/java/service/org.eclipse.theia.cloud.service/README.md
index 985ac1a6..292e70db 100644
--- a/java/service/org.eclipse.theia.cloud.service/README.md
+++ b/java/service/org.eclipse.theia.cloud.service/README.md
@@ -58,7 +58,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
./mvnw package -Pnative -Dquarkus.native.container-build=true
```
-You can then execute your native executable with: `./target/service-1.0.0-SNAPSHOT-runner`
+You can then execute your native executable with: `./target/service-1.0.0-runner`
If you want to learn more about building native executables, please consult .
diff --git a/java/service/org.eclipse.theia.cloud.service/pom.xml b/java/service/org.eclipse.theia.cloud.service/pom.xml
index 14f431a4..d39f1b7a 100644
--- a/java/service/org.eclipse.theia.cloud.service/pom.xml
+++ b/java/service/org.eclipse.theia.cloud.service/pom.xml
@@ -9,7 +9,7 @@
org.eclipse.theia.cloud
conf
- 1.0.0-SNAPSHOT
+ 1.0.0
../../common/maven-conf/
@@ -72,7 +72,7 @@
org.eclipse.theia.cloud
common
- 1.0.0-SNAPSHOT
+ 1.0.0
io.fabric8
diff --git a/java/service/org.eclipse.theia.cloud.service/src/main/resources/META-INF/resources/index.html b/java/service/org.eclipse.theia.cloud.service/src/main/resources/META-INF/resources/index.html
index cda9367e..4417388a 100644
--- a/java/service/org.eclipse.theia.cloud.service/src/main/resources/META-INF/resources/index.html
+++ b/java/service/org.eclipse.theia.cloud.service/src/main/resources/META-INF/resources/index.html
@@ -2,7 +2,7 @@
- service - 1.0.0-SNAPSHOT
+ service - 1.0.0