1+ name : Bug Report
2+ description : File a bug report.
3+ title : " :lady_beetle: "
4+ labels : ["bug", "triage"]
5+ assignees : []
6+ type : bug
7+ body :
8+ - type : markdown
9+ attributes :
10+ value : |
11+ ## Environment
12+
13+ - type : input
14+ id : java-version
15+ attributes :
16+ label : Java version
17+ description : e.g., 17.0.10
18+ placeholder : 17.0.10
19+ validations :
20+ required : true
21+
22+ - type : input
23+ id : os
24+ attributes :
25+ label : OS
26+ description : e.g., Ubuntu 24.04, MacOS, Win 11
27+ placeholder : Ubuntu 24.04
28+ validations :
29+ required : true
30+
31+ - type : input
32+ id : architecture
33+ attributes :
34+ label : Architecture
35+ description : e.g., amd64, arm
36+ placeholder : amd64
37+ validations :
38+ required : true
39+
40+ - type : input
41+ id : tjsdk-version
42+ attributes :
43+ label : Tarantool Java SDK version
44+ description : e.g., 1.2.3
45+ placeholder : 1.2.3
46+ validations :
47+ required : true
48+
49+ - type : textarea
50+ id : other-deps
51+ attributes :
52+ label : Other relevant dependencies and versions
53+ description : List any other relevant dependencies and their versions.
54+ placeholder : |
55+ - testcontainers: 1.19.7
56+ - ...
57+ validations :
58+ required : false
59+
60+ - type : markdown
61+ attributes :
62+ value : |
63+ ## Describe the bug
64+
65+ - type : textarea
66+ id : bug-description
67+ attributes :
68+ label : Bug description
69+ description : A clear and concise description of what the bug is.
70+ placeholder : Describe the bug here.
71+ validations :
72+ required : true
73+
74+ - type : markdown
75+ attributes :
76+ value : |
77+ ## Steps to Reproduce
78+
79+ - type : textarea
80+ id : steps-to-reproduce
81+ attributes :
82+ label : Steps to reproduce
83+ description : Please provide a step-by-step guide to reproduce the issue.
84+ placeholder : |
85+ 1. Go to '...'
86+ 2. Run command '...'
87+ 3. See error
88+ validations :
89+ required : true
90+
91+ - type : markdown
92+ attributes :
93+ value : |
94+ ## Expected behavior
95+
96+ - type : textarea
97+ id : expected-behavior
98+ attributes :
99+ label : Expected behavior
100+ description : What did you expect to happen?
101+ placeholder : Describe the expected behavior.
102+ validations :
103+ required : true
104+
105+ - type : markdown
106+ attributes :
107+ value : |
108+ ## Actual behavior
109+
110+ - type : textarea
111+ id : actual-behavior
112+ attributes :
113+ label : Actual behavior
114+ description : What actually happened? Please include full error messages and stack traces if available.
115+ placeholder : Describe the actual behavior.
116+ validations :
117+ required : true
118+
119+ - type : markdown
120+ attributes :
121+ value : |
122+ ## Additional context
123+
124+ - type : textarea
125+ id : additional-context
126+ attributes :
127+ label : Additional context
128+ description : Add any other context about the problem here, including links to related issues, logs, screenshots, or configuration files.
129+ placeholder : Additional context
130+ validations :
131+ required : false
132+
133+ - type : markdown
134+ attributes :
135+ value : |
136+ ## Minimal reproducible example (if possible)
137+
138+ - type : textarea
139+ id : minimal-example
140+ attributes :
141+ label : Minimal reproducible example
142+ description : Please provide a minimal code sample or a link to a repository that demonstrates the issue.
143+ placeholder : |
144+ ```java
145+ // Your code here
146+ ```
147+ validations :
148+ required : false
0 commit comments