diff --git a/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml b/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml index fdb88a0195..458557c5ad 100644 --- a/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml +++ b/deploy/docker-swarm/clickhouse-setup/docker-compose.yaml @@ -146,7 +146,7 @@ services: condition: on-failure query-service: - image: signoz/query-service:0.26.0 + image: signoz/query-service:0.26.1 command: [ "-config=/root/config/prometheus.yml" ] # ports: # - "6060:6060" # pprof port @@ -182,7 +182,7 @@ services: <<: *clickhouse-depend frontend: - image: signoz/frontend:0.26.0 + image: signoz/frontend:0.26.1 deploy: restart_policy: condition: on-failure diff --git a/deploy/docker/clickhouse-setup/docker-compose.yaml b/deploy/docker/clickhouse-setup/docker-compose.yaml index 15926cfc70..7f94a52602 100644 --- a/deploy/docker/clickhouse-setup/docker-compose.yaml +++ b/deploy/docker/clickhouse-setup/docker-compose.yaml @@ -163,7 +163,7 @@ services: # Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md` query-service: - image: signoz/query-service:${DOCKER_TAG:-0.26.0} + image: signoz/query-service:${DOCKER_TAG:-0.26.1} container_name: signoz-query-service command: [ "-config=/root/config/prometheus.yml" ] # ports: @@ -198,7 +198,7 @@ services: <<: *clickhouse-depend frontend: - image: signoz/frontend:${DOCKER_TAG:-0.26.0} + image: signoz/frontend:${DOCKER_TAG:-0.26.1} container_name: signoz-frontend restart: on-failure depends_on: diff --git a/frontend/src/constants/queryBuilder.ts b/frontend/src/constants/queryBuilder.ts index 515be4d080..6b3e6f0eb6 100644 --- a/frontend/src/constants/queryBuilder.ts +++ b/frontend/src/constants/queryBuilder.ts @@ -260,6 +260,8 @@ export const OPERATORS = { NIN: 'NOT_IN', LIKE: 'LIKE', NLIKE: 'NOT_LIKE', + REGEX: 'REGEX', + NREGEX: 'NOT_REGEX', '=': '=', '!=': '!=', EXISTS: 'EXISTS', @@ -284,6 +286,8 @@ export const QUERY_BUILDER_OPERATORS_BY_TYPES = { OPERATORS.NOT_CONTAINS, OPERATORS.EXISTS, OPERATORS.NOT_EXISTS, + OPERATORS.REGEX, + OPERATORS.NREGEX, ], int64: [ OPERATORS['='], diff --git a/frontend/src/container/MySettings/Password/index.tsx b/frontend/src/container/MySettings/Password/index.tsx index 33b8f9c5f2..493f5662b7 100644 --- a/frontend/src/container/MySettings/Password/index.tsx +++ b/frontend/src/container/MySettings/Password/index.tsx @@ -81,6 +81,13 @@ function PasswordContainer(): JSX.Element { } }; + const isDisabled = + isLoading || + currentPassword.length === 0 || + updatePassword.length === 0 || + isPasswordPolicyError || + currentPassword === updatePassword; + return ( @@ -132,13 +139,7 @@ function PasswordContainer(): JSX.Element { )}