From c3562238f76706f1a7854cf0d40a4f59d795dd80 Mon Sep 17 00:00:00 2001 From: Johannes Faltermeier Date: Wed, 30 Oct 2024 14:12:04 +0100 Subject: [PATCH] Prepare 0.12.0 Release (#369) * move devcontainer to gke directory * create changelog * update versions * update vsix --- .github/workflows/publish-demos.yml | 2 +- .github/workflows/reusable-docker.yml | 2 +- CHANGELOG.md | 28 +++++++++++++++++- .../demo-theia-docker/project/java/pom.xml | 2 +- .../demo-theia-monitor-vscode/Dockerfile | 4 +-- .../project/java/pom.xml | 2 +- ...t.vsix => theia-cloud-monitor-0.12.0.vsix} | Bin 391625 -> 391615 bytes dockerfiles/conversion-webhook/Dockerfile | 4 +-- dockerfiles/operator/Dockerfile | 4 +-- dockerfiles/operator/Dockerfile.withcache | 4 +-- dockerfiles/service/Dockerfile | 4 +-- dockerfiles/service/Dockerfile.withcache | 4 +-- java/common/maven-conf/pom.xml | 2 +- .../org.eclipse.theia.cloud.common/pom.xml | 2 +- .../README.md | 2 +- .../pom.xml | 4 +-- java/operator/README.md | 2 +- .../pom.xml | 6 ++-- .../org.eclipse.theia.cloud.operator/pom.xml | 4 +-- .../org.eclipse.theia.cloud.service/README.md | 2 +- .../org.eclipse.theia.cloud.service/pom.xml | 4 +-- node/common/package.json | 2 +- node/landing-page/package.json | 2 +- node/monitor-theia/package.json | 2 +- node/monitor/package-lock.json | 4 +-- node/monitor/package.json | 2 +- node/package-lock.json | 8 ++--- node/testing-page/package.json | 2 +- .../.devcontainer}/devcontainer.json | 0 .../scripts/install-dependencies.sh | 0 terraform/modules/helm/theia-cloud.yaml | 4 +-- .../2-02_monitor/theia_cloud.tf | 2 +- terraform/values/valuesDemo.yaml | 4 +-- terraform/values/valuesMonitor.yaml | 4 +-- 34 files changed, 75 insertions(+), 49 deletions(-) rename demo/dockerfiles/demo-theia-monitor-vscode/{theia-cloud-monitor-0.12.0-next.vsix => theia-cloud-monitor-0.12.0.vsix} (98%) rename {.devcontainer => terraform/configurations/gke_getting_started/.devcontainer}/devcontainer.json (100%) rename {.devcontainer => terraform/configurations/gke_getting_started/.devcontainer}/scripts/install-dependencies.sh (100%) diff --git a/.github/workflows/publish-demos.yml b/.github/workflows/publish-demos.yml index 86cbd819..2eadf89e 100644 --- a/.github/workflows/publish-demos.yml +++ b/.github/workflows/publish-demos.yml @@ -17,7 +17,7 @@ on: required: true env: - VERSION: 0.12.0-next + VERSION: 0.12.0 jobs: check-version: diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml index 56a615da..56c565eb 100644 --- a/.github/workflows/reusable-docker.yml +++ b/.github/workflows/reusable-docker.yml @@ -19,7 +19,7 @@ on: required: true env: - VERSION: 0.12.0-next + VERSION: 0.12.0 jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2885a35e..9463caa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,32 @@ # Changelog -## [0.12.0] - estimated 2024-10 +## [1.0.0] - estimated 2024-11 + +## [0.12.0] - 2024-10-30 + +- [All components] Documented naming conventions and updated code to follow [#368](https://github.com/eclipse-theia/theia-cloud/pull/368) +- [documentation] Add REST API markdown docs [#363](https://github.com/eclipse-theia/theia-cloud/pull/363) +- [node/common] Update Common Package to support listing app definitions [#361](https://github.com/eclipse-theia/theia-cloud/pull/361) +- [java/service] Extend service with a list app definitions endpoint [#361](https://github.com/eclipse-theia/theia-cloud/pull/361) +- [documentation] Improved debugging documentation [#354](https://github.com/eclipse-theia/theia-cloud/pull/354) +- [java] Fixed issue where monitor might have stopped session during session startup [#354](https://github.com/eclipse-theia/theia-cloud/pull/354) +- [terraform] Added Devcontainer for GKE demo [#353](https://github.com/eclipse-theia/theia-cloud/pull/353) +- [github] Moved from `eclipsesource` to `eclipse-theia` org as an official Theia subproject [#353](https://github.com/eclipse-theia/theia-cloud/pull/353) [#358](https://github.com/eclipse-theia/theia-cloud/pull/358) +- [node] Updated Node Dependencies [#345](https://github.com/eclipse-theia/theia-cloud/pull/345) - contributed on behalf of STMicroelectronics +- [java] Updated Maven Dependencies [#345](https://github.com/eclipse-theia/theia-cloud/pull/345) - contributed on behalf of STMicroelectronics + +### Breaking Changes in 0.12.0 + +See the helm chart Changelog for [more details](https://github.com/eclipse-theia/theia-cloud-helm/blob/main/CHANGELOG.md#breaking-changes-in-0120). + +We did some renaming in preparation for 1.0.0 + +- NOTE: default namespace renamed from `theiacloud` to `theia-cloud` +- Config Map template label key updated from `theiacloud` to `theia-cloud.io/template-purpose` +- PVC label `theia.cloud.workspace.name` renamed to `theia-cloud.io/workspace-name` +- System property `THEIA_CLOUD_APP_ID` renamed to `THEIACLOUD_APP_ID` +- System property `THEIA_CLOUD_USE_KEYCLOAK` renamed to `THEIACLOUD_USE_KEYCLOAK` +- Theia Monitor paths changed from `/services/theiacloud-` to `/services/theia-cloud-` ## [0.11.0] - 2024-07-23 diff --git a/demo/dockerfiles/demo-theia-docker/project/java/pom.xml b/demo/dockerfiles/demo-theia-docker/project/java/pom.xml index c4ff1c43..c3bbbf8d 100644 --- a/demo/dockerfiles/demo-theia-docker/project/java/pom.xml +++ b/demo/dockerfiles/demo-theia-docker/project/java/pom.xml @@ -7,7 +7,7 @@ com.example demo - 1.0-SNAPSHOT + 0.0.1 demo diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile b/demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile index 2b4fd889..a3ccbabe 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-0.12.0-next.vsix /tmp/theia-cloud-monitor.vsix +COPY theia-cloud-monitor-0.12.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:0.12.0-next as production-stage +FROM theiacloud/theia-cloud-demo:0.12.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/project/java/pom.xml b/demo/dockerfiles/demo-theia-monitor-vscode/project/java/pom.xml index c4ff1c43..c3bbbf8d 100644 --- a/demo/dockerfiles/demo-theia-monitor-vscode/project/java/pom.xml +++ b/demo/dockerfiles/demo-theia-monitor-vscode/project/java/pom.xml @@ -7,7 +7,7 @@ com.example demo - 1.0-SNAPSHOT + 0.0.1 demo diff --git a/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0-next.vsix b/demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0.vsix similarity index 98% rename from demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0-next.vsix rename to demo/dockerfiles/demo-theia-monitor-vscode/theia-cloud-monitor-0.12.0.vsix index e6612cc1fcf7941ea1e57d607522ee2551b4d6b3..6d18dbdb82a0b0b174458d18e096dac2e3d6bb70 100644 GIT binary patch delta 2326 zcmY*a3piBk8eVHwKjY4E8zRJ*LhhHObV0?)qZG{!XX>a)L+Q3lF=Hqk8P}S{mX3`! z5^W4qxs>7{MT|~m?2t;y-55i~UNfD&pRDIu&-(uFd*Ao_{(t@7|F_L(KbX;8=}Sgd zXh0Ai5B(!3n4c%rc5hBQ?QPpijKAko=f-2^ zTc30e_#GaSpNxtV1P?v7T8L|O6Z_Uf&;4RHR4b8OH@m3&8J3u|jkILn^`m<7Ewgs! zaBMFpvc{rws|I{Ll5L+?qJ)53!Q;10hhH1<80+sAXXIQX7uX;M72Rh0Llu%hof?5| zk=z%Z;oNjZUOU+=&^kN<4wDOOR%h0I?rp-E25T4QmU&q>Z8KG^c!b3ELs#a~uFY)K zzTs@*3p>+%CzXF2v5@Y~>@^#Ele z{ON#&cM%pZ6yK)J?Dg}v{M;7T^bz-KK&Qfl_pYpC7lM6Ay}T_uyVZ-Gx?c)^4QybG z>MZ1kKY6?jH0JCxuiM7NbqkD{vqqb}d}{;F?f2_nY3$Sy_lws9|M8ZsSEJ^iW*==c zrpZ}cw!5Pq&ew_@f(faesY^8jB>Lw;;`zA-)pJ^&y2dKCTsmdve{kREhbXxz14R~H zLH_Jc&DGBz%alKmy%Gd7`(?klWC1%*N>i^wy!JDqK4S-s5^?jYtouECE7Dm;Qg?w_ zDyz^@ykFQp`{Mis{SPCZNwK_0dB(Jf+7fQr7Or}WGlY@!z~D?8-UwYk1JtUVR;-8B zFb@U#;US`p!-%>RkXZ=cOBhwjGOwi6DjI$rj9~o`hsq_OaxnJdc&HrWE|55RZ{8u@ zIEj@|HH`48hF45QO6a_zgJ1|Jwb&t`L8`>_IRZ9)w^C@p?7LNa6v#_0v^5kgNC+q< zX^6(m0RsB%7-*Mjw9~<=@2Jr*P$+R>Gm?S;$`Au3UUN9;WFY1k8yyASOrQKUOZB*% zYNuLuZ>G}Bn~g`#Kc2zmJ-^+YAG_Lqjn3ecGqK$5?bN_2OWY-)e?`#=<8fM3V^Lz< z9YlH3CQsD;F`ae8CDg62IIp$%z!0_Lc(TeGLqfsVEu&rY>D|K&L_sWvyNMAtpST@vydBWb^70HF_VXT5%VzppQ#DMJ(Hq@sn?d?ryIM z7d@30wzALoeQKb$&^%Q6Nm2D+g59}Rw|tWC@Ltz#`#LTc+k4>ZEg%Nz-ha7ADQqUm zB+HE+6*j@|Ntg^#FXK=ymVdp|%-`A1Q#rfNVZpO-t}oG~DyZvO2Gf#cL4)Z-CO*+- z4GA(q6?amm3@>WwpW+uN+YQXGIF{`loOd(L_3A~mt9HsuCP!cYR;6+{&#&7leKE$R zUA#%PTbD)6Rnu2_UDl?%=iiAvHJ~J#>ecvKr|ITr`(!!WjaI3C3ZuJq1o_H$9=cPP z9ASJUmF1LOT&SGRV!AHEgIhv96Rr&jI}jr=Ax1`pD@-xi>o*(hdSgw=oSxB*m>2j< z);FIbQ!HoOKk%w=CvFlWM=LMiro!f|vXW`UM!v~(SLN=O>Q8sM$&-5sjMQ;|Ghyhz ztPe1bv_{b1N1F0BUFUPf{d$?Q;HMs(1A3bOw&3hXzRU0RdWEI*`yDUXYNzOd=0H#q zHa6S$8uz7>q|QvX<4gc;W@`V|jY={)eS4G*4($t2L8|NXbDVTI&Z*;s4VUNUFIg5}an{E< zAGn^rDeAanlcTX3?;7IRu{%J24r9) z3E{7Y%j&{qPT@4sg=wHDZ56p0uo5RkGFiYF^_&5UhFE7%Qpq*#Ef~iUh9Kf!TvZ9**1oc1NdxXp+Lb_L=giB_8F>)}C+n~!N3Ez|PH zf2X0ALZD$FDO^`zERaQ}@EMkd|fPqQ~ceqqLNd3nPiGSTGC&nJ)v~r=ut4z*=-{?t4Ct z7^_4OCUI&>jyO4Vqxk=SjVuYphW{OMLVS(`^u%#sg7%5AWo{plj#i`Q^FYM_I}<5C i?oF*9(iXDfQOZ0ZO8*RN9-B}YnmZ3nW$4oYgZ&9?{;`w* delta 2310 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 diff --git a/dockerfiles/conversion-webhook/Dockerfile b/dockerfiles/conversion-webhook/Dockerfile index afe83540..56bf730b 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-0.12.0-SNAPSHOT-runner.jar . +COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-0.12.0-runner.jar . -ENTRYPOINT java -jar ./conversion-webhook-0.12.0-SNAPSHOT-runner.jar +ENTRYPOINT java -jar ./conversion-webhook-0.12.0-runner.jar CMD [ "" ] \ No newline at end of file diff --git a/dockerfiles/operator/Dockerfile b/dockerfiles/operator/Dockerfile index 56f6fdb9..75d429fb 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-0.12.0-SNAPSHOT-jar-with-dependencies.jar . +COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-0.12.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-0.12.0-SNAPSHOT-jar-with-dependencies.jar" ] +ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-0.12.0-jar-with-dependencies.jar" ] CMD [ "" ] diff --git a/dockerfiles/operator/Dockerfile.withcache b/dockerfiles/operator/Dockerfile.withcache index df932379..e95db639 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-0.12.0-SNAPSHOT-jar-with-dependencies.jar . +COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-0.12.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-0.12.0-SNAPSHOT-jar-with-dependencies.jar" ] +ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-0.12.0-jar-with-dependencies.jar" ] CMD [ "" ] diff --git a/dockerfiles/service/Dockerfile b/dockerfiles/service/Dockerfile index b9f6c549..e1911acc 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-0.12.0-SNAPSHOT-runner.jar . +COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.12.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-0.12.0-SNAPSHOT-runner.jar + -jar ./service-0.12.0-runner.jar CMD [ "" ] \ No newline at end of file diff --git a/dockerfiles/service/Dockerfile.withcache b/dockerfiles/service/Dockerfile.withcache index e468153d..47b29c33 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-0.12.0-SNAPSHOT-runner.jar . +COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-0.12.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-0.12.0-SNAPSHOT-runner.jar + -jar ./service-0.12.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 9a0c3cbf..c4fb90b6 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 - 0.12.0-SNAPSHOT + 0.12.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 aff38b82..2d6b82ba 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 - 0.12.0-SNAPSHOT + 0.12.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..cb270091 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-0.12.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 5bfd29a6..a2735405 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 - 0.12.0-SNAPSHOT + 0.12.0 ../../common/maven-conf/ @@ -45,7 +45,7 @@ org.eclipse.theia.cloud common - 0.12.0-SNAPSHOT + 0.12.0 diff --git a/java/operator/README.md b/java/operator/README.md index f9849178..3b53e7f0 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-0.12.0-SNAPSHOT-jar-with-dependencies.jar +java -jar target/defaultoperator-0.12.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 1a7d3eab..849b250f 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 - 0.12.0-SNAPSHOT + 0.12.0 ../../common/maven-conf/ @@ -19,12 +19,12 @@ org.eclipse.theia.cloud operator - 0.12.0-SNAPSHOT + 0.12.0 org.eclipse.theia.cloud common - 0.12.0-SNAPSHOT + 0.12.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 8e3e081c..7add5633 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 - 0.12.0-SNAPSHOT + 0.12.0 ../../common/maven-conf/ @@ -19,7 +19,7 @@ org.eclipse.theia.cloud common - 0.12.0-SNAPSHOT + 0.12.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..3051d892 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-0.12.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 966d5e2f..d3ab3a04 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 - 0.12.0-SNAPSHOT + 0.12.0 ../../common/maven-conf/ @@ -72,7 +72,7 @@ org.eclipse.theia.cloud common - 0.12.0-SNAPSHOT + 0.12.0 io.fabric8 diff --git a/node/common/package.json b/node/common/package.json index 892d6880..2ecd2d16 100644 --- a/node/common/package.json +++ b/node/common/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-theiacloud/common", - "version": "0.12.0-next", + "version": "0.12.0", "description": "Common functionality for Theia Cloud", "license": "EPL-2.0", "keywords": [ diff --git a/node/landing-page/package.json b/node/landing-page/package.json index 9b4642bc..a7e17108 100644 --- a/node/landing-page/package.json +++ b/node/landing-page/package.json @@ -10,7 +10,7 @@ "preview": "vite preview" }, "dependencies": { - "@eclipse-theiacloud/common": "0.12.0-next", + "@eclipse-theiacloud/common": "0.12.0", "keycloak-js": "20.0.5", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/node/monitor-theia/package.json b/node/monitor-theia/package.json index 6b0c1a38..8e98fc60 100644 --- a/node/monitor-theia/package.json +++ b/node/monitor-theia/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-theiacloud/monitor-theia", - "version": "0.12.0-next", + "version": "0.12.0", "keywords": [ "theia-extension" ], diff --git a/node/monitor/package-lock.json b/node/monitor/package-lock.json index 3329c276..89615077 100644 --- a/node/monitor/package-lock.json +++ b/node/monitor/package-lock.json @@ -1,12 +1,12 @@ { "name": "theia-cloud-monitor", - "version": "0.12.0-next", + "version": "0.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "theia-cloud-monitor", - "version": "0.12.0-next", + "version": "0.12.0", "license": "EPL-2.0", "dependencies": { "express": "^4.19.2", diff --git a/node/monitor/package.json b/node/monitor/package.json index b21bec7d..389fa446 100644 --- a/node/monitor/package.json +++ b/node/monitor/package.json @@ -2,7 +2,7 @@ "name": "theia-cloud-monitor", "displayName": "Theia Cloud Monitor extension", "description": "Monitor for Theia Cloud hosted tools", - "version": "0.12.0-next", + "version": "0.12.0", "license": "EPL-2.0", "author": { "name": "Theia Cloud" diff --git a/node/package-lock.json b/node/package-lock.json index 09e10b50..4add66c1 100644 --- a/node/package-lock.json +++ b/node/package-lock.json @@ -34,7 +34,7 @@ }, "common": { "name": "@eclipse-theiacloud/common", - "version": "0.12.0-next", + "version": "0.12.0", "license": "EPL-2.0", "dependencies": { "@types/uuid": "^8.3.4", @@ -45,7 +45,7 @@ "landing-page": { "version": "0.1.0", "dependencies": { - "@eclipse-theiacloud/common": "0.12.0-next", + "@eclipse-theiacloud/common": "0.12.0", "keycloak-js": "20.0.5", "react": "^18.2.0", "react-dom": "^18.2.0" @@ -61,7 +61,7 @@ }, "monitor-theia": { "name": "@eclipse-theiacloud/monitor-theia", - "version": "0.12.0-next", + "version": "0.12.0", "devDependencies": { "rimraf": "^3.0.2" }, @@ -23890,7 +23890,7 @@ "testing-page": { "version": "0.1.0", "dependencies": { - "@eclipse-theiacloud/common": "0.12.0-next", + "@eclipse-theiacloud/common": "0.12.0", "keycloak-js": "^17.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/node/testing-page/package.json b/node/testing-page/package.json index ebe094c1..709f6366 100644 --- a/node/testing-page/package.json +++ b/node/testing-page/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@eclipse-theiacloud/common": "0.12.0-next", + "@eclipse-theiacloud/common": "0.12.0", "keycloak-js": "^17.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/.devcontainer/devcontainer.json b/terraform/configurations/gke_getting_started/.devcontainer/devcontainer.json similarity index 100% rename from .devcontainer/devcontainer.json rename to terraform/configurations/gke_getting_started/.devcontainer/devcontainer.json diff --git a/.devcontainer/scripts/install-dependencies.sh b/terraform/configurations/gke_getting_started/.devcontainer/scripts/install-dependencies.sh similarity index 100% rename from .devcontainer/scripts/install-dependencies.sh rename to terraform/configurations/gke_getting_started/.devcontainer/scripts/install-dependencies.sh diff --git a/terraform/modules/helm/theia-cloud.yaml b/terraform/modules/helm/theia-cloud.yaml index 2c79f2c7..edfe2e0f 100644 --- a/terraform/modules/helm/theia-cloud.yaml +++ b/terraform/modules/helm/theia-cloud.yaml @@ -5,7 +5,7 @@ app: name: Theia Cloud demoApplication: - name: theiacloud/theia-cloud-demo:0.12.0-next + name: theiacloud/theia-cloud-demo:0.12.0 pullSecret: "" timeoutStrategy: "FIXEDTIME" timeoutLimit: "30" @@ -21,7 +21,7 @@ hosts: instance: instances landingPage: - image: theiacloud/theia-cloud-landing-page:0.12.0-next + image: theiacloud/theia-cloud-landing-page:0.12.0 appDefinition: "theia-cloud-demo" ephemeralStorage: false diff --git a/terraform/test-configurations/2-02_monitor/theia_cloud.tf b/terraform/test-configurations/2-02_monitor/theia_cloud.tf index 00c2ded5..a38a01ef 100644 --- a/terraform/test-configurations/2-02_monitor/theia_cloud.tf +++ b/terraform/test-configurations/2-02_monitor/theia_cloud.tf @@ -82,7 +82,7 @@ resource "helm_release" "theia-cloud" { set { name = "demoApplication.name" - value = var.use_vscode_extension ? "theiacloud/theia-cloud-activity-demo:0.12.0-next" : "theiacloud/theia-cloud-activity-demo-theia:0.12.0-next" + value = var.use_vscode_extension ? "theiacloud/theia-cloud-activity-demo:0.12.0" : "theiacloud/theia-cloud-activity-demo-theia:0.12.0" } set { diff --git a/terraform/values/valuesDemo.yaml b/terraform/values/valuesDemo.yaml index 1d63a29c..49a20848 100644 --- a/terraform/values/valuesDemo.yaml +++ b/terraform/values/valuesDemo.yaml @@ -8,7 +8,7 @@ issuer: email: jfaltermeier@eclipsesource.com demoApplication: - name: theiacloud/theia-cloud-demo:0.12.0-next + name: theiacloud/theia-cloud-demo:0.12.0 pullSecret: "" timeoutStrategy: "FIXEDTIME" timeoutLimit: "30" @@ -24,7 +24,7 @@ hosts: instance: ws landingPage: - image: theiacloud/theia-cloud-landing-page:0.12.0-next + image: theiacloud/theia-cloud-landing-page:0.12.0 appDefinition: "theia-cloud-demo" ephemeralStorage: true additionalApps: diff --git a/terraform/values/valuesMonitor.yaml b/terraform/values/valuesMonitor.yaml index 695351c2..5616f519 100644 --- a/terraform/values/valuesMonitor.yaml +++ b/terraform/values/valuesMonitor.yaml @@ -5,7 +5,7 @@ app: name: Theia Blueprint demoApplication: - name: theiacloud/theia-cloud-activity-demo:0.12.0-next + name: theiacloud/theia-cloud-activity-demo:0.12.0 pullSecret: "" timeoutStrategy: "FIXEDTIME" timeoutLimit: "0" @@ -25,7 +25,7 @@ hosts: instance: ws landingPage: - image: theiacloud/theia-cloud-landing-page:0.12.0-next + image: theiacloud/theia-cloud-landing-page:0.12.0 appDefinition: "theia-cloud-demo" ephemeralStorage: true