Skip to content

Commit e57f74d

Browse files
authored
Merge branch 'master' into feature/dashboard-color-picker-gui
2 parents ae523da + 55af468 commit e57f74d

824 files changed

Lines changed: 25891 additions & 19482 deletions

File tree

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
**/*.geojson @villebro @rusackas
3636
**/*.ipynb @villebro @rusackas
37-
/superset-frontend/plugins/legacy-plugin-chart-country-map/ @villebro @rusackas
37+
/superset-frontend/plugins/plugin-chart-country-map/ @villebro @rusackas
3838

3939
# Notify translation maintainers of changes to translations
4040

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ updates:
4747
# as a single manual upgrade anyway. TODO: remove when Babel 8 support is viable.
4848
- dependency-name: "@babel/*"
4949
update-types: ["version-update:semver-major"]
50+
# v2.0.0 renamed ZSTDDecompress to decompress and made it async, breaking
51+
# the webpack dev proxy (see #38662, #39138, #39139). Dependabot reopened
52+
# the same bump in #39369 after the first revert, so pin it here instead
53+
# of relying on a package.json comment (package.json is JSON and can't
54+
# hold comments). Remove this once the proxy code is updated to await
55+
# the async decompress() API.
56+
- dependency-name: "simple-zstd"
5057
directory: "/superset-frontend/"
5158
schedule:
5259
interval: "daily"

.github/workflows/check-python-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Login to Docker Hub
5252
if: steps.check.outputs.python
5353
continue-on-error: true
54-
uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2
54+
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
5555
with:
5656
username: ${{ secrets.DOCKERHUB_USER }}
5757
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
# Initializes the CodeQL tools for scanning.
6666
- name: Initialize CodeQL
67-
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
67+
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
6868
with:
6969
languages: ${{ matrix.language }}
7070
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -75,6 +75,6 @@ jobs:
7575
# queries: security-extended,security-and-quality
7676

7777
- name: Perform CodeQL Analysis
78-
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
78+
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
7979
with:
8080
category: "/language:${{matrix.language}}"

.github/workflows/generate-FOSSA-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
persist-credentials: false
3838
submodules: recursive
3939
- name: Setup Java
40-
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
40+
uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
4141
with:
4242
distribution: "temurin"
4343
java-version: "11"

.github/workflows/license-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
persist-credentials: false
2424
submodules: recursive
2525
- name: Setup Java
26-
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
26+
uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
2727
with:
2828
distribution: "temurin"
2929
java-version: "11"

.github/workflows/mirror-service-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ jobs:
8080
- starburstdata/presto:350-e.6
8181
steps:
8282
- name: Log in to Docker Hub (authenticated source pulls)
83-
uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2
83+
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
8484
with:
8585
username: ${{ secrets.DOCKERHUB_USER }}
8686
password: ${{ secrets.DOCKERHUB_TOKEN }}
8787

8888
- name: Log in to GHCR (push target)
89-
uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2
89+
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
9090
with:
9191
registry: ghcr.io
9292
username: ${{ github.actor }}

.github/workflows/superset-docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
node-version-file: "./docs/.nvmrc"
7777
- name: Setup Python
7878
uses: ./.github/actions/setup-backend/
79-
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
79+
- uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
8080
with:
8181
distribution: "zulu"
8282
java-version: "21"

.github/workflows/sync-requirements-for-python-dep-upgrade-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Login to Docker Hub
3939
if: ${{ steps.dependabot-metadata.outputs.package-ecosystem == 'pip' }}
4040
continue-on-error: true
41-
uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2
41+
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
4242
with:
4343
username: ${{ secrets.DOCKERHUB_USER }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ PROJECT.md
138138
.aider*
139139
.claude_rc*
140140
.claude/settings.local.json
141+
.claude/worktrees/
141142
.env.local
142143
oxc-custom-build/
143144
*.code-workspace

0 commit comments

Comments
 (0)