forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from apache/master
fetch remote
- Loading branch information
Showing
5,735 changed files
with
984,099 additions
and
200,620 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# https://cwiki.apache.org/confluence/display/INFRA/.asf.yaml+features+for+git+repositories | ||
--- | ||
github: | ||
description: "Apache Superset is a Data Visualization and Data Exploration Platform" | ||
homepage: https://superset.apache.org/ | ||
labels: | ||
- superset | ||
- apache | ||
- apache-superset | ||
- data-visualization | ||
- data-viz | ||
- analytics | ||
- business-intelligence | ||
- data-science | ||
- data-engineering | ||
- asf | ||
- bi | ||
- business-analytics | ||
- data-analytics | ||
- data-analysis | ||
- data-science | ||
- python | ||
- react | ||
- sql-editor | ||
- flask | ||
features: | ||
# Enable issues management | ||
issues: true | ||
# Enable projects for project management boards | ||
projects: true | ||
# Enable wiki for documentation | ||
wiki: true | ||
|
||
enabled_merge_buttons: | ||
squash: true | ||
merge: false | ||
rebase: false | ||
|
||
protected_branches: | ||
master: | ||
required_status_checks: | ||
# strict means "Require branches to be up to date before merging". | ||
strict: false | ||
# contexts are the names of checks that must pass | ||
contexts: | ||
- check | ||
- cypress-matrix (1, chrome) | ||
- cypress-matrix (2, chrome) | ||
- cypress-matrix (3, chrome) | ||
- docker-build | ||
- frontend-build | ||
- pre-commit (3.8) | ||
- python-lint (3.8) | ||
- test-mysql (3.8) | ||
- test-postgres (3.8) | ||
- test-postgres (3.9) | ||
- test-sqlite (3.8) | ||
|
||
required_pull_request_reviews: | ||
dismiss_stale_reviews: false | ||
require_code_owner_reviews: true | ||
required_approving_review_count: 1 | ||
|
||
required_signatures: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,35 @@ | ||
codecov: | ||
notify: | ||
after_n_builds: 4 | ||
ignore: | ||
- "superset/migrations/versions/*.py" | ||
- "superset-frontend/packages/superset-ui-demo/**/*" | ||
- "**/*.stories.tsx" | ||
- "**/*.stories.jsx" | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
informational: true | ||
# Commits pushed to master should not make the overall | ||
# project coverage decrease: | ||
target: auto | ||
threshold: 0% | ||
core-packages-ts: | ||
target: 100% | ||
paths: | ||
- 'superset-frontend/packages' | ||
- '!superset-frontend/packages/**/*.jsx' | ||
- '!superset-frontend/packages/**/*.tsx' | ||
core-packages-tsx: | ||
target: 50% | ||
paths: | ||
- 'superset-frontend/packages/**/*.jsx' | ||
- 'superset-frontend/packages/**/*.tsx' | ||
patch: | ||
default: | ||
informational: true | ||
threshold: 0% | ||
flag_management: | ||
default_rules: | ||
carryforward: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
|
||
# 4 space indentation for Python files | ||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
max_line_length=88 | ||
|
||
# 2 space indentation for Frontend files | ||
[*.{js,jsx,ts,tsx,html,less,css}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# 2 space indentation for json and yaml files | ||
[*.{json,yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# Tab indentation | ||
[Makefile] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docker/**/*.sh text eol=lf |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Notify all committers of DB migration changes, per SIP-59 | ||
|
||
# https://github.com/apache/superset/issues/13351 | ||
|
||
/superset/migrations/ @apache/superset-committers | ||
|
||
# Notify Preset team when ephemeral env settings are changed | ||
|
||
.github/workflows/ecs-task-definition.json @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
.github/workflows/docker-ephemeral-env.yml @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
.github/workflows/ephemeral*.yml @robdiciuccio @craig-rueda @rusackas @eschutho @dpgaspar @nytai @mistercrunch | ||
|
||
# Notify some committers of changes in the Select component | ||
|
||
/superset-frontend/src/components/Select/ @michael-s-molina @geido @ktmud | ||
|
||
# Notify Helm Chart maintainers about changes in it | ||
|
||
/helm/superset/ @craig-rueda @dpgaspar @villebro | ||
|
||
# Notify E2E test maintainers of changes | ||
/superset-frontend/cypress-base/ @jinghua-qa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Cosmetic Issue | ||
about: Describe a cosmetic issue with CSS, positioning, layout, labeling, or similar | ||
labels: "cosmetic-issue" | ||
|
||
--- | ||
|
||
## Screenshot | ||
|
||
[drag & drop image(s) here!] | ||
|
||
## Description | ||
|
||
[describe the issue here!] | ||
|
||
## Design input | ||
[describe any input/collaboration you'd like from designers, and | ||
tag accordingly. For design review, add the | ||
label `design:review`. If this includes a design proposal, | ||
include the label `design:suggest`] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
labels: "#enhancement" | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
Github Discussions is our new home for discussing features and improvements! | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
https://github.com/apache/superset/discussions/categories/ideas | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
We'd like to keep Github Issues focuses on bugs and SIP's (Superset Improvement Proposals)! | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
Please note that feature requests opened as Github Issues will be moved to Discussions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,27 @@ | ||
### CATEGORY | ||
|
||
Choose one | ||
|
||
- [ ] Bug Fix | ||
- [ ] Enhancement (new features, refinement) | ||
- [ ] Refactor | ||
- [ ] Add tests | ||
- [ ] Build / Development Environment | ||
- [ ] Documentation | ||
<!--- | ||
Please write the PR title following the conventions at https://www.conventionalcommits.org/en/v1.0.0/ | ||
Example: | ||
fix(dashboard): load charts correctly | ||
--> | ||
|
||
### SUMMARY | ||
<!--- Describe the change below, including rationale and design decisions --> | ||
|
||
### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF | ||
<!--- Skip this if not applicable --> | ||
|
||
### TEST PLAN | ||
<!--- What steps should be taken to verify the changes --> | ||
### TESTING INSTRUCTIONS | ||
<!--- Required! What steps can be taken to manually verify the changes? --> | ||
|
||
### ADDITIONAL INFORMATION | ||
<!--- Check any relevant boxes with "x" --> | ||
<!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> | ||
- [ ] Has associated issue: | ||
- [ ] Required feature flags: | ||
- [ ] Changes UI | ||
- [ ] Requires DB Migration. | ||
- [ ] Confirm DB Migration upgrade and downgrade tested. | ||
- [ ] Includes DB Migration (follow approval process in [SIP-59](https://github.com/apache/superset/issues/13351)) | ||
- [ ] Migration is atomic, supports rollback & is backwards-compatible | ||
- [ ] Confirm DB migration upgrade and downgrade tested | ||
- [ ] Runtime estimates and downtime expectations provided | ||
- [ ] Introduces new feature or API | ||
- [ ] Removes existing feature or API | ||
|
||
### REVIEWERS |
Submodule cached-dependencies
added at
064315
Submodule chart-releaser-action
added at
120944
Submodule chart-testing-action
added at
b0d445
Submodule comment-on-pr
added at
85a56b
Oops, something went wrong.