02-bug_report.yaml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. name: 🐛 Bug Report
  3. type: Bug
  4. description: Report a reproducible bug in the current release of NetBox
  5. labels: ["netbox", "type: bug", "status: needs triage"]
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: >
  10. **NOTE:** This form is only for reporting _reproducible bugs_ in a current NetBox
  11. release. If you're having trouble with installation or just looking for assistance
  12. using NetBox, please visit our
  13. [discussion forum](https://github.com/netbox-community/netbox/discussions) instead.
  14. - type: dropdown
  15. attributes:
  16. label: NetBox Edition
  17. description: >
  18. Users of [NetBox Cloud](https://netboxlabs.com/netbox-cloud/) or
  19. [NetBox Enterprise](https://netboxlabs.com/netbox-enterprise/), please contact the
  20. [NetBox Labs](https://netboxlabs.com/) support team for assistance to ensure your
  21. request receives immediate attention.
  22. options:
  23. - NetBox Community
  24. validations:
  25. required: true
  26. - type: input
  27. attributes:
  28. label: NetBox Version
  29. description: What version of NetBox are you currently running?
  30. validations:
  31. required: true
  32. - type: dropdown
  33. attributes:
  34. label: Python Version
  35. description: What version of Python are you currently running?
  36. options:
  37. - "3.12"
  38. - "3.13"
  39. - "3.14"
  40. validations:
  41. required: true
  42. - type: textarea
  43. attributes:
  44. label: Steps to Reproduce
  45. description: >
  46. Describe in detail the exact steps that someone else can take to
  47. reproduce this bug using the current stable release of NetBox. Begin with the
  48. creation of any necessary database objects and call out every operation being
  49. performed explicitly. If reporting a bug in the REST API, be sure to reconstruct
  50. the raw HTTP request(s) being made: Don't rely on a client library such as
  51. pynetbox. Additionally, **do not rely on the demo instance** for reproducing
  52. suspected bugs, as its data is prone to modification or deletion at any time.
  53. placeholder: |
  54. 1. Click on "create widget"
  55. 2. Set foo to 12 and bar to G
  56. 3. Click the "create" button
  57. validations:
  58. required: true
  59. - type: textarea
  60. attributes:
  61. label: Expected Behavior
  62. description: What did you expect to happen?
  63. placeholder: A new widget should have been created with the specified attributes
  64. validations:
  65. required: true
  66. - type: textarea
  67. attributes:
  68. label: Observed Behavior
  69. description: What happened instead?
  70. placeholder: A TypeError exception was raised
  71. validations:
  72. required: true