Skip to content

Commit 4ea4eaa

Browse files
authored
Merge pull request #510 from TNO/prepare-for-release-1.2.5
Prepare for release 1.2.5
2 parents c5efd1c + 138fe7e commit 4ea4eaa

File tree

13 files changed

+39
-39
lines changed

13 files changed

+39
-39
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The easiest way to start a Knowledge Engine runtime is with Docker:
7171
```bash
7272
docker run \
7373
-p 8280:8280 \
74-
ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
74+
ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
7575
```
7676

7777
The Knowledge Engine runtime is now available to use via the REST API at base URL `http://localhost:8280/rest` on your host machine.
@@ -93,7 +93,7 @@ docker run \
9393
-p 8081:8081 \
9494
-e KD_URL=https://knowledge-directory.example.org \
9595
-e KE_RUNTIME_EXPOSED_URL=https://your-domain.example.org:8081 \
96-
ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
96+
ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
9797
```
9898

9999
### Running with Java
@@ -111,7 +111,7 @@ export KE_RUNTIME_EXPOSED_URL=https://your-domain.example.org:8081
111111
# Start it. The argument (8280) denotes the port number at which it
112112
# will listen for connections to the Knowledge Engine REST API.
113113
java -jar -Dorg.slf4j.simpleLogger.logFile=smart-connector.log \
114-
smart-connector-rest-dist-1.2.4-with-dependencies.jar 8280
114+
smart-connector-rest-dist-1.2.5-with-dependencies.jar 8280
115115
```
116116

117117
The JAR can be retrieved by compiling the project:
@@ -205,17 +205,17 @@ These are instructions on what to do when we release a new version of the knowle
205205
5. Build and push the new Docker images to GitLab:
206206

207207
```bash
208-
docker buildx build ./smart-connector-rest-dist --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/smart-connector-rest-dist:1.2.4 --push
209-
docker buildx build ./knowledge-directory --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/knowledge-directory:1.2.4 --push
210-
docker buildx build ./admin-ui --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/admin-ui:1.2.4 --push
208+
docker buildx build ./smart-connector-rest-dist --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/smart-connector-rest-dist:1.2.5 --push
209+
docker buildx build ./knowledge-directory --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/knowledge-directory:1.2.5 --push
210+
docker buildx build ./admin-ui --platform linux/arm64,linux/amd64 --tag docker-registry.inesctec.pt/interconnect/knowledge-engine/admin-ui:1.2.5 --push
211211
```
212212

213213
6. Build and push the new Docker images to GitHub:
214214

215215
```bash
216-
docker buildx build ./smart-connector-rest-dist --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/smart-connector:1.2.4 --push
217-
docker buildx build ./knowledge-directory --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.4 --push
218-
docker buildx build ./admin-ui --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/admin-ui:1.2.4 --push
216+
docker buildx build ./smart-connector-rest-dist --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/smart-connector:1.2.5 --push
217+
docker buildx build ./knowledge-directory --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.5 --push
218+
docker buildx build ./admin-ui --platform linux/arm64,linux/amd64 --tag ghcr.io/tno/knowledge-engine/admin-ui:1.2.5 --push
219219
```
220220

221221
7. Prepare the next SNAPSHOT version and make a commit for that too.
@@ -232,7 +232,7 @@ docker buildx build ./admin-ui --platform linux/arm64,linux/amd64 --tag ghcr.io/
232232
10. Inform mailing list(s) (and [the blog](https://www.knowledge-engine.eu/blog/)) about the new release.
233233

234234
## (advanced) Administering a Knowledge Engine runtime
235-
To start a new instance of the REST API knowledge engine version 1.2.4, make sure you have `git checkout 1.2.4` the tag `1.2.4`. Now make sure you run the `mvn clean install` command successfully from the root of the repository.
235+
To start a new instance of the REST API knowledge engine version 1.2.5, make sure you have `git checkout 1.2.5` the tag `1.2.5`. Now make sure you run the `mvn clean install` command successfully from the root of the repository.
236236

237237
### Starting the Knowledge Engine in local mode
238238
When no additional configuration parameters are provided, the Knowledge Engine will by default run in local mode. This means you can create multiple smart connectors that can communicate with each other through the REST API, but the Knowledge Engine will not connect to a knowledge directory and will not be able to connect with smart connectors running in other runtimes.
@@ -246,13 +246,13 @@ cd smart-connector-rest-dist/target
246246
Finally, start the server (note that you can configure a log file by including the `-Dorg.slf4j.simpleLogger.logFile=ke.log` system property to the JVM):
247247

248248
```bash
249-
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.4.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
249+
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.5.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
250250
```
251251

252252
If you want to run in it in the background, you can use the `nohup` linux command (which does not use the simpleLogger configuration system property, but redirects the standard err/out):
253253

254254
```bash
255-
nohup java -cp "smart-connector-rest-dist-1.2.4.jar:dependency/*" eu.knowledge.engine.rest.Main 8280 > ke.log
255+
nohup java -cp "smart-connector-rest-dist-1.2.5.jar:dependency/*" eu.knowledge.engine.rest.Main 8280 > ke.log
256256
```
257257

258258
### Starting the Knowledge Engine in distributed mode

admin-ui/src/main/resources/openapi-admin-ui.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
description:
66
This API provides information on Knowledge Engine Runtimes (todo), Smart Connectors, Knowledge Bases, and Knowledge
77
Interactions in a Knowledge Engine Network.
8-
version: 1.2.4
8+
version: 1.2.5
99

1010
paths:
1111
/rest/admin/sc/all/{include-meta}:

docs/docs/distributed_mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ First of all, you need to start a knowledge directory. The desired port number f
2020
```bash
2121
cd knowledge-directory/target/
2222

23-
java -Dorg.slf4j.simpleLogger.logFile=kd.log -cp "knowledge-directory-1.2.4.jar:dependency/*" eu.knowledge.engine.knowledgedirectory.Main 8080
23+
java -Dorg.slf4j.simpleLogger.logFile=kd.log -cp "knowledge-directory-1.2.5.jar:dependency/*" eu.knowledge.engine.knowledgedirectory.Main 8080
2424
```
2525

2626
The `nohup` command can be used to run the process in the background. On overview of the registered Knowledge Engine runtimes can be found on `http://localhost:8080/ker/` (or another host or port if you desire).
@@ -43,7 +43,7 @@ export KD_URL=http://localhost:8080
4343
export KE_RUNTIME_EXPOSED_URL=http://localhost:8081
4444
export KE_RUNTIME_PORT=8081
4545

46-
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.4.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
46+
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.5.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
4747
```
4848

4949
### Using Basic Authentication to secure data exchange

docs/docs/get-started/smart-connector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export KD_URL=http://localhost:8080
2525
export KE_RUNTIME_EXPOSED_URL=http://localhost:8081
2626
export KE_RUNTIME_PORT=8081
2727

28-
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.4.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
28+
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.5.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
2929
```
3030

3131
</TabItem>

docs/docs/quickstart.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Start the Knowledge Directory on ports 8080:
1414
```bash
1515
cd knowledge-directory/target/
1616

17-
java -Dorg.slf4j.simpleLogger.logFile=kd.log -cp "knowledge-directory-1.2.4.jar:dependency/*" eu.knowledge.engine.knowledgedirectory.Main 8080
17+
java -Dorg.slf4j.simpleLogger.logFile=kd.log -cp "knowledge-directory-1.2.5.jar:dependency/*" eu.knowledge.engine.knowledgedirectory.Main 8080
1818
```
1919
You can of course run the Knowledge Directory on another port by replacing 8080 by your preferred port number.
2020

@@ -27,7 +27,7 @@ export KD_URL=http://localhost:8080
2727
export KE_RUNTIME_EXPOSED_URL=http://localhost:8081
2828
export KE_RUNTIME_PORT=8081
2929

30-
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.4.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
30+
java -Dorg.slf4j.simpleLogger.logFile=ke.log -cp "smart-connector-rest-dist-1.2.5.jar:dependency/*" eu.knowledge.engine.rest.Main 8280
3131
```
3232

3333
## Registering Knowledge Interactions

examples/authentication/docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ services:
99
depends_on:
1010
- knowledge-directory
1111
knowledge-directory:
12-
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.4
12+
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.5
1313
runtime-1:
14-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
14+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
1515
environment:
1616
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
1717
KD_URL: http://thisisausername:thisisapassword@nginx/kd
1818
KE_RUNTIME_EXPOSED_URL: http://thisisausername:thisisapassword@nginx/ker1
1919
runtime-2:
20-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
20+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
2121
environment:
2222
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
2323
KD_URL: http://thisisausername:thisisapassword@nginx/kd

examples/multiple-runtimes/docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ services:
22
# This is the knowledge directory, facilitating discovery between different
33
# runtimes. It exposes its service over port 8282.
44
knowledge-directory:
5-
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.4
5+
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.5
66

77
# These services are seperate Knowledge Engine runtime, which can host
88
# multiple smart connectors. Note that the REST API port is a DIFFERENT port
99
# number than the ones configured below. It is still the default 8280.
1010
runtime-1:
11-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
11+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
1212
environment:
1313
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
1414
KE_RUNTIME_EXPOSED_URL: http://runtime-1:8081 # The URL where the runtime is available for inter-runtime communication from the outside.
1515
KD_URL: http://knowledge-directory:8282
1616
runtime-2:
17-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
17+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
1818
environment:
1919
KE_RUNTIME_PORT: 8081
2020
KE_RUNTIME_EXPOSED_URL: http://runtime-2:8081
2121
KD_URL: http://knowledge-directory:8282
2222
runtime-3:
23-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
23+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
2424
environment:
2525
KE_RUNTIME_PORT: 8081
2626
KE_RUNTIME_EXPOSED_URL: http://runtime-3:8081

examples/reasoner/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
knowledge-engine:
3-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
3+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
44
kb1:
55
build: ../common/asking_kb
66
environment:

examples/rest-api/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
knowledge-engine:
3-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
3+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
44
healthcheck:
55
test: curl -f http://localhost:8280/rest/sc
66
interval: 1s

examples/runtime-tests/docker-compose.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ services:
22
# This is the knowledge directory, facilitating discovery between different
33
# runtimes. It exposes its service over port 8282.
44
knowledge-directory:
5-
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.4
5+
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.5
66

77
# These services are seperate Knowledge Engine runtime, which can host
88
# multiple smart connectors. Note that the REST API port is a DIFFERENT port
99
# number than the ones configured below. It is still the default 8280.
1010
runtime-1:
11-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
11+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
1212
environment:
1313
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
1414
KE_RUNTIME_EXPOSED_URL: http://runtime-1:8081 # The URL where the runtime is available for inter-runtime communication from the outside.
1515
KD_URL: http://knowledge-directory:8282
1616
runtime-2:
17-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
17+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
1818
environment:
1919
KE_RUNTIME_PORT: 8081
2020
KE_RUNTIME_EXPOSED_URL: http://runtime-2:8081
2121
KD_URL: http://knowledge-directory:8282
2222
runtime-3:
23-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
23+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
2424
environment:
2525
KE_RUNTIME_PORT: 8081
2626
KE_RUNTIME_EXPOSED_URL: http://runtime-3:8081
@@ -83,7 +83,7 @@ services:
8383
}
8484
]
8585
broken-1:
86-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
86+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
8787
environment:
8888
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
8989
KE_RUNTIME_EXPOSED_URL: runtime-3:8081 # The 'http://' part of the URL with a port is missing.
@@ -102,7 +102,7 @@ services:
102102
KB_DATA: |
103103
[]
104104
broken-2:
105-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
105+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
106106
environment:
107107
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
108108
KE_RUNTIME_EXPOSED_URL: 3test.runtime.nl:8081 # The 'http://' part of the URL with a port is missing and the first character is numeric.
@@ -121,7 +121,7 @@ services:
121121
KB_DATA: |
122122
[]
123123
broken-3:
124-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
124+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
125125
environment:
126126
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
127127
KE_RUNTIME_EXPOSED_URL: 3test.runtime.nl # The 'http://' part of the URL without a port is missing and the first character is numeric.
@@ -140,7 +140,7 @@ services:
140140
KB_DATA: |
141141
[]
142142
broken-4:
143-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
143+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
144144
environment:
145145
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
146146
KE_RUNTIME_EXPOSED_URL: http://runtime-3:8081/ # The URL ends with a '/'
@@ -159,7 +159,7 @@ services:
159159
KB_DATA: |
160160
[]
161161
broken-5:
162-
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.4
162+
image: ghcr.io/tno/knowledge-engine/smart-connector:1.2.5
163163
environment:
164164
KE_RUNTIME_PORT: 8081 # The port that the KE uses to listen for inter-KE-runtime communication.
165165
KE_RUNTIME_EXPOSED_URL: runtime-3 # The 'http://' part of the URL without a port is missing.

examples/unreachable-runtimes/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
# This is the knowledge directory, facilitating discovery between different
33
# runtimes. It exposes its service over port 8282.
44
knowledge-directory:
5-
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.4
5+
image: ghcr.io/tno/knowledge-engine/knowledge-directory:1.2.5
66
ports:
77
- "8282:8282"
88

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<java.version>17</java.version>
7575
<maven.compiler.source>17</maven.compiler.source>
7676
<maven.compiler.target>17</maven.compiler.target>
77-
<revision>1.2.5-SNAPSHOT</revision>
77+
<revision>1.2.5</revision>
7878
</properties>
7979

8080
<dependencyManagement>

smart-connector-rest-server/src/main/resources/openapi-sc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ info:
77
Interactions are (un)registered and data is exchanged. Each Smart Connector
88
is coupled with a Knowledge Base Id, so every rest call uses this Knowledge
99
Base Id to identify yourself.
10-
version: 1.2.5-SNAPSHOT
10+
version: 1.2.5
1111

1212
paths:
1313
/sc:

0 commit comments

Comments
 (0)