diff --git a/ee/api/chalicelib/core/license.py b/ee/api/chalicelib/core/license.py index f41d337b1..905c4f2ec 100644 --- a/ee/api/chalicelib/core/license.py +++ b/ee/api/chalicelib/core/license.py @@ -12,7 +12,7 @@ def get_status(tenant_id): return { "hasActivePlan": unlock.is_valid(), "current": { - "edition": r.get("edition", "").upper(), + "edition": r.get("edition", "").lower(), "versionNumber": r.get("version_number", ""), "license": license[0:2] + "*" * (len(license) - 4) + license[-2:], "expirationDate": unlock.get_expiration_date(), diff --git a/frontend/env.js b/frontend/env.js index c2fa84cb5..ad71e1479 100644 --- a/frontend/env.js +++ b/frontend/env.js @@ -21,7 +21,7 @@ const oss = { MINIO_ACCESS_KEY: process.env.MINIO_ACCESS_KEY, MINIO_SECRET_KEY: process.env.MINIO_SECRET_KEY, ICE_SERVERS: process.env.ICE_SERVERS, - TRACKER_VERSION: '3.4.11', // trackerInfo.version, + TRACKER_VERSION: '3.4.12', // trackerInfo.version, } module.exports = { diff --git a/frontend/package.json b/frontend/package.json index a2e80b447..5f6c53723 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -102,7 +102,7 @@ "postcss-nesting": "^4.2.1", "postcss-simple-vars": "^4.1.0", "style-loader": "^0.23.1", - "svgo": "^2.8.0", + "svgo": "^1.3.2", "ts-loader": "^8.3.0", "typed-css-modules": "^0.7.0", "typescript": "^3.9.9", diff --git a/scripts/helm/README.md b/scripts/helm/README.md index b3d618665..2ac1a3556 100644 --- a/scripts/helm/README.md +++ b/scripts/helm/README.md @@ -6,6 +6,7 @@ Installation components are separated by namespaces. - **app:** Core OpenReplay application related components. - alerts + - utilities - assets - chalice - ender diff --git a/scripts/helm/upgrade.sh b/scripts/helm/upgrade.sh index 23526cd20..f57d2fb07 100644 --- a/scripts/helm/upgrade.sh +++ b/scripts/helm/upgrade.sh @@ -80,7 +80,7 @@ patch installation_type=1 if [[ ${ENTERPRISE} -eq 1 ]]; then - cp -rf ../../ee/scripts/helm/db/* db/ + cp -rf ../../ee/scripts/* ../../scripts/ echo -e "Migrating clickhouse" migration clickhouse fi