From b892e5309e3c11b301ac41e2578c532373e1449b Mon Sep 17 00:00:00 2001 From: Nicholas Padilla Date: Thu, 4 Jun 2026 08:59:12 -0700 Subject: [PATCH] next fix release version - fixed more migration fields and icon in tab --- dev-tools/kind/README.md | 2 +- dev-tools/kind/config/structures-server/values.yaml | 4 ++-- dev-tools/kind/kind-cluster.sh | 2 +- docker-compose/compose.yml | 4 ++-- docs/kubernetes/KIND_TOOLING.md | 2 +- gradle.properties | 2 +- helm/structures/Chart.yaml | 2 +- helm/structures/values.yaml | 4 ++-- structures-frontend/index.html | 2 +- structures-frontend/package.json | 2 +- structures-frontend/public/favicon.svg | 5 +++++ structures-frontend/public/vite.svg | 1 - .../src/main/resources/migrations/V1__init.sql | 4 +++- .../test/resources/docker-compose/cluster-test-compose.yml | 6 +++--- 14 files changed, 24 insertions(+), 18 deletions(-) create mode 100644 structures-frontend/public/favicon.svg delete mode 100644 structures-frontend/public/vite.svg diff --git a/dev-tools/kind/README.md b/dev-tools/kind/README.md index 56aeca19..a354e677 100644 --- a/dev-tools/kind/README.md +++ b/dev-tools/kind/README.md @@ -249,7 +249,7 @@ Load a locally built Docker image into KinD cluster nodes. ./kind-cluster.sh load # Load specific image -./kind-cluster.sh load --image mindsignited/structures-server:3.5.3 +./kind-cluster.sh load --image mindsignited/structures-server:3.5.4 # Load into specific cluster ./kind-cluster.sh load --name test-cluster diff --git a/dev-tools/kind/config/structures-server/values.yaml b/dev-tools/kind/config/structures-server/values.yaml index 5dc3160d..4de3cb57 100644 --- a/dev-tools/kind/config/structures-server/values.yaml +++ b/dev-tools/kind/config/structures-server/values.yaml @@ -33,7 +33,7 @@ image: # Repository matches bootBuildImage output repository: mindsignited/structures-server # Tag from gradle.properties version (structuresVersion=3.5.3-SNAPSHOT) - tag: 3.5.3 + tag: 3.5.4 # Never pull - use images loaded into KinD cluster pullPolicy: Never sha: "" @@ -46,7 +46,7 @@ migration: activeDeadlineSeconds: 300 image: repository: mindsignited/structures-migration - tag: 3.5.3 + tag: 3.5.4 # Never pull - use images loaded into KinD cluster pullPolicy: Never sha: "" diff --git a/dev-tools/kind/kind-cluster.sh b/dev-tools/kind/kind-cluster.sh index e5787dba..c88022e8 100755 --- a/dev-tools/kind/kind-cluster.sh +++ b/dev-tools/kind/kind-cluster.sh @@ -728,7 +728,7 @@ Examples: $(basename "$0") load # Load specific image - $(basename "$0") load --image mindsignited/structures-server:3.5.3 + $(basename "$0") load --image mindsignited/structures-server:3.5.4 # Load into specific cluster $(basename "$0") load --name test-cluster diff --git a/docker-compose/compose.yml b/docker-compose/compose.yml index 0999fcfb..9ea1efad 100644 --- a/docker-compose/compose.yml +++ b/docker-compose/compose.yml @@ -6,7 +6,7 @@ services: structures-migration: container_name: structures-migration pull_policy: always - image: mindsignited/structures-migration:${structuresVersion:-3.5.3} + image: mindsignited/structures-migration:${structuresVersion:-3.5.4} depends_on: structures-elasticsearch: condition: service_healthy @@ -17,7 +17,7 @@ services: structures-server: container_name: structures-server pull_policy: always - image: mindsignited/structures-server:${structuresVersion:-3.5.3} + image: mindsignited/structures-server:${structuresVersion:-3.5.4} depends_on: structures-elasticsearch: condition: service_healthy diff --git a/docs/kubernetes/KIND_TOOLING.md b/docs/kubernetes/KIND_TOOLING.md index cad37e5b..482316a8 100644 --- a/docs/kubernetes/KIND_TOOLING.md +++ b/docs/kubernetes/KIND_TOOLING.md @@ -300,7 +300,7 @@ Load a locally built Docker image into KinD cluster nodes. ./kind-cluster.sh load # Load specific image -./kind-cluster.sh load --image mindsignited/structures-server:3.5.3 +./kind-cluster.sh load --image mindsignited/structures-server:3.5.4 # Load into specific cluster ./kind-cluster.sh load --name test-cluster diff --git a/gradle.properties b/gradle.properties index 0b8b0826..f512db58 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -structuresVersion=3.5.3 +structuresVersion=3.5.4 allureVersion=2.32.0 antlrVersion=4.13.1 diff --git a/helm/structures/Chart.yaml b/helm/structures/Chart.yaml index cd361230..de5efc8b 100644 --- a/helm/structures/Chart.yaml +++ b/helm/structures/Chart.yaml @@ -12,4 +12,4 @@ version: 1.0.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.5.3" +appVersion: "3.5.4" diff --git a/helm/structures/values.yaml b/helm/structures/values.yaml index 909d6190..09912632 100644 --- a/helm/structures/values.yaml +++ b/helm/structures/values.yaml @@ -4,7 +4,7 @@ nameOverride: "" image: repository: mindsignited/structures-server pullPolicy: Always - tag: "3.5.3" + tag: "3.5.4" sha: "" # Migration configuration @@ -15,7 +15,7 @@ migration: activeDeadlineSeconds: 300 image: repository: mindsignited/structures-migration - tag: "3.5.3" + tag: "3.5.4" pullPolicy: Always sha: "" diff --git a/structures-frontend/index.html b/structures-frontend/index.html index 8ec1fb67..c2822cc8 100644 --- a/structures-frontend/index.html +++ b/structures-frontend/index.html @@ -2,7 +2,7 @@ - + Structures diff --git a/structures-frontend/package.json b/structures-frontend/package.json index 264f9bbf..2872e666 100644 --- a/structures-frontend/package.json +++ b/structures-frontend/package.json @@ -1,6 +1,6 @@ { "name": "structures-frontend-next", - "version": "3.5.3", + "version": "3.5.4", "type": "module", "scripts": { "dev": "vite", diff --git a/structures-frontend/public/favicon.svg b/structures-frontend/public/favicon.svg new file mode 100644 index 00000000..b5daf57c --- /dev/null +++ b/structures-frontend/public/favicon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/structures-frontend/public/vite.svg b/structures-frontend/public/vite.svg deleted file mode 100644 index e7b8dfb1..00000000 --- a/structures-frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/structures-migration/src/main/resources/migrations/V1__init.sql b/structures-migration/src/main/resources/migrations/V1__init.sql index 247ab2d7..f665295e 100644 --- a/structures-migration/src/main/resources/migrations/V1__init.sql +++ b/structures-migration/src/main/resources/migrations/V1__init.sql @@ -86,7 +86,9 @@ WITH (SCRIPT == 'ctx._source.applicationId = ctx._source.namespace; ctx._source.remove("metadata"); ctx._source.remove("traits"); ctx._source.remove("primaryKey"); - ctx._source.remove("itemDefinition");', + ctx._source.remove("itemDefinition"); + ctx._source.remove("multiTenantSelectionEnabled"); + ctx._source.remove("optimisticLockingEnabled");', SKIP_IF_NO_SOURCE == TRUE, WAIT == TRUE); diff --git a/structures-test/src/test/resources/docker-compose/cluster-test-compose.yml b/structures-test/src/test/resources/docker-compose/cluster-test-compose.yml index b23daba0..ede30159 100644 --- a/structures-test/src/test/resources/docker-compose/cluster-test-compose.yml +++ b/structures-test/src/test/resources/docker-compose/cluster-test-compose.yml @@ -1,7 +1,7 @@ services: structures-node1: - image: docker.io/mindsignited/structures-server:3.5.3 + image: docker.io/mindsignited/structures-server:3.5.4 healthcheck: test: ["CMD", "/workspace/health-check"] interval: 10s @@ -90,7 +90,7 @@ services: memory: 4G structures-node2: - image: docker.io/mindsignited/structures-server:3.5.3 + image: docker.io/mindsignited/structures-server:3.5.4 healthcheck: test: ["CMD", "/workspace/health-check"] interval: 10s @@ -178,7 +178,7 @@ services: memory: 4G structures-node3: - image: docker.io/mindsignited/structures-server:3.5.3 + image: docker.io/mindsignited/structures-server:3.5.4 healthcheck: test: ["CMD", "/workspace/health-check"] interval: 10s