Skip to content

Commit

Permalink
Merge branch 'main' into preset/v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AAfghahi authored May 20, 2022
2 parents 413fc2f + 68d2029 commit d2cc961
Show file tree
Hide file tree
Showing 467 changed files with 57,550 additions and 26,960 deletions.
2 changes: 0 additions & 2 deletions .coverage2.7rc

This file was deleted.

2 changes: 0 additions & 2 deletions .coverage3.4rc

This file was deleted.

2 changes: 0 additions & 2 deletions .coverage3.5rc

This file was deleted.

15 changes: 15 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Since version 2.23 (released in August 2019), git-blame has a feature
# to ignore or bypass certain commits.
#
# This file contains a list of commits that are not likely what you
# are looking for in a blame, such as mass reformatting or renaming.
# You can set this file as a default ignore file for blame by running
# the following command.
#
# $ git config blame.ignoreRevsFile .git-blame-ignore-revs

# Format of files with psf/black
998940692da07a0c2984f1963ace71731dcc11bc

# License header update(s)
d695d7d159ea94d6211199b7ff40cbc66f5a1dde
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @sfc-gh-mkeller @sfc-gh-kwagner
30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE.txt

This file was deleted.

47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Bug Report 🐞
about: Something isn't working as expected? Here is the right place to report.
labels: bug, needs triage
---

Please answer these questions before submitting your issue. Thanks!

1. What version of Python are you using?

Replace with the output of `python --version --version`

2. What operating system and processor architecture are you using?

Replace with the output of `python -c 'import platform; print(platform.platform())'`

3. What are the component versions in the environment (`pip freeze`)?

Replace with the output of `python -m pip freeze`

4. What did you do?

If possible, provide a recipe for reproducing the error.
A complete runnable program is good.

5. What did you expect to see?

What should have happened and what happened instead?

6. Can you set logging to DEBUG and collect the logs?

```
import logging
import os
for logger_name in ('snowflake.connector',):
logger = logging.getLogger(logger_name)
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setFormatter(logging.Formatter('%(asctime)s - %(threadName)s %(filename)s:%(lineno)d - %(funcName)s() - %(levelname)s - %(message)s'))
logger.addHandler(ch)
```

<!--
If you need urgent assistance reach out to support for escalated issue processing https://community.snowflake.com/s/article/How-To-Submit-a-Support-Case-in-Snowflake-Lodge
-->
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Feature Request 💡
about: Suggest a new idea for the project.
labels: feature
---

## What is the current behavior?

## What is the desired behavior?

## How would this improve `snowflake-connector-python`?

## References, Other Background
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
assignees:
- "sfc-gh-mkeller"
18 changes: 18 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Please answer these questions before submitting your pull requests. Thanks!

1. What GitHub issue is this PR addressing? Make sure that there is an accompanying issue to your PR.

Fixes #NNNN

2. Fill out the following pre-review checklist:

- [ ] I am adding a new automated test(s) to verify correctness of my new code
- [ ] I am adding new logging messages
- [ ] I am modifying authorization mechanisms
- [ ] I am adding new credentials
- [ ] I am modifying OCSP code
- [ ] I am adding a new dependency

3. Please describe how your code solves the related issue.

Please write a short description of how your code change solves the related issue.
4 changes: 4 additions & 0 deletions .github/repo_meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
point_of_contact: @snowflakedb/client
production: true
code_owners_file_present: true
jira_area: Snowpark: Application Development Ecosystem
Loading

0 comments on commit d2cc961

Please sign in to comment.