Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/node/set-up-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
# restore s3 cache for node installation
- name: Restore Node.js from cache
if: ${{ steps.check-node.outputs.node-installed == 'false' }}
uses: runs-on/cache/restore@v4
uses: runs-on/cache/restore@v5.0.5
id: node-cache
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/node/warm-up-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
# create s3 cache for node installation
- name: Cache Node.js
if: ${{ steps.check-node.outputs.node-installed == 'false' }}
uses: runs-on/cache@v4
uses: runs-on/cache@v5.0.5
id: node-cache
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/rush/set-up-rush/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runs:
# Restore cache for global rush installation
# We need defined unified home folder for rush on runners and different docker images
- name: Cache Rush
uses: runs-on/cache/restore@v4
uses: runs-on/cache/restore@v5.0.5
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
with:
Expand All @@ -76,7 +76,7 @@ runs:
- name: Cache pnpm
if: ${{ inputs.install-dependencies == 'true' }}
id: cache-pnpm
uses: runs-on/cache/restore@v4
uses: runs-on/cache/restore@v5.0.5
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/rush/warm-up-rush/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
# path common/.rush is set via RUSH_GLOBAL_FOLDER
# We need defined unified home folder for rush on runners and different docker images
- name: Cache Rush
uses: runs-on/cache@v4
uses: runs-on/cache@v5.0.5
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
with:
Expand All @@ -33,7 +33,7 @@ runs:
# Perform a lookup to check if the cache for pnpm exists
- name: Cache pnpm lookup
id: cache-pnpm-lookup
uses: runs-on/cache/restore@v4
uses: runs-on/cache/restore@v5.0.5
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
with:
Expand All @@ -47,7 +47,7 @@ runs:
# we skip cache fetch if we are warming up the cache and cache hit
if: ${{ steps.cache-pnpm-lookup.outputs.cache-hit != 'true' }}
id: cache-pnpm
uses: runs-on/cache@v4
uses: runs-on/cache@v5.0.5
env:
RUNS_ON_S3_BUCKET_CACHE: gdc-github-cache
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checklist-integrated-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
needs: [setup-stage]
if: ${{ needs.setup-stage.outputs.run-cypress-sdk == 'true' }}
with:
CYPRESS_TEST_TAGS: "checklist_integrated_fe"
CYPRESS_TEST_TAGS: "checklist_fe"
GIT_REVISION: ${{ inputs.test-branch }}
TEST_BACKEND: "https://checklist.staging.stg11.panther.intgdc.com"
TIGER_DATASOURCES_NAME: "vertica_staging-goodsales"
Expand All @@ -90,7 +90,7 @@ jobs:
needs: [setup-stage, checklist-SDK]
if: ${{ !cancelled() && needs.setup-stage.outputs.run-export == 'true' }}
with:
CYPRESS_TEST_TAGS: "checklist_integrated_export_fe"
CYPRESS_TEST_TAGS: "checklist_export_fe"
GIT_REVISION: ${{ inputs.test-branch }}
TEST_BACKEND: "https://checklist.staging.stg11.panther.intgdc.com"
TIGER_DATASOURCES_NAME: "vertica_staging-goodsales"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "sdk-ui-gen-ai: Remove enableLlmEndpointReplacement feature flag and the legacy LLM endpoint code path; the provider mode is now the only supported behavior.",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@gooddata/sdk-ui-all",
"comment": "fix: preserve isHidden/isHiddenFromKda on insight and metric save",
"type": "none"
}
],
"packageName": "@gooddata/sdk-ui-all"
}
4 changes: 2 additions & 2 deletions common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
{
"definitionName": "lockStepVersion",
"policyName": "sdk",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"nextBump": "prerelease",
"mainProject": "@gooddata/sdk-ui-all"
},
{
"definitionName": "lockStepVersion",
"policyName": "sdk-examples",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"nextBump": "prerelease",
"mainProject": "@gooddata/sdk-ui-all"
}
Expand Down
4 changes: 2 additions & 2 deletions common/scripts/ci/run_boiler_app_integrated.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ fi
# Run Playwright tests
export BASE_URL=$BOILER_APP_HOST
if [ -n "$FILTER" ]; then
npx playwright test --config ./playwright/playwright.config.ts --grep "@checklist_integrated_boiler_tiger" $(echo "$FILTER" | tr "," " ");
npx playwright test --config ./playwright/playwright.config.ts --grep "@checklist_boiler_tiger" $(echo "$FILTER" | tr "," " ");
else
npx playwright test --config ./playwright/playwright.config.ts --grep "@checklist_integrated_boiler_tiger";
npx playwright test --config ./playwright/playwright.config.ts --grep "@checklist_boiler_tiger";
fi

# Cleanup workspace (scripts moved to sdk-ui-tests-reference-workspace package)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ fi
pushd $E2E_TEST_DIR
cat > .env <<-EOF
HOST=${HOST:-}
PLAYWRIGHT_GREP=@checklist_integrated_boiler_tiger
PLAYWRIGHT_GREP=@checklist_boiler_tiger
FIXTURE_TYPE=${FIXTURE_TYPE:-}
FILTER=${FILTER:-}
TIGER_DATASOURCES_NAME=${TIGER_DATASOURCES_NAME:-}
Expand Down
2 changes: 0 additions & 2 deletions examples/playground/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"rootDir": ".",
"outDir": "./dist",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-examples-template",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "GoodData interactive example template",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-attributefilter",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-chartconfig",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This interactive example demonstrates how to manipulate the chart config.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-columnchart",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-combochart",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "Example demonstrates ComboChart secondaryMeasures definition. ",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-dashboard",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example shows how to use the Dashboard component.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-datefilter",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "Example demonstrates usage of Date Filter component.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-dependentfilters",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-execute",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example demonstrates using Execute component and build custom visualization.",
"license": "LicenseRef-LICENSE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"noCheck": true,
"rootDir": "./src",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"incremental": false,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strictNullChecks": false,
"tsBuildInfoFile": "./tsconfig.check.tsbuildinfo",
"noEmit": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gooddata/sdk-interactive-example-granularity",
"version": "11.35.0-alpha.4",
"version": "11.35.0-alpha.5",
"private": false,
"description": "This example exmplains DateFilter granularity ",
"license": "LicenseRef-LICENSE",
Expand Down
Loading