bug_report.yaml 2.4 KB

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