author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
426,496
25.04.2022 12:58:40
-7,200
44c8be3e91653fed07bedec3e4bc9c09ab47a1ca
Show kubernetes events when waiting for a MPS instance to start If the cluster has insufficient memory there was nothing shown excepts "Starting MPS ...". Now the events contain more details why it doesn't start.
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManager.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManager.kt", "diff": "@@ -216,6 +216,13 @@ class DeploymentManager {\nreturn null\n}\n+ ...
Kotlin
Apache License 2.0
modelix/modelix
Show kubernetes events when waiting for a MPS instance to start If the cluster has insufficient memory there was nothing shown excepts "Starting MPS ...". Now the events contain more details why it doesn't start.
426,496
25.04.2022 14:10:23
-7,200
ec5f6eca9010f2849e1a992876d5f06c597526f0
interface for managing MPS instances
[ { "change_type": "MODIFY", "old_path": "instances-manager/build.gradle", "new_path": "instances-manager/build.gradle", "diff": "@@ -46,6 +46,13 @@ dependencies {\nimplementation(project(path: \":model-client\", configuration: \"jvmRuntimeElements\"))\nimplementation(project(path: \":workspaces\"))\n...
Kotlin
Apache License 2.0
modelix/modelix
interface for managing MPS instances
426,496
25.04.2022 16:22:24
-7,200
aaa8abc239468b7d8dfd58a0b93d014026a28de5
The user can now stop instances if the cluster runs out of memory
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "diff": "@@ -15,9 +15,12 @@ package org.modelix.instancesmanager\nimport io.ktor.applic...
Kotlin
Apache License 2.0
modelix/modelix
The user can now stop instances if the cluster runs out of memory
426,496
26.04.2022 09:32:25
-7,200
30d3606f8f3a38b0cd6e5359de2c899c86c15f55
Grey out disabled instances
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "diff": "@@ -61,6 +61,9 @@ fun Application.adminModule() {\n}\nfor (deployment in Deplo...
Kotlin
Apache License 2.0
modelix/modelix
Grey out disabled instances
426,496
26.04.2022 10:18:25
-7,200
35bd6ca245cf29ba25ff9118d4b503b133c648bb
Include time in kubernetes events
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManagingHandler.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManagingHandler.kt", "diff": "*/\npackage org.modelix.instancesmanager\n+import ...
Kotlin
Apache License 2.0
modelix/modelix
Include time in kubernetes events
426,504
27.04.2022 09:09:39
-7,200
272381e01da9da55f115384aaba56ea46c5f0766
in model server history consider the case where no repos are available
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/HistoryHandler.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/HistoryHandler.kt", "diff": "@@ -96,8 +96,8 @@ class HistoryHandler(private val client: IModelClient) : AbstractHandler...
Kotlin
Apache License 2.0
modelix/modelix
in model server history consider the case where no repos are available
426,504
28.04.2022 09:35:11
-7,200
6e06ceb23e18cf130123db86a5ab6517583d20ea
update MPS Extensions
[ { "change_type": "MODIFY", "old_path": "model-client/build.gradle", "new_path": "model-client/build.gradle", "diff": "@@ -32,7 +32,7 @@ check.dependsOn ktlintCheck\nkotlin {\njvm()\n- js() {\n+ js(IR) {\n//browser {}\nnodejs {\ntestTask {\n@@ -46,7 +46,7 @@ kotlin {\ncommonMain {\ndependencies {\nap...
Kotlin
Apache License 2.0
modelix/modelix
update MPS Extensions
426,496
27.04.2022 13:50:47
-7,200
24b95b55b1c19cac6d22d42c85813c437b875e41
Model synchronisation was done in a wrong order After a quick series of changes (typing a property) if happened that the MPS model was synchronized with an outdated version causing some changes to disappear.
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "new_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "diff": "</node>\n</node>\n<node concept=\"2tJIrI\" id=\"2wwX$bJ_1vC\" role=\"jymVt\" />\n+ <node con...
Kotlin
Apache License 2.0
modelix/modelix
Model synchronisation was done in a wrong order After a quick series of changes (typing a property) if happened that the MPS model was synchronized with an outdated version causing some changes to disappear.
426,496
29.04.2022 15:28:26
-7,200
1d15b3f5be35344c3da30eb76c8ba630b5c4d5d3
Use long polling to receive model changes For load balacing reasons the SSE connection was reconnected after half a minute. Long polling is the better choice and the code got simpler. The actual reason for this change was that the SSE based implementation was unreliable. Often no changes were received from the server.
[ { "change_type": "MODIFY", "old_path": "model-client/src/jvmMain/kotlin/org/modelix/model/client/RestWebModelClient.kt", "new_path": "model-client/src/jvmMain/kotlin/org/modelix/model/client/RestWebModelClient.kt", "diff": "@@ -24,7 +24,6 @@ import org.modelix.model.IKeyListener\nimport org.modelix....
Kotlin
Apache License 2.0
modelix/modelix
Use long polling to receive model changes For load balacing reasons the SSE connection was reconnected after half a minute. Long polling is the better choice and the code got simpler. The actual reason for this change was that the SSE based implementation was unreliable. Often no changes were received from the server.
426,496
03.05.2022 10:12:04
-7,200
ee51fc18cd75208dd5520fdad2ffbaebd73d2d37
forward model serveer debug port
[ { "change_type": "MODIFY", "old_path": "kubernetes/common/model-service.yaml", "new_path": "kubernetes/common/model-service.yaml", "diff": "apiVersion: v1\nkind: Service\nmetadata:\n- annotations:\n- creationTimestamp: null\nlabels:\napp: model\nname: model\n@@ -12,7 +10,8 @@ spec:\n- name: \"28101\...
Kotlin
Apache License 2.0
modelix/modelix
forward model serveer debug port
426,496
03.05.2022 10:17:25
-7,200
bc9559430554efc7a3eb4c96e216486cc5e853a0
performance optimization during model synchronization There was an expensive prefetch done at the beginning of each transaction. Even if this didn't result in an actual query to the server, iterating over the whole subtree of the meta model still caused a noticeable delay.
[ { "change_type": "ADD", "old_path": null, "new_path": "model-client/src/commonMain/kotlin/org/modelix/model/SubtreeChanges.kt", "diff": "+/*\n+ * Licensed under the Apache License, Version 2.0 (the \"License\");\n+ * you may not use this file except in compliance with the License.\n+ * You may obtai...
Kotlin
Apache License 2.0
modelix/modelix
performance optimization during model synchronization There was an expensive prefetch done at the beginning of each transaction. Even if this didn't result in an actual query to the server, iterating over the whole subtree of the meta model still caused a noticeable delay.
426,496
03.05.2022 11:08:17
-7,200
495505d1141c87cecafcfc7f2b3128f32a7c293d
Missing synchronization in InMemoryStoreClient made the model-client tests fail
[ { "change_type": "MODIFY", "old_path": "model-client/build.gradle", "new_path": "model-client/build.gradle", "diff": "@@ -76,7 +76,6 @@ kotlin {\n}\njvmTest {\ndependencies {\n- implementation kotlin('test')\nimplementation kotlin('test-junit')\n}\n}\n" }, { "change_type": "MODIFY", "old...
Kotlin
Apache License 2.0
modelix/modelix
Missing synchronization in InMemoryStoreClient made the model-client tests fail
426,496
03.05.2022 11:35:43
-7,200
295324dc784822f926b5bfeb7f965a44efe95475
model-server: format
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/java/org/modelix/model/server/InMemoryStoreClient.java", "new_path": "model-server/src/main/java/org/modelix/model/server/InMemoryStoreClient.java", "diff": "@@ -31,7 +31,8 @@ import java.util.stream.Collectors;\npublic class InMemoryStor...
Kotlin
Apache License 2.0
modelix/modelix
model-server: format
426,496
03.05.2022 14:14:55
-7,200
48a638de1c6b207133a0b7389683d89fce5b0d20
attempt to fix the model-client tests on github actions (2)
[ { "change_type": "MODIFY", "old_path": "model-client/src/jvmTest/kotlin/org/modelix/model/ModelClient_Test.kt", "new_path": "model-client/src/jvmTest/kotlin/org/modelix/model/ModelClient_Test.kt", "diff": "@@ -86,7 +86,13 @@ class ModelClient_Test {\nprintln(\" put $key = $value\")\nval client = ran...
Kotlin
Apache License 2.0
modelix/modelix
attempt to fix the model-client tests on github actions (2) (cherry picked from commit 1847349e06583bd796777eb91cbab128ed460f4f)
426,496
03.05.2022 14:54:38
-7,200
6f2c9916873dfa7c905e3fab6594db7678372cf0
attempt to fix the model-client tests on github actions (3)
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/java/org/modelix/model/server/InMemoryStoreClient.java", "new_path": "model-server/src/main/java/org/modelix/model/server/InMemoryStoreClient.java", "diff": "@@ -31,63 +31,58 @@ import java.util.stream.Collectors;\npublic class InMemorySt...
Kotlin
Apache License 2.0
modelix/modelix
attempt to fix the model-client tests on github actions (3) (cherry picked from commit ba9f323a6194bb0778bdce52375f6db771b15e1a)
426,496
05.05.2022 17:39:13
-7,200
a585ab636b6822f7d0b2cdb9c5706400f6a465d8
projector was still trying to download pako.js from the CDN The docker build script wasn't using the local patched projector-client, but downloading the official version instead.
[ { "change_type": "MODIFY", "old_path": "docker-build-projector-mps.sh", "new_path": "docker-build-projector-mps.sh", "diff": "@@ -29,12 +29,23 @@ TIMESTAMP=\"$(date +\"%Y%m%d%H%M\")\"\nelse\ngit clone https://github.com/JetBrains/projector-server.git\nfi\n+ (\n+ cd projector-server\n+ echo \"useLoca...
Kotlin
Apache License 2.0
modelix/modelix
projector was still trying to download pako.js from the CDN The docker build script wasn't using the local patched projector-client, but downloading the official version instead.
426,496
10.05.2022 17:04:36
-7,200
9db26238544d29991dff2e41c9ac300ad22d4d4c
Allow specifying additional generation dependencies If building a workspace fails because the build script generator fails to find a dependency, this dependency can now be added inside the workspace configuration.
[ { "change_type": "MODIFY", "old_path": "headless-mps/src/main/kotlin/org/modelix/headlessmps/JavaProcess.kt", "new_path": "headless-mps/src/main/kotlin/org/modelix/headlessmps/JavaProcess.kt", "diff": "@@ -27,8 +27,8 @@ class JavaProcess(val mainClass: KClass<*>): ProcessExecutor() {\nval javaHome =...
Kotlin
Apache License 2.0
modelix/modelix
Allow specifying additional generation dependencies If building a workspace fails because the build script generator fails to find a dependency, this dependency can now be added inside the workspace configuration.
426,496
11.05.2022 14:56:53
-7,200
2500c0d40d49825978e77de80b3a6a28f681453a
Fixed initial synchronization of a project to the model server in projector mode
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.model.metametamodel/generator/templates/org.modelix.model.metametamodel.generator.templates@generator.mps", "new_path": "mps/org.modelix.model.metametamodel/generator/templates/org.modelix.model.metametamodel.generator.templates@generator.mps", ...
Kotlin
Apache License 2.0
modelix/modelix
Fixed initial synchronization of a project to the model server in projector mode
426,496
16.05.2022 13:56:04
-7,200
9628e420f8f74a08310ecd1dc27856ab9f2246d3
Support diff view for git repositories stored in uploaded zip files
[ { "change_type": "MODIFY", "old_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManagerModule.kt", "new_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManagerModule.kt", "diff": "@@ -29,7 +29,6 @@ import kotlinx.serialization.encodeT...
Kotlin
Apache License 2.0
modelix/modelix
Support diff view for git repositories stored in uploaded zip files
426,496
17.05.2022 18:35:29
-7,200
5b7a884a45fd2c9bf8c051d3b8408cb285ab7dd7
Include only those modules in the workspace.zip that are actually used This reduces the memory required by the MPS instance
[ { "change_type": "MODIFY", "old_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "new_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "diff": "@@ -176,17 +176,37 @@ class WorkspaceManager {\n}\nbuildScriptGene...
Kotlin
Apache License 2.0
modelix/modelix
Include only those modules in the workspace.zip that are actually used This reduces the memory required by the MPS instance
426,496
18.05.2022 08:48:46
-7,200
81a3d2aee6c6a9cdc9ead4798a4facbabd9cc04f
Fixed "No serializer found for SerializedNodeReference"
[ { "change_type": "MODIFY", "old_path": "model-client/src/commonMain/kotlin/org/modelix/model/lazy/INodeReferenceSerializer.kt", "new_path": "model-client/src/commonMain/kotlin/org/modelix/model/lazy/INodeReferenceSerializer.kt", "diff": "package org.modelix.model.lazy\nimport org.modelix.model.api.I...
Kotlin
Apache License 2.0
modelix/modelix
Fixed "No serializer found for SerializedNodeReference"
426,496
18.05.2022 08:54:10
-7,200
5864b624ab7f88b3146adfcb76098bd7b8148a59
If only used modules are loaded is now configurable in the workspace
[ { "change_type": "MODIFY", "old_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "new_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "diff": "@@ -177,6 +177,8 @@ class WorkspaceManager {\nbuildScriptGenerator...
Kotlin
Apache License 2.0
modelix/modelix
If only used modules are loaded is now configurable in the workspace
426,504
18.05.2022 10:21:12
-7,200
bdc5c859654dd524aec80ba32858c0059cd95810
resolve broken references after updating MPS extensions
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "new_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "diff": "<property role=\"TrG5h\" value=\"dependenciesInMPS\" />\n<node concept=\"_YKpA\" id=\"ON_jCg...
Kotlin
Apache License 2.0
modelix/modelix
resolve broken references after updating MPS extensions
426,504
18.05.2022 11:20:54
-7,200
d9ed882512fb3f5684cd08e362bf1bc196508d51
working on ModelSynchronizer_Test
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "new_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "diff": "<ref role=\"37wK5l\" to=\"qvpu:~PArea.executeRead(kotlin.jvm.functions.Function0)\" resolve=...
Kotlin
Apache License 2.0
modelix/modelix
working on ModelSynchronizer_Test
426,496
18.05.2022 17:44:42
-7,200
345be6fb431d9107966e960dd6ffa866efb0dadc
Use generation and compile dependencies when selecting modules for deployment
[ { "change_type": "MODIFY", "old_path": "workspace-manager/build.gradle.kts", "new_path": "workspace-manager/build.gradle.kts", "diff": "@@ -38,7 +38,7 @@ dependencies {\nimplementation(project(\":headless-mps\"))\nimplementation(project(\":workspaces\"))\nimplementation(project(\":gitui\"))\n- imple...
Kotlin
Apache License 2.0
modelix/modelix
Use generation and compile dependencies when selecting modules for deployment
426,496
18.05.2022 19:17:27
-7,200
4537b872af2532fa401fbed86026f03c83cee411
To many files were removed after the dependency analysis
[ { "change_type": "MODIFY", "old_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "new_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "diff": "@@ -192,7 +192,13 @@ class WorkspaceManager {\ntransitiveDependenc...
Kotlin
Apache License 2.0
modelix/modelix
To many files were removed after the dependency analysis
426,496
19.05.2022 09:56:45
-7,200
baacf40dcea409fb7c4206b934262839798991df
Respect plugin dependencies when filtering modules for deployment
[ { "change_type": "MODIFY", "old_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "new_path": "workspace-manager/src/main/kotlin/org/modelix/workspace/manager/WorkspaceManager.kt", "diff": "@@ -191,8 +191,14 @@ class WorkspaceManager {\nit.getTransitiveDep...
Kotlin
Apache License 2.0
modelix/modelix
Respect plugin dependencies when filtering modules for deployment
426,496
19.05.2022 17:44:54
-7,200
69bba4a5721e2b1fee9dbbb11d68167b08018ccc
Improved handling of workspace configuration changes
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "diff": "@@ -75,6 +75,7 @@ fun Application.adminModule() {\nval assignmentCells: TR.() ...
Kotlin
Apache License 2.0
modelix/modelix
Improved handling of workspace configuration changes
426,496
20.05.2022 09:16:21
-7,200
09499a2e12b20c65d789ec5801e07bd735fb5cc9
Number of unassigned instances can be changed with a single button click There was a number input and a button before. Now there are just 6 buttons for the values 0..5.
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/AdminModule.kt", "diff": "@@ -89,12 +89,12 @@ fun Application.adminModule() {\nname = \"workspaceHash\"\...
Kotlin
Apache License 2.0
modelix/modelix
Number of unassigned instances can be changed with a single button click There was a number input and a button before. Now there are just 6 buttons for the values 0..5.
426,496
20.05.2022 14:07:10
-7,200
cc8fefc1692fa4ef4c5165f9a3b51a87b8059920
Progress bar instead of console output while waiting for MPS startup
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManager.kt", "new_path": "instances-manager/src/main/kotlin/org/modelix/instancesmanager/DeploymentManager.kt", "diff": "@@ -245,12 +245,27 @@ class DeploymentManager {\nreturn deployment...
Kotlin
Apache License 2.0
modelix/modelix
Progress bar instead of console output while waiting for MPS startup
426,496
20.05.2022 14:10:55
-7,200
5b20981622122b4b1b9be13fe7fba3242a548b91
Use JGIT 6.1.0.202203080745-r
[ { "change_type": "MODIFY", "old_path": "instances-manager/build.gradle", "new_path": "instances-manager/build.gradle", "diff": "@@ -41,7 +41,7 @@ dependencies {\ncompile group: 'org.eclipse.jetty.websocket', name: 'websocket-client', version: jettyVersion\ncompile group: 'org.eclipse.jetty.websocket...
Kotlin
Apache License 2.0
modelix/modelix
Use JGIT 6.1.0.202203080745-r
426,496
20.05.2022 14:17:08
-7,200
3d080e23f8c7e9709ebd913e7a7f8989331a62e7
Make selecting text on the log output page easier By not replacing text in the DOM if it didn't change.
[ { "change_type": "MODIFY", "old_path": "instances-manager/src/main/resources/static/log/xxx/log.html", "new_path": "instances-manager/src/main/resources/static/log/xxx/log.html", "diff": "<script type=\"application/javascript\" src=\"../../jquery-3.6.0.min.js\"></script>\n<script type=\"application/...
Kotlin
Apache License 2.0
modelix/modelix
Make selecting text on the log output page easier By not replacing text in the DOM if it didn't change.
426,496
20.05.2022 15:52:55
-7,200
c1f3bade883c1fa7c223e0f878d9e78b35e24cd2
Just a change to create a new commit, because publishing fails Publishing to github packages fails: "Received status code 409 from server: Conflict" Maybe a commit has more luck.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -99,56 +99,56 @@ It's an operation that happens all the time.\n# Content of the root directory\n-File | Description\n----|---\n-[db](db) | Files for building the PostgreSQL docker image\n-[doc](doc) | Documentat...
Kotlin
Apache License 2.0
modelix/modelix
Just a change to create a new commit, because publishing fails Publishing to github packages fails: "Received status code 409 from server: Conflict" Maybe a commit has more luck.
426,496
20.05.2022 16:18:17
-7,200
9528a95eb3dc2cd007dd7a48b273f9295cf352f3
Disabled publishing to GHP because of "Received status code 409 from server: Conflict"
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -107,6 +107,7 @@ subprojects {\npublishing {\nrepositories {\n+ /* Disabled because GHP sometimes keeps failing with \"Received status code 409 from server: Conflict\"\nif (githubCredentials != null) {\nma...
Kotlin
Apache License 2.0
modelix/modelix
Disabled publishing to GHP because of "Received status code 409 from server: Conflict"
426,496
20.05.2022 17:38:12
-7,200
de422dfc82ea9fb343ad7a752fbbdd270cbebfca
Higher timeout for the generator
[ { "change_type": "MODIFY", "old_path": "headless-mps/src/main/kotlin/org/modelix/headlessmps/ProcessExecutor.kt", "new_path": "headless-mps/src/main/kotlin/org/modelix/headlessmps/ProcessExecutor.kt", "diff": "@@ -19,7 +19,7 @@ import kotlin.math.max\nopen class ProcessExecutor() {\nvar outputHandle...
Kotlin
Apache License 2.0
modelix/modelix
Higher timeout for the generator
426,496
23.05.2022 17:38:10
-7,200
f999b3c35365f04b5a6b99a09f28e0787bca60d0
Rename MPS config directory to match the correct MPS version
[ { "change_type": "MODIFY", "old_path": "Dockerfile-projector", "new_path": "Dockerfile-projector", "diff": "@@ -7,6 +7,10 @@ COPY build/org.modelix/build/artifacts/org.modelix/plugins/ /mps-plugins/modelix\nRUN /install-plugins.sh /projector/ide/plugins/\nCOPY projector-user-home /home/projector-use...
Kotlin
Apache License 2.0
modelix/modelix
Rename MPS config directory to match the correct MPS version
426,496
23.05.2022 18:24:54
-7,200
7c4c9a8c283f7b02432cc9a7d93f1aa21226896a
fixed NPE when a model version has not timestamp
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/HistoryHandler.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/HistoryHandler.kt", "diff": "@@ -291,6 +291,7 @@ class HistoryHandler(private val client: IModelClient) : AbstractHandl...
Kotlin
Apache License 2.0
modelix/modelix
fixed NPE when a model version has not timestamp
426,504
01.06.2022 11:26:12
-7,200
4dfc5581efab4f35d11e1c8103caf85cb096fac0
updating expected dump
[ { "change_type": "MODIFY", "old_path": "integrationtests/expected_server_dumps/dump1.json", "new_path": "integrationtests/expected_server_dumps/dump1.json", "diff": "\"$concept\": \"org.modelix.model.repositoryconcepts.Module\",\n\"id\": \"f2fb433a-7484-46c7-a61e-ec59ba5ea58f\",\n\"name\": \"simple....
Kotlin
Apache License 2.0
modelix/modelix
updating expected dump
426,504
02.06.2022 10:12:37
-7,200
e5f389eb6c2aec4ddd2e0e77ad8cdef506cb926e
correct removal of model imports
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "new_path": "mps/org.modelix.model.mpsplugin/models/org.modelix.model.mpsplugin.mps", "diff": "<ref role=\"3cqZAo\" node=\"ON_jCgb8EO\" resolve=\"dependenciesInMPS\" />\n</node>\n<node co...
Kotlin
Apache License 2.0
modelix/modelix
correct removal of model imports
426,496
03.06.2022 09:45:14
-7,200
9fd4a4b978b9558e561912231286ba7874f7c4ca
New sub-projects for authorization
[ { "change_type": "MODIFY", "old_path": ".idea/codeStyles/Project.xml", "new_path": ".idea/codeStyles/Project.xml", "diff": "<option name=\"CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND\" value=\"100\" />\n<option name=\"NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND\" value=\"100\" />\n</JavaCodeStyleSettings>\n+ <JetCo...
Kotlin
Apache License 2.0
modelix/modelix
New sub-projects for authorization
426,496
03.06.2022 14:12:59
-7,200
e2712f6df8810eb9a73e58878f217248d9b2ae7a
Migration to ktor 2.0.2
[ { "change_type": "MODIFY", "old_path": "gitui/build.gradle.kts", "new_path": "gitui/build.gradle.kts", "diff": "import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar\n-val ktorVersion = \"1.6.5\"\n+val ktorVersion = \"2.0.2\"\nval kotlinCoroutinesVersion = \"1.5.2\"\n-val kotlinVersion =...
Kotlin
Apache License 2.0
modelix/modelix
Migration to ktor 2.0.2
426,496
04.06.2022 09:03:39
-7,200
9cebea3af586fbde4eb7185dea8a35015f83b706
Authorization for the workspace manager
[ { "change_type": "MODIFY", "old_path": "authorization-ui/build.gradle.kts", "new_path": "authorization-ui/build.gradle.kts", "diff": "@@ -22,10 +22,11 @@ dependencies {\nimplementation(\"org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3\")\nimplementation(\"com.charleskorn.kaml:kaml:0.44.0\")\n...
Kotlin
Apache License 2.0
modelix/modelix
Authorization for the workspace manager
426,496
07.06.2022 10:21:45
-7,200
84a3dff2c71bdf7ab993640a02f121a09f0d3068
Remove button for permissions
[ { "change_type": "MODIFY", "old_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "new_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "diff": "@@ -100,6 +100,14 @@ fun Application.authorizationModule() {\ntd...
Kotlin
Apache License 2.0
modelix/modelix
Remove button for permissions
426,496
07.06.2022 11:17:38
-7,200
5c38fac329c29a669b59f69e79dfd3aff4ec4a7c
Button for granting permissions
[ { "change_type": "MODIFY", "old_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "new_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "diff": "@@ -34,20 +34,22 @@ fun Application.authorizationModule() {\ncal...
Kotlin
Apache License 2.0
modelix/modelix
Button for granting permissions
426,496
07.06.2022 13:01:06
-7,200
c30fcd35dba7d52ec01555781c6c48e16de4c8bf
Check permissions for changing permissions
[ { "change_type": "MODIFY", "old_path": "authorization-ui/build.gradle.kts", "new_path": "authorization-ui/build.gradle.kts", "diff": "@@ -27,6 +27,8 @@ dependencies {\nimplementation(\"io.ktor\", \"ktor-server-cors\", ktorVersion)\nimplementation(\"io.ktor\", \"ktor-server-netty\", ktorVersion)\nimp...
Kotlin
Apache License 2.0
modelix/modelix
Check permissions for changing permissions
426,496
08.06.2022 09:27:03
-7,200
cbc7eebe712e2bfeefc551cf88669cc8e93966cb
model server history migrated
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/java/org/modelix/model/server/Main.kt", "new_path": "model-server/src/main/java/org/modelix/model/server/Main.kt", "diff": "@@ -238,10 +238,11 @@ object Main {\nFileUtils.readFileToString(sharedSecretFile, StandardCharsets.UTF_8)\n)\n}\n-...
Kotlin
Apache License 2.0
modelix/modelix
model server history migrated
426,504
08.06.2022 09:49:38
-7,200
ef55acb00afc8e2207b9884576a32d7b40ea82e4
correct how we handle CloudTransientModel to add devkit and dependencies to them
[ { "change_type": "MODIFY", "old_path": "integrationtests/expected_server_dumps/dump4.json", "new_path": "integrationtests/expected_server_dumps/dump4.json", "diff": "\"$concept\": \"org.modelix.model.repositoryconcepts.Module\",\n\"id\": \"f2fb433a-7484-46c7-a61e-ec59ba5ea58f\",\n\"name\": \"simple....
Kotlin
Apache License 2.0
modelix/modelix
correct how we handle CloudTransientModel to add devkit and dependencies to them
426,504
08.06.2022 10:08:42
-7,200
180a2a1f3e21ef47c0420d7fd948b9b61175a956
correcting remaining integration tests
[ { "change_type": "ADD", "old_path": null, "new_path": "integrationtests/expected_server_dumps/.gitignore", "diff": "+*.expected.json\n" }, { "change_type": "MODIFY", "old_path": "integrationtests/expected_server_dumps/dump5b.json", "new_path": "integrationtests/expected_server_dumps/...
Kotlin
Apache License 2.0
modelix/modelix
correcting remaining integration tests
426,504
08.06.2022 10:25:06
-7,200
c1b2e60a684dab6892d156c72a8d938739902ccf
removing extra logging statements
[ { "change_type": "MODIFY", "old_path": "mps/org.modelix.integrationtests/models/org.modelix.integrationtests.mps", "new_path": "mps/org.modelix.integrationtests/models/org.modelix.integrationtests.mps", "diff": "</node>\n</node>\n</node>\n- <node concept=\"abc8K\" id=\"4TYoXWzRO0n\" role=\"3cqZAp\">...
Kotlin
Apache License 2.0
modelix/modelix
removing extra logging statements
426,496
10.06.2022 09:03:21
-7,200
73a5b93ba2a7b302998c21fb7a30aba338ceead5
Bind model server to correct port
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/java/org/modelix/model/server/Main.kt", "new_path": "model-server/src/main/java/org/modelix/model/server/Main.kt", "diff": "@@ -185,12 +185,11 @@ object Main {\n}\ntry {\nval portStr = System.getenv(\"MODELIX_SERVER_PORT\")\n- var port = ...
Kotlin
Apache License 2.0
modelix/modelix
Bind model server to correct port
426,496
10.06.2022 09:52:56
-7,200
c6421fb19b4ef249ad8b6eb7c6041bb9a46e41dc
Finished model server migration to ktor
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "diff": "@@ -32,6 +32,7 @@ class ModelServerAuthoriza...
Kotlin
Apache License 2.0
modelix/modelix
Finished model server migration to ktor
426,496
10.06.2022 10:18:12
-7,200
c2f78a577f9d855b6a9a010bb300a5a9a0c36e06
/getAll has to use PUT
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "diff": "@@ -254,7 +254,9 @@ class KtorModelServer(val storeClient: IStoreClient) {\n}\n}\n- get(...
Kotlin
Apache License 2.0
modelix/modelix
/getAll has to use PUT
426,496
10.06.2022 10:51:26
-7,200
4922780e6aa4ba775c5cbb54668b3d25db3f97dd
Replaced SSE tests with long poll tests The SSE endpoint isn't supported anymore. There is a replacements using long polling.
[ { "change_type": "MODIFY", "old_path": "model-server/src/test/java/org/modelix/model/server/functionaltests/Stepdefs.java", "new_path": "model-server/src/test/java/org/modelix/model/server/functionaltests/Stepdefs.java", "diff": "@@ -36,12 +36,16 @@ import java.net.URI;\nimport java.net.http.HttpCli...
Kotlin
Apache License 2.0
modelix/modelix
Replaced SSE tests with long poll tests The SSE endpoint isn't supported anymore. There is a replacements using long polling.
426,496
10.06.2022 12:46:33
-7,200
bfc802c96f2ff4e7fb01aa13dfda65a016a2ef13
fixed /poll/{key}
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/java/org/modelix/model/server/CachingStoreClient.kt", "new_path": "model-server/src/main/java/org/modelix/model/server/CachingStoreClient.kt", "diff": "@@ -59,11 +59,11 @@ class CachingStoreClient(private val store: IStoreClient) : IStore...
Kotlin
Apache License 2.0
modelix/modelix
fixed /poll/{key}
426,496
10.06.2022 14:12:45
-7,200
13ba74d278218314a0ebe1f247d9d40209428a81
The model server didn't provide a 'repositoryId'
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "diff": "@@ -51,7 +51,7 @@ class KtorModelServer(val storeClient: IStoreClient) {\nval HASH_PATTE...
Kotlin
Apache License 2.0
modelix/modelix
The model server didn't provide a 'repositoryId'
426,496
10.06.2022 14:39:27
-7,200
cc5f493f6f3a82fe211ef4aeead151b95ac48382
Renamed 'repositoryId' to 'server-id'
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "diff": "@@ -51,7 +51,8 @@ class KtorModelServer(val storeClient: IStoreClient) {\nval HASH_PATTE...
Kotlin
Apache License 2.0
modelix/modelix
Renamed 'repositoryId' to 'server-id'
426,496
10.06.2022 15:12:07
-7,200
b163ac1a07e55dbfc9946014b45f90c69ed9e1aa
Permission check for entries on the model server
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "diff": "@@ -17,6 +17,7 @@ package org.modelix.model.server\nimport io.ktor.server.application.*\...
Kotlin
Apache License 2.0
modelix/modelix
Permission check for entries on the model server
426,496
10.06.2022 15:53:46
-7,200
699a3784237b6793f176d87191e892ed866ed57d
By default everything is public
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelixAuthorization.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelixAuthorization.kt", "diff": "@@ -51,9 +51,18 @@ object ModelixAuthorization {\npersistence.storeData(da...
Kotlin
Apache License 2.0
modelix/modelix
By default everything is public
426,496
13.06.2022 10:04:56
-7,200
d776b597dac690b6da2cf0233d7ff135e2749545
Tested the deployment and updated the documentation
[ { "change_type": "MODIFY", "old_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "new_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "diff": "@@ -35,6 +35,20 @@ fun Application.authorizationModule() {\ninst...
Kotlin
Apache License 2.0
modelix/modelix
Tested the deployment and updated the documentation
426,496
13.06.2022 10:21:12
-7,200
ff315a5a4e16859bcf969bad4bf6900c87fcbf7e
Cache for authorization data
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "diff": "@@ -16,6 +16,7 @@ package org.modelix.author...
Kotlin
Apache License 2.0
modelix/modelix
Cache for authorization data
426,496
14.06.2022 10:58:19
-7,200
30fbcc0a01fbbc70d9006f488016fb3990dae416
New high level model REST API It's intended to be used by JavaScript client such as angular applications. It doesn't require the model client and returns JSON. It provides the same consistency guarantees by running the model-client on the server side.
[ { "change_type": "MODIFY", "old_path": "model-server/build.gradle.kts", "new_path": "model-server/build.gradle.kts", "diff": "@@ -7,6 +7,7 @@ plugins {\nid(\"com.adarshr.test-logger\") version \"2.1.0\"\nid(\"org.jetbrains.kotlin.jvm\")\nid(\"com.github.johnrengelman.shadow\") version \"6.1.0\"\n+ k...
Kotlin
Apache License 2.0
modelix/modelix
New high level model REST API It's intended to be used by JavaScript client such as angular applications. It doesn't require the model client and returns JSON. It provides the same consistency guarantees by running the model-client on the server side.
426,496
14.06.2022 17:23:58
-7,200
c0d02f06354fa6c3d0f2c90148743c854048ddef
concurrent change
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "diff": "@@ -22,9 +22,7 @@ import io.ktor.server.routing.*\nimport org.json.JSONArray\nimport org...
Kotlin
Apache License 2.0
modelix/modelix
concurrent change
426,496
14.06.2022 17:34:37
-7,200
5c530c0aa622e289ff11fa89ac8c598808ea80db
the provided base version wasn't used, but the latest one instead
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "diff": "@@ -22,12 +22,14 @@ import io.ktor.server.routing.*\nimport org.json.JSONArray\nimport o...
Kotlin
Apache License 2.0
modelix/modelix
the provided base version wasn't used, but the latest one instead
426,496
15.06.2022 09:13:17
-7,200
e4e2a132ec9b2c4126fce393e23dfc9975e51d1c
IdGenerator.generate(quantity: Int)
[ { "change_type": "MODIFY", "old_path": "model-client/src/commonMain/kotlin/org/modelix/model/client/IdGenerator.kt", "new_path": "model-client/src/commonMain/kotlin/org/modelix/model/client/IdGenerator.kt", "diff": "@@ -19,4 +19,5 @@ import org.modelix.model.api.IIdGenerator\nexpect class IdGenerato...
Kotlin
Apache License 2.0
modelix/modelix
IdGenerator.generate(quantity: Int)
426,496
15.06.2022 10:21:00
-7,200
63e152e49164aeef531cb1450e436d0e8763d5ee
/json/ lists the available endpoints
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "diff": "@@ -16,9 +16,11 @@ package org.modelix.model.server\nimport io.ktor.http.*\nimport io.kt...
Kotlin
Apache License 2.0
modelix/modelix
/json/ lists the available endpoints
426,496
15.06.2022 15:45:02
-7,200
4622926744350eef65b4ab421a09f322ca2a7e1b
angular app listens for model changes
[ { "change_type": "MODIFY", "old_path": "model-server/build.gradle.kts", "new_path": "model-server/build.gradle.kts", "diff": "@@ -25,6 +25,7 @@ val kotlinVersion: String by project\ndependencies {\nimplementation(\"org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion\")\nimplementation(\"org.jetbrains....
Kotlin
Apache License 2.0
modelix/modelix
angular app listens for model changes
426,496
15.06.2022 15:48:15
-7,200
8413c24eeb5e9fdceeb583387c1087255e165ae7
implemented IdGenerator.generator(quantity) in JS
[ { "change_type": "MODIFY", "old_path": "model-client/src/jsMain/kotlin/org/modelix/model/client/IdGenerator.kt", "new_path": "model-client/src/jsMain/kotlin/org/modelix/model/client/IdGenerator.kt", "diff": "@@ -21,14 +21,21 @@ actual class IdGenerator actual constructor(clientId: Int) : IIdGenerato...
Kotlin
Apache License 2.0
modelix/modelix
implemented IdGenerator.generator(quantity) in JS
426,496
15.06.2022 16:44:47
-7,200
f200ff2fcc8f09f589415c3a2c534e2c62c55072
Send only delta instead of full version
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/JsonModelServer.kt", "diff": "@@ -101,7 +101,8 @@ class JsonModelServer(val client: LocalModelClient) {\nval versionHa...
Kotlin
Apache License 2.0
modelix/modelix
Send only delta instead of full version
426,496
16.06.2022 12:44:04
-7,200
ebff8696b2b3571d5bd104b93ed561e45434c841
WebSocket enpoint for sending/receiving model deltas
[ { "change_type": "MODIFY", "old_path": "model-server/build.gradle.kts", "new_path": "model-server/build.gradle.kts", "diff": "@@ -45,6 +45,7 @@ dependencies {\nimplementation(\"io.ktor:ktor-server-auth:$ktorVersion\")\nimplementation(\"io.ktor:ktor-server-status-pages:$ktorVersion\")\nimplementation...
Kotlin
Apache License 2.0
modelix/modelix
WebSocket enpoint for sending/receiving model deltas
426,496
20.06.2022 09:49:53
-7,200
213f591f79f186f349d6d1047457edcea69d2003
Make keycloak work behind the reverse proxy
[ { "change_type": "MODIFY", "old_path": "proxy/nginx.conf", "new_path": "proxy/nginx.conf", "diff": "@@ -42,6 +42,21 @@ http {\nproxy_pass http://keycloak.default.svc.cluster.local:8080/$1$is_args$args;\n}\n+ # keycloak doesn't work behind a subpath. That is probably a bug in keycloak and this is the...
Kotlin
Apache License 2.0
modelix/modelix
Make keycloak work behind the reverse proxy
426,496
20.06.2022 11:03:30
-7,200
1cf85708a3511f183eefb5cc235b647ac5cf32e9
Persist keycloak settings in the postgres database
[ { "change_type": "MODIFY", "old_path": "doc/running-modelix.md", "new_path": "doc/running-modelix.md", "diff": "@@ -99,3 +99,19 @@ To connect your local MPS IDE follow these instructions:\n- `./docker-build.sh`\n- `./docker-push.sh`\n- `kubectl apply -f deployment.yaml -f service.yaml`\n+\n+## Confi...
Kotlin
Apache License 2.0
modelix/modelix
Persist keycloak settings in the postgres database
426,496
21.06.2022 10:26:00
-7,200
560af27a75704ca9a31a8a768336805e6f27e1f3
Store JWT token in cookie
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "@@ -20,15 +20,21 @@ import io.ktor.client.engine.cio.*\nimport io.ktor.http.*\...
Kotlin
Apache License 2.0
modelix/modelix
Store JWT token in cookie
426,496
21.06.2022 10:38:12
-7,200
73588765ab94c8ccf143645704b52591f01d29cf
Store JWT token in cookie (2)
[ { "change_type": "MODIFY", "old_path": "authorization/build.gradle.kts", "new_path": "authorization/build.gradle.kts", "diff": "@@ -13,6 +13,7 @@ dependencies {\nimplementation(\"io.ktor:ktor-server-status-pages:$ktorVersion\")\nimplementation(\"io.ktor:ktor-server-auth:$ktorVersion\")\nimplementati...
Kotlin
Apache License 2.0
modelix/modelix
Store JWT token in cookie (2)
426,496
21.06.2022 11:53:55
-7,200
cf84923679157619cd613757b7c4f7a5ae32e030
Verify JWT signature
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "*/\npackage org.modelix.authorization.ktor\n+import com.auth0.jwk.JwkProviderB...
Kotlin
Apache License 2.0
modelix/modelix
Verify JWT signature
426,496
21.06.2022 14:42:21
-7,200
ec1f70ab21b38c8f43090f753b35ba2bef0e8f06
Verify JWT expiration date
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "@@ -17,11 +17,14 @@ import com.auth0.jwk.JwkProviderBuilder\nimport com.auth0....
Kotlin
Apache License 2.0
modelix/modelix
Verify JWT expiration date
426,496
21.06.2022 15:25:57
-7,200
52420354bd30b3db06f9aa0a1d156df10cfc75bb
Fixed redirect after successful OAuth
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "@@ -101,7 +101,7 @@ fun Application.installAuthentication() {\n}\nurlProvider ...
Kotlin
Apache License 2.0
modelix/modelix
Fixed redirect after successful OAuth
426,496
22.06.2022 14:20:50
-7,200
0fdc99c608aec4fabd23c59a9a30a143468de4cc
Use OAuth proxy to log in with keycloak
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "@@ -68,9 +68,12 @@ public fun AuthenticationConfig.oauthProxy(\nregister(provi...
Kotlin
Apache License 2.0
modelix/modelix
Use OAuth proxy to log in with keycloak
426,496
22.06.2022 18:39:52
-7,200
eb9ff477c8ec6655ebe0d7f29b2a1864e7fad059
Service accounts for workspace/instances manager
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ModelServerAuthorizationPersistence.kt", "diff": "@@ -16,6 +16,7 @@ package org.modelix.author...
Kotlin
Apache License 2.0
modelix/modelix
Service accounts for workspace/instances manager
426,496
24.06.2022 09:50:16
-7,200
ab9158e03f3fa67c99519bc5108bb00605581042
Bigger list boxes when assigning permissions
[ { "change_type": "MODIFY", "old_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "new_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "diff": "@@ -130,6 +130,7 @@ fun Route.authorizationRouting() {\nname = \...
Kotlin
Apache License 2.0
modelix/modelix
Bigger list boxes when assigning permissions
426,496
24.06.2022 09:50:58
-7,200
aebb76f423151fefc41522fe43c74bc3583a28b8
Mutex around service account token cache
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/ktor/KtorAuthUtils.kt", "diff": "@@ -34,6 +34,8 @@ import io.ktor.server.response.*\nimport io.ktor.server.rout...
Kotlin
Apache License 2.0
modelix/modelix
Mutex around service account token cache
426,496
28.06.2022 09:29:42
-7,200
5217712aae2d885f7cd63df052f780e56f710b50
Manage permissions with keycloak
[ { "change_type": "MODIFY", "old_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "new_path": "authorization-ui/src/main/kotlin/org/modelix/authorization/ui/AuthorizationModule.kt", "diff": "@@ -131,7 +131,7 @@ fun Route.authorizationRouting() {\nform = \...
Kotlin
Apache License 2.0
modelix/modelix
Manage permissions with keycloak
426,496
28.06.2022 17:05:56
-7,200
91ede693d54f6bdcf70adbc6c6307edd9d6d3a1e
Store OAuth proxy sessions in redis to reduce the cookie size With ID, access and refresh tokens the cookies are getting to long for the default header size limit.
[ { "change_type": "MODIFY", "old_path": "kubernetes/common/oauth-deployment.yaml", "new_path": "kubernetes/common/oauth-deployment.yaml", "diff": "@@ -21,6 +21,26 @@ spec:\napp: oauth\nspec:\ncontainers:\n+ - image: redis:7.0.2\n+ name: redis\n+ resources:\n+ requests:\n+ memory: \"100Mi\"\n+ cpu: 10...
Kotlin
Apache License 2.0
modelix/modelix
Store OAuth proxy sessions in redis to reduce the cookie size With ID, access and refresh tokens the cookies are getting to long for the default header size limit.
426,496
29.06.2022 11:25:16
-7,200
e08848edbd5fd372181ebbd33c6d7f63334d9cdb
Check permissions using keycloak
[ { "change_type": "MODIFY", "old_path": "authorization/build.gradle.kts", "new_path": "authorization/build.gradle.kts", "diff": "@@ -9,6 +9,7 @@ dependencies {\nimplementation(\"org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2\")\nimplementation(\"com.charleskorn.kaml:kaml:0.40.0\")\nimplementa...
Kotlin
Apache License 2.0
modelix/modelix
Check permissions using keycloak
426,496
29.06.2022 16:42:22
-7,200
6ee5beb43a471d83b8c740f0173ce41870b6432f
Unit test mode for the model server that doesn't check authorization
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/KtorAuthUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/KtorAuthUtils.kt", "diff": "@@ -32,16 +32,15 @@ import io.ktor.server.plugins.statuspages.*\nimport io.ktor.server.r...
Kotlin
Apache License 2.0
modelix/modelix
Unit test mode for the model server that doesn't check authorization
426,496
01.07.2022 17:28:48
-7,200
86ab3ba26bf6e5e5deddc37b5829205fc8ea6b96
correct workspace-client deployment name is passed as env variable
[ { "change_type": "MODIFY", "old_path": "helm/modelix/templates/common/instances-manager-deployment.yaml", "new_path": "helm/modelix/templates/common/instances-manager-deployment.yaml", "diff": "@@ -36,6 +36,8 @@ spec:\nconfigMapKeyRef:\nkey: keycloak-client-secret\nname: \"{{ include \"modelix.fulln...
Kotlin
Apache License 2.0
modelix/modelix
correct workspace-client deployment name is passed as env variable
426,496
01.07.2022 17:33:39
-7,200
e7129005f1eabd762c6761619f4e5a1cb957e22e
scripts for installing with helm
[ { "change_type": "ADD", "old_path": null, "new_path": "helm/dev.yaml", "diff": "+imageTags.db: \"\"\n+imageTags.instancesManager: \"\"\n+imageTags.model: \"\"\n+imageTags.oauth: \"\"\n+imageTags.proxy: \"\"\n+imageTags.wsClient: \"\"\n+imageTags.wsManager: \"\"\n" }, { "change_type": "ADD", ...
Kotlin
Apache License 2.0
modelix/modelix
scripts for installing with helm
426,496
01.07.2022 20:31:29
-7,200
6bad8bb094617909525d0ec1c1a32ac6b6e0f279
model server works
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "diff": "@@ -24,11 +24,16 @@ import org.keycloak.representations.idm.authorization.ResourceRepres...
Kotlin
Apache License 2.0
modelix/modelix
model server works
426,496
03.07.2022 17:34:42
-7,200
06101ddb96ede3d5af77318408ee5b1a526fcedd
keycloak configuration fixed
[ { "change_type": "MODIFY", "old_path": "helm/dev.yaml", "new_path": "helm/dev.yaml", "diff": "imageTags:\ndb: \"\"\ninstancesManager: \"\"\n- model: \"\"\n+ model: \"2020.3.5-202207012021-SNAPSHOT\"\noauth: \"\"\n- proxy: \"\"\n+ proxy: \"2020.3.5-202207012028-SNAPSHOT\"\nwsClient: \"\"\nwsManager: ...
Kotlin
Apache License 2.0
modelix/modelix
keycloak configuration fixed
426,496
04.07.2022 11:45:05
-7,200
3c107c8694cb3ae7ac826a0008f0486c5b4b0c98
keycloak realm import (3)
[ { "change_type": "MODIFY", "old_path": "helm/modelix/keycloak-realm.json", "new_path": "helm/modelix/keycloak-realm.json", "diff": "]\n}\n],\n- \"policies\": [\n- {\n- \"id\": \"0274f31b-cd46-4b8b-bbc6-5f5aa62c3cab\",\n- \"name\": \"Default Policy\",\n- \"description\": \"A policy that grants access...
Kotlin
Apache License 2.0
modelix/modelix
keycloak realm import (3)
426,496
04.07.2022 13:28:33
-7,200
21921a652ef21543e17e282f8fbe6d6c18212c6c
keycloak realm import (4)
[ { "change_type": "MODIFY", "old_path": "helm/modelix/templates/common/keycloak-deployment.yaml", "new_path": "helm/modelix/templates/common/keycloak-deployment.yaml", "diff": "@@ -20,7 +20,7 @@ spec:\ncontainers:\n- name: keycloak\nimage: quay.io/keycloak/keycloak:18.0.1\n- args: [\"start-dev\"]\n+ ...
Kotlin
Apache License 2.0
modelix/modelix
keycloak realm import (4)
426,496
04.07.2022 13:28:53
-7,200
0c2bc3ce1d32ef938243383af437a4f109e50cda
allow disabling workspaces
[ { "change_type": "MODIFY", "old_path": "helm/dev.yaml", "new_path": "helm/dev.yaml", "diff": "@@ -14,3 +14,5 @@ keycloak:\nclientSecret: \"fzEj6AmIPwtKDs9D0KmWnk9CPyoLj5OS\"\nloglevel: \"debug\"\ndebug: true\n+workspaces:\n+ enabled: false\n\\ No newline at end of file\n" }, { "change_type":...
Kotlin
Apache License 2.0
modelix/modelix
allow disabling workspaces
426,496
04.07.2022 14:22:54
-7,200
b3ab7be4cbf4493dcf877e438c28cfe1ce1919a9
some keycloak config adjustments
[ { "change_type": "MODIFY", "old_path": "helm/modelix/keycloak-realm.json", "new_path": "helm/modelix/keycloak-realm.json", "diff": "\"oauth2DeviceCodeLifespan\": 600,\n\"oauth2DevicePollingInterval\": 5,\n\"enabled\": true,\n- \"sslRequired\": \"external\",\n- \"registrationAllowed\": false,\n- \"re...
Kotlin
Apache License 2.0
modelix/modelix
some keycloak config adjustments
426,496
04.07.2022 15:48:29
-7,200
d6162c44aed8c1cf6ffd001abbf7dc875ed9c719
helm chart testing and refinement
[ { "change_type": "MODIFY", "old_path": "helm/dev.yaml", "new_path": "helm/dev.yaml", "diff": "@@ -5,14 +5,12 @@ imageTags:\noauth: \"\"\nproxy: \"2020.3.5-202207012028-SNAPSHOT\"\nwsClient: \"\"\n- wsManager: \"\"\n-external:\n- hostname: \"172.16.2.52.nip.io\"\n- keycloak:\n- hostname: \"kc.172.16....
Kotlin
Apache License 2.0
modelix/modelix
helm chart testing and refinement
426,496
04.07.2022 18:37:20
-7,200
59f3d98ca13643cbc0622206270e6a87780ee30b
fixed permission checking with keycloak
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "diff": "@@ -29,19 +29,48 @@ object KeycloakUtils {\nval CLIENT_ID = System.getenv(\"KEYCLOAK_CLI...
Kotlin
Apache License 2.0
modelix/modelix
fixed permission checking with keycloak
426,496
05.07.2022 09:03:48
-7,200
7ebab12f55a81bf8b927a5006864e1cc5328e91c
enabled permission checks on the model server
[ { "change_type": "MODIFY", "old_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "new_path": "model-server/src/main/kotlin/org/modelix/model/server/KtorModelServer.kt", "diff": "package org.modelix.model.server\n-import io.ktor.server.application.*\n-import io.ktor....
Kotlin
Apache License 2.0
modelix/modelix
enabled permission checks on the model server
426,496
05.07.2022 18:16:27
-7,200
6e7cebcee3a0e6932f9ca423081ccf7cd9331efd
Model client authentication using keycloak (2)
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -14,7 +14,7 @@ def getGithubCredentials() {\n}\nbuildscript {\n- ext.kotlinVersion = '1.4.32'\n+ ext.kotlinVersion = '1.6.21'\nrepositories {\n/* It is useful to have the central maven repo before the Item...
Kotlin
Apache License 2.0
modelix/modelix
Model client authentication using keycloak (2)
426,496
06.07.2022 09:22:31
-7,200
1b92ec8018dfa61c1042562bf66395118cb8ac64
Old itemis nexus disabled It has some issues currently and should be replaced anyway.
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -24,7 +24,7 @@ buildscript {\nmaven { url 'https://plugins.gradle.org/m2/' }\nmavenCentral()\nmaven { url 'https://artifacts.itemis.cloud/repository/maven-mps/' }\n- maven { url 'https://projects.itemis.de...
Kotlin
Apache License 2.0
modelix/modelix
Old itemis nexus disabled It has some issues currently and should be replaced anyway.
426,496
06.07.2022 09:34:42
-7,200
86b3ed47dcfa2c128b570b899f8c9cb4df9bba56
The gradle plugin is not yet available at the new nexus
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -24,7 +24,7 @@ buildscript {\nmaven { url 'https://plugins.gradle.org/m2/' }\nmavenCentral()\nmaven { url 'https://artifacts.itemis.cloud/repository/maven-mps/' }\n- //maven { url 'https://projects.itemis....
Kotlin
Apache License 2.0
modelix/modelix
The gradle plugin is not yet available at the new nexus
426,496
08.07.2022 09:40:51
-7,200
aa1ac7edc45dc03df208d422b9d81db91c146d06
Cleanup nginx config
[ { "change_type": "MODIFY", "old_path": "proxy/nginx.conf", "new_path": "proxy/nginx.conf", "diff": "@@ -11,11 +11,7 @@ http {\nresolver $NAMESERVER valid=10s;\nlocation ~ ^/model/(.*)$ {\n- proxy_set_header Referer $http_referer;\n- proxy_set_header X-Real-IP $remote_addr;\nproxy_set_header X-Forwar...
Kotlin
Apache License 2.0
modelix/modelix
Cleanup nginx config
426,496
08.07.2022 19:07:50
-7,200
7e29d94c6eb2f77a66ddbc1862ec48243edc1372
fixed ModelClient_Test
[ { "change_type": "MODIFY", "old_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "new_path": "authorization/src/main/kotlin/org/modelix/authorization/KeycloakUtils.kt", "diff": "*/\npackage org.modelix.authorization\n+import com.auth0.jwk.JwkProviderBuilder\nimport ...
Kotlin
Apache License 2.0
modelix/modelix
fixed ModelClient_Test