Skip to content

Commit dd625fc

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix-hybrid-bulk
2 parents e379143 + 2cdcdfd commit dd625fc

File tree

109 files changed

+9152
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+9152
-421
lines changed

.github/workflows/mysql-nightly-e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
--project=chromium \
9797
--grep-invert @dataAssetRules \
9898
--shard=${CHROMIUM_SHARD}/5
99+
--workers=50%
99100
fi
100101
101102
env:

.github/workflows/playwright-postgresql-e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ jobs:
128128
--grep @ingestion \
129129
--grep-invert @dataAssetRules \
130130
--shard=${CHROMIUM_SHARD}/5
131+
--workers=50%
131132
132133
else
133134
echo "🔹 Running all other tests (excluding DataAssetRules) on chromium shard ${CHROMIUM_SHARD}/5"

.github/workflows/postgresql-nightly-e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ jobs:
9797
--project=chromium \
9898
--grep-invert @dataAssetRules \
9999
--shard=${CHROMIUM_SHARD}/5
100+
--workers=50%
100101
fi
101102
102103
env:
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Copyright 2025 Collate
2+
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# you may not use this file except in compliance with the License.
4+
# You may obtain a copy of the License at
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
# Unless required by applicable law or agreed to in writing, software
7+
# distributed under the License is distributed on an "AS IS" BASIS,
8+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
# See the License for the specific language governing permissions and
10+
# limitations under the License.
11+
12+
name: UI Core Components Tests
13+
14+
on:
15+
pull_request:
16+
types: [opened, synchronize, reopened]
17+
paths:
18+
- "openmetadata-ui-core-components/src/main/resources/ui/**"
19+
- ".github/workflows/ui-core-components-tests.yml"
20+
workflow_dispatch:
21+
inputs:
22+
branch:
23+
description: "Branch to run tests on"
24+
required: false
25+
default: "main"
26+
type: string
27+
run-coverage:
28+
description: "Generate coverage report"
29+
required: false
30+
default: true
31+
type: boolean
32+
skip-type-check:
33+
description: "Skip TypeScript type check"
34+
required: false
35+
default: false
36+
type: boolean
37+
38+
permissions:
39+
contents: read
40+
pull-requests: write
41+
42+
jobs:
43+
placeholder:
44+
name: Placeholder - No Tests
45+
runs-on: ubuntu-latest
46+
47+
steps:
48+
- name: Placeholder step
49+
run: echo "Nothing to test"

bootstrap/sql/migrations/native/1.11.0/mysql/postDataMigrationSQLScript.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,6 @@ SET json = JSON_SET(
9696
)
9797
WHERE json->>'$.name' IN ('CollateAITierAgentApplication', 'CollateAIQualityAgentApplication')
9898
AND json->>'$.appType' = 'internal' AND json->>'$.sourcePythonClass' IS NULL;
99+
100+
-- Remove bot form App entity
101+
UPDATE installed_apps SET json = JSON_REMOVE(json, '$.bot') WHERE JSON_CONTAINS_PATH(json, 'one', '$.bot');

bootstrap/sql/migrations/native/1.11.0/postgres/postDataMigrationSQLScript.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,6 @@ SET json = jsonb_set(
100100
)
101101
WHERE json->>'name' IN ('CollateAIQualityAgentApplication', 'CollateAITierAgentApplication')
102102
AND json->>'appType' = 'internal' AND json->>'sourcePythonClass' IS NULL;
103+
104+
-- Remove bot form App entity
105+
UPDATE installed_apps SET json = json - 'bot';

0 commit comments

Comments
 (0)