Skip to content

Commit 82c90e9

Browse files
committed
Prepare 1.0.1 Release
1 parent 47720a5 commit 82c90e9

File tree

39 files changed

+61
-59
lines changed

39 files changed

+61
-59
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: 1.0.0
20+
VERSION: 1.0.1
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: 1.0.0
22+
VERSION: 1.0.1
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-
<!-- ## [1.1.0] - estimated 2025-02 -->
3+
## [1.0.1] - 2025-03-24
4+
5+
- [java/common] Truncate labels longer than 63 chars [#413](https://github.com/eclipse-theia/theia-cloud/pull/413)
46

57
## [1.0.0] - 2024-11-29
68

demo/dockerfiles/demo-theia-monitor-vscode/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM node:18-bullseye-slim as build-stage
22

33
# Copy and unzip the vsix file
44
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
5-
COPY theia-cloud-monitor-1.0.0.vsix /tmp/theia-cloud-monitor.vsix
5+
COPY theia-cloud-monitor-1.0.1.vsix /tmp/theia-cloud-monitor.vsix
66
RUN mkdir /tmp/extracted && unzip /tmp/theia-cloud-monitor.vsix -d /tmp/extracted
77

8-
FROM theiacloud/theia-cloud-demo:1.0.0 as production-stage
8+
FROM theiacloud/theia-cloud-demo:1.0.1 as production-stage
99

1010
COPY --chown=theia:theia --from=build-stage /tmp/extracted /home/theia/plugins

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-1.0.0-runner.jar .
15+
COPY --from=builder /conversion/conversion/org.eclipse.theia.cloud.conversion/target/conversion-webhook-1.0.1-runner.jar .
1616

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

dockerfiles/operator/Dockerfile

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

dockerfiles/operator/Dockerfile.withcache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN mkdir /templates
1818
WORKDIR /log-config
1919
COPY java/operator/org.eclipse.theia.cloud.defaultoperator/log4j2.xml .
2020
WORKDIR /operator
21-
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.0-jar-with-dependencies.jar .
21+
COPY --from=builder /operator/operator/org.eclipse.theia.cloud.defaultoperator/target/defaultoperator-1.0.1-jar-with-dependencies.jar .
2222
# to get more debug information from the kubernetes client itself, add -Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG below
23-
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.0-jar-with-dependencies.jar" ]
23+
ENTRYPOINT [ "java", "-Dlog4j2.configurationFile=/log-config/log4j2.xml", "-jar", "./defaultoperator-1.0.1-jar-with-dependencies.jar" ]
2424
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-1.0.0-runner.jar .
15+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.1-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-1.0.0-runner.jar
32+
-jar ./service-1.0.1-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-1.0.0-runner.jar .
16+
COPY --from=builder /service/service/org.eclipse.theia.cloud.service/target/service-1.0.1-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-1.0.0-runner.jar
33+
-jar ./service-1.0.1-runner.jar
3434
CMD [ "" ]

documentation/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.0.3",
33
"info": {
44
"title": "Theia Cloud API",
5-
"version": "1.0.0"
5+
"version": "1.0.1"
66
},
77
"paths": {
88
"/service": {

java/common/maven-conf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.eclipse.theia.cloud</groupId>
77
<artifactId>conf</artifactId>
8-
<version>1.0.0</version>
8+
<version>1.0.1</version>
99
<packaging>pom</packaging>
1010
<name>Theia Cloud Maven Configuration</name>
1111
<description>Common properties and configuration</description>

java/common/org.eclipse.theia.cloud.common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.eclipse.theia.cloud</groupId>
1313
<artifactId>conf</artifactId>
14-
<version>1.0.0</version>
14+
<version>1.0.1</version>
1515
<relativePath>../../common/maven-conf/</relativePath>
1616
</parent>
1717

java/conversion/org.eclipse.theia.cloud.conversion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
4949
./mvnw package -Pnative -Dquarkus.native.container-build=true
5050
```
5151

52-
You can then execute your native executable with: `./target/conversion-webhook-1.0.0-runner`
52+
You can then execute your native executable with: `./target/conversion-webhook-1.0.1-runner`
5353

5454
If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.
5555

java/conversion/org.eclipse.theia.cloud.conversion/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.eclipse.theia.cloud</groupId>
1111
<artifactId>conf</artifactId>
12-
<version>1.0.0</version>
12+
<version>1.0.1</version>
1313
<relativePath>../../common/maven-conf/</relativePath>
1414
</parent>
1515

@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>org.eclipse.theia.cloud</groupId>
4747
<artifactId>common</artifactId>
48-
<version>1.0.0</version>
48+
<version>1.0.1</version>
4949
</dependency>
5050
<!-- Webhooks -->
5151
<dependency>

java/operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This project implements the default Kubernetes Operator for Theia Cloud.
1515

1616
```sh
1717
mvn clean install
18-
java -jar target/defaultoperator-1.0.0-jar-with-dependencies.jar
18+
java -jar target/defaultoperator-1.0.1-jar-with-dependencies.jar
1919
```
2020

2121
#### Debugging the Default Theia Cloud Operator

java/operator/org.eclipse.theia.cloud.defaultoperator/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
<parent>
1212
<groupId>org.eclipse.theia.cloud</groupId>
1313
<artifactId>conf</artifactId>
14-
<version>1.0.0</version>
14+
<version>1.0.1</version>
1515
<relativePath>../../common/maven-conf/</relativePath>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>org.eclipse.theia.cloud</groupId>
2121
<artifactId>operator</artifactId>
22-
<version>1.0.0</version>
22+
<version>1.0.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.eclipse.theia.cloud</groupId>
2626
<artifactId>common</artifactId>
27-
<version>1.0.0</version>
27+
<version>1.0.1</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.json</groupId>

java/operator/org.eclipse.theia.cloud.operator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<parent>
1212
<groupId>org.eclipse.theia.cloud</groupId>
1313
<artifactId>conf</artifactId>
14-
<version>1.0.0</version>
14+
<version>1.0.1</version>
1515
<relativePath>../../common/maven-conf/</relativePath>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>org.eclipse.theia.cloud</groupId>
2121
<artifactId>common</artifactId>
22-
<version>1.0.0</version>
22+
<version>1.0.1</version>
2323
</dependency>
2424
<dependency>
2525
<groupId>org.json</groupId>

java/service/org.eclipse.theia.cloud.service/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build
5858
./mvnw package -Pnative -Dquarkus.native.container-build=true
5959
```
6060

61-
You can then execute your native executable with: `./target/service-1.0.0-runner`
61+
You can then execute your native executable with: `./target/service-1.0.1-runner`
6262

6363
If you want to learn more about building native executables, please consult <https://quarkus.io/guides/maven-tooling>.
6464

java/service/org.eclipse.theia.cloud.service/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>org.eclipse.theia.cloud</groupId>
1111
<artifactId>conf</artifactId>
12-
<version>1.0.0</version>
12+
<version>1.0.1</version>
1313
<relativePath>../../common/maven-conf/</relativePath>
1414
</parent>
1515

@@ -72,7 +72,7 @@
7272
<dependency>
7373
<groupId>org.eclipse.theia.cloud</groupId>
7474
<artifactId>common</artifactId>
75-
<version>1.0.0</version>
75+
<version>1.0.1</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>io.fabric8</groupId>

java/service/org.eclipse.theia.cloud.service/src/main/java/org/eclipse/theia/cloud/service/TheiaCloudApiApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020

2121
import jakarta.ws.rs.core.Application;
2222

23-
@OpenAPIDefinition(info = @Info(title = "Theia Cloud API", version = "1.0.0"))
23+
@OpenAPIDefinition(info = @Info(title = "Theia Cloud API", version = "1.0.1"))
2424
public class TheiaCloudApiApplication extends Application {
2525
}

java/service/org.eclipse.theia.cloud.service/src/main/resources/META-INF/resources/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>service - 1.0.0</title>
5+
<title>service - 1.0.1</title>
66
<style>
77
@font-face {
88
font-family: "open_sansregular";
@@ -361,7 +361,7 @@ <h5>Application</h5>
361361
<ul>
362362
<li>GroupId: <code>org.eclipse.theia.cloud</code></li>
363363
<li>ArtifactId: <code>service</code></li>
364-
<li>Version: <code>1.0.0</code></li>
364+
<li>Version: <code>1.0.1</code></li>
365365
<li>Quarkus Version: <code>2.7.0.Final</code></li>
366366
</ul>
367367
</div>

node/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-theiacloud/common",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Common functionality for Theia Cloud",
55
"license": "EPL-2.0",
66
"keywords": [

node/common/src/client/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Theia Cloud API
55
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
66
*
7-
* The version of the OpenAPI document: 1.0.0
7+
* The version of the OpenAPI document: 1.0.1
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

node/common/src/client/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Theia Cloud API
55
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
66
*
7-
* The version of the OpenAPI document: 1.0.0
7+
* The version of the OpenAPI document: 1.0.1
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

node/common/src/client/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Theia Cloud API
55
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
66
*
7-
* The version of the OpenAPI document: 1.0.0
7+
* The version of the OpenAPI document: 1.0.1
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

node/common/src/client/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Theia Cloud API
55
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
66
*
7-
* The version of the OpenAPI document: 1.0.0
7+
* The version of the OpenAPI document: 1.0.1
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

node/common/src/client/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Theia Cloud API
55
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
66
*
7-
* The version of the OpenAPI document: 1.0.0
7+
* The version of the OpenAPI document: 1.0.1
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

node/landing-page/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@eclipse-theiacloud/common": "1.0.0",
14+
"@eclipse-theiacloud/common": "1.0.1",
1515
"keycloak-js": "20.0.5",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"

node/monitor-theia/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-theiacloud/monitor-theia",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"keywords": [
55
"theia-extension"
66
],

node/monitor/package-lock.json

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

node/monitor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "theia-cloud-monitor",
33
"displayName": "Theia Cloud Monitor extension",
44
"description": "Monitor for Theia Cloud hosted tools",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"license": "EPL-2.0",
77
"author": {
88
"name": "Theia Cloud"

node/package-lock.json

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

0 commit comments

Comments
 (0)