diff --git a/.github/ISSUE_TEMPLATE/01_BUG_REPORT.md b/.github/ISSUE_TEMPLATE/01_BUG_REPORT.md new file mode 100644 index 00000000..9207a18e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01_BUG_REPORT.md @@ -0,0 +1,42 @@ +--- +name: Bug Report +about: Report a bug or unexpected behavior in the YDB Rust SDK +title: "bug: " +labels: "bug" +assignees: "" + +--- + +# Bug Report + +**Describe the bug** + + + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to: + + + +2. Run code: + + + +3. See error: + + + +**Expected behavior:** + + + +**Environment (please complete the following information):** + - OS: + - Rust version: + - SDK version: + - YDB Server version (if known): + +**Additional context** + + diff --git a/.github/ISSUE_TEMPLATE/02_FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/02_FEATURE_REQUEST.md new file mode 100644 index 00000000..5b1fbd1b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02_FEATURE_REQUEST.md @@ -0,0 +1,40 @@ +--- +name: Feature Request +about: Suggest an idea or feature for the YDB Rust SDK +title: "feat: " +labels: "enhancement" +assignees: "" + +--- +# Feature Request + +**Describe the Feature Request** + + + +**Describe Preferred Solution** + + + +**Describe Alternatives** + + + +**Related Code** + + + +**Additional Context** + + + +**If the feature request is approved, would you be willing to submit a PR?** + +- [ ] Yes +- [ ] No + +_(Help can be provided if you need assistance submitting a PR)_ + +**Potential Impact** + + diff --git a/.github/ISSUE_TEMPLATE/03_CODEBASE_IMPROVEMENT.md b/.github/ISSUE_TEMPLATE/03_CODEBASE_IMPROVEMENT.md new file mode 100644 index 00000000..8b4f8e34 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03_CODEBASE_IMPROVEMENT.md @@ -0,0 +1,28 @@ +--- +name: Codebase Improvement +about: Suggest improvements to code quality, architecture, or documentation +title: "dev: " +labels: "improvement" +assignees: "" + +--- + +**Impact Assessment** + +How would this change affect: +- [ ] Performance +- [ ] Maintainability +- [ ] Backward compatibility +- [ ] User experience + +**Area of Improvement** + + + +**Current Situation** + + + +**Suggested Improvement** + + diff --git a/Cargo.lock b/Cargo.lock index dff71e7b..476f4614 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2919,7 +2919,7 @@ dependencies = [ [[package]] name = "ydb" -version = "0.9.4" +version = "0.9.5" dependencies = [ "async-trait", "async_once",