From d49dc662cea8c31fb3fd612ec613c0b32ca69f9b Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Wed, 26 Aug 2020 11:23:03 -0400 Subject: [PATCH 1/2] Add changelog w/ 0.18.0rc1 entries --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..67117684 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +## dbt 0.18.0 (Release TBD) + +## dbt 0.18.0rc1 (August 19, 2020) + +- Add "Referenced By" and "Depends On" sections for each node ([docs#106](https://github.com/fishtown-analytics/dbt-docs/pull/106)) +- Add Name, Description, Column, SQL, Tags filters to site search ([docs#108](https://github.com/fishtown-analytics/dbt-docs/pull/108)) +- Add relevance criteria to site search ([docs#113](https://github.com/fishtown-analytics/dbt-docs/pull/113)) +- Support new selector methods, intersection, and arbitrary parent/child depth in DAG selection syntax ([docs#118](https://github.com/fishtown-analytics/dbt-docs/pull/118)) +- Revise anonymous event tracking: simpler URL fuzzing; differentiate between Cloud-hosted and non-Cloud docs ([docs#121](https://github.com/fishtown-analytics/dbt-docs/pull/121)) + +Contributors: +- [@stephen8chang](https://github.com/stephen8chang) ([docs#106](https://github.com/fishtown-analytics/dbt-docs/pull/106), [docs#108](https://github.com/fishtown-analytics/dbt-docs/pull/108), [docs#113](https://github.com/fishtown-analytics/dbt-docs/pull/113)) From e5ae229f4382cbf7bd6190f17b453f738c2f0f03 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Wed, 26 Aug 2020 11:37:33 -0400 Subject: [PATCH 2/2] Add issue, pr templates --- .github/issue_template/bug_report.md | 28 +++++++++++++++++++++++++++ .github/issue_template/enhancement.md | 23 ++++++++++++++++++++++ .github/pull_request_template.md | 22 +++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 .github/issue_template/bug_report.md create mode 100644 .github/issue_template/enhancement.md create mode 100644 .github/pull_request_template.md diff --git a/.github/issue_template/bug_report.md b/.github/issue_template/bug_report.md new file mode 100644 index 00000000..df67b5d3 --- /dev/null +++ b/.github/issue_template/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Report a bug or an issue you've found with dbt-docs +title: '' +labels: bug, triage +assignees: '' + +--- + +### Describe the bug +A clear and concise description of what the bug is. What command did you run? What happened? + +### Steps To Reproduce +In as much detail as possible, please provide steps to reproduce the issue. Sample data that triggers the issue, example model code, etc is all very helpful here. + +### Expected behavior +A clear and concise description of what you expected to happen. + +### Screenshots and log output +If applicable, add screenshots or log output to help explain your problem. + +**The output of `dbt --version`:** +``` + +``` + +### Additional context +Add any other context about the problem here. diff --git a/.github/issue_template/enhancement.md b/.github/issue_template/enhancement.md new file mode 100644 index 00000000..4b319cef --- /dev/null +++ b/.github/issue_template/enhancement.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for dbt-docs +title: '' +labels: enhancement, triage +assignees: '' + +--- + +### Describe the feature +A clear and concise description of what you want to happen. + +### Describe alternatives you've considered +A clear and concise description of any alternative solutions or features you've considered. + +### Additional context +Is this feature database-specific? Which database(s) is/are relevant? Please include any other relevant context here. + +### Who will this benefit? +What kind of use case will this feature be useful for? Please be specific and provide examples, this will help us prioritize properly. + +### Are you interested in contributing this feature? +Let us know if you want to write some code, and how we can help. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..e958b66d --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,22 @@ +resolves # + + + + +### Description + + + + +### Checklist + - [ ] I have signed the [CLA](https://docs.getdbt.com/docs/contributor-license-agreements) + - [ ] I have generated docs locally, and this change appears to resolve the stated issue + - [ ] I have updated the `CHANGELOG.md` and added information about my change to the "dbt next" section. + \ No newline at end of file