Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update match-sorter requirement from ^6.3.0 to ^6.3.3 in /superset-frontend/plugins/plugin-chart-table #26696

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a8aca8e
build(deps): update match-sorter requirement
dependabot[bot] Jan 23, 2024
310e9e3
Update package-lock.json
rusackas Jan 23, 2024
e58f4ab
build(deps-dev): bump webpack from 5.76.0 to 5.89.0 in /docs (#26717)
dependabot[bot] Jan 23, 2024
74e1366
build(deps): bump fuse.js from 6.4.6 to 7.0.0 in /superset-frontend (…
dependabot[bot] Jan 23, 2024
50ad3ae
build(deps): update @types/d3-cloud requirement from ^1.2.1 to ^1.2.9…
dependabot[bot] Jan 23, 2024
c3435ef
fix: docker ephemeral environment, push only on testenv comment (#26473)
dpgaspar Jan 23, 2024
7b4e575
docs: update fixed CVEs for version 3.0.3 (#26760)
dpgaspar Jan 23, 2024
9c75c75
build(deps): bump @visx/axis from 3.0.1 to 3.5.0 in /superset-fronten…
dependabot[bot] Jan 23, 2024
5116b7f
build(deps): bump @svgr/webpack from 5.5.0 to 8.1.0 in /docs (#26718)
dependabot[bot] Jan 23, 2024
09f0a06
chore: do not mark helm releases as github latest (#26753)
eschutho Jan 23, 2024
5c0b162
fix(dependencies): stopping (and preventing) full lodash library impo…
rusackas Jan 23, 2024
058c58b
build(deps): update whatwg-fetch requirement from ^3.0.0 to ^3.6.20 i…
dependabot[bot] Jan 23, 2024
2c30e92
docs(storybook): fix typo in TimeFormatStories.tsx (#26105)
HurSungYun Jan 23, 2024
fa6d98c
build(deps-dev): bump @docusaurus/module-type-aliases from 2.4.1 to 3…
dependabot[bot] Jan 23, 2024
4ed96ce
build(deps-dev): bump @types/jest from 26.0.24 to 29.5.11 in /superse…
dependabot[bot] Jan 23, 2024
213c4f8
build(deps): update d3-cloud requirement from ^1.2.5 to ^1.2.7 in /su…
dependabot[bot] Jan 23, 2024
af38706
build: Parallelize the CI image builds (continued) (#26698)
mistercrunch Jan 23, 2024
e8862f2
fix: change the validation logic for python_date_format (#25510)
mapledan Jan 23, 2024
2b1f14d
build(deps-dev): update @types/lodash requirement from ^4.14.149 to ^…
dependabot[bot] Jan 23, 2024
954c3fd
build(deps): update @types/math-expression-evaluator requirement from…
dependabot[bot] Jan 23, 2024
ff6d87f
build(deps): bump d3-color from 1.4.1 to 3.1.0 in /superset-frontend/…
dependabot[bot] Jan 23, 2024
8d18c51
build(deps): bump csstype from 2.6.9 to 3.1.3 in /superset-frontend (…
dependabot[bot] Jan 24, 2024
ae995ce
fix(BigQuery): Support special characters in column/metric names used…
Vitor-Avila Jan 24, 2024
3a2865f
build(deps-dev): bump jest from 26.6.3 to 29.7.0 in /superset-fronten…
dependabot[bot] Jan 24, 2024
b101dff
chore: prevent CI double runs on push + pull_request (#26766)
mistercrunch Jan 24, 2024
844866a
build(deps): update classnames requirement from ^2.3.2 to ^2.5.1 in /…
dependabot[bot] Jan 24, 2024
e673312
build(deps): bump @visx/grid from 3.0.1 to 3.5.0 in /superset-fronten…
dependabot[bot] Jan 24, 2024
6b21b73
chore: improve/decouple eslint and tsc 'npm run' commands (#26704)
mistercrunch Jan 24, 2024
c5d095d
Update package-lock.json
rusackas Jan 24, 2024
69b37f4
build(deps): update match-sorter requirement
dependabot[bot] Jan 24, 2024
79eeba8
Merge branch 'dependabot/npm_and_yarn/superset-frontend/plugins/plugi…
rusackas Jan 26, 2024
892ae58
Revert "Merge branch 'dependabot/npm_and_yarn/superset-frontend/plugi…
rusackas Jan 26, 2024
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
12 changes: 5 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,18 @@ jobs:
steps:
- name: "Check for secrets"
id: check
env:
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
shell: bash
run: |
if [[ -n "$DOCKERHUB_USER" && -n "$DOCKERHUB_TOKEN" ]]; then
echo "has-secrets=true" >> "$GITHUB_ENV"
if [ -n "${{ (secrets.DOCKERHUB_USER != '' && secrets.DOCKERHUB_TOKEN != '') || '' }}" ]; then
echo "has-secrets=1" >> "$GITHUB_OUTPUT"
echo "has secrets!"
else
echo "has-secrets=false" >> "$GITHUB_ENV"
echo "has-secrets=0" >> "$GITHUB_OUTPUT"
echo "no secrets!"
fi
docker-build:
needs: config
if: needs.config.outputs.has-secrets == 'true'
if: needs.config.outputs.has-secrets
name: docker-build
runs-on: ubuntu-latest
strategy:
Expand Down
63 changes: 61 additions & 2 deletions superset-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion superset-frontend/plugins/plugin-chart-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"classnames": "^2.5.1",
"d3-array": "^2.4.0",
"lodash": "^4.17.21",
"match-sorter": "^6.3.0",
"match-sorter": "^6.3.3",
"memoize-one": "^5.1.1",
"react-table": "^7.8.0",
"regenerator-runtime": "^0.13.7",
Expand Down
Loading