From ff3fb0fa3679362b61e2360e2de0fe8c16fd4d29 Mon Sep 17 00:00:00 2001 From: John Robinson Date: Mon, 23 Dec 2024 16:31:14 -0500 Subject: [PATCH] Updated CHANGELOG --- .github/ISSUE_TEMPLATE/01-bug.yml | 42 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/02-feature.yml | 34 ++++++++++++++++++ .github/ISSUE_TEMPLATE/03-question.yml | 22 ++++++++++++ .github/ISSUE_TEMPLATE/04-other.yml | 20 +++++++++++ .github/ISSUE_TEMPLATE/Bug.md | 44 ----------------------- .github/ISSUE_TEMPLATE/Feature_Request.md | 18 ---------- .github/ISSUE_TEMPLATE/Question.md | 8 ----- .github/ISSUE_TEMPLATE/config.yml | 1 + .github/SECURITY.md | 3 +- CHANGELOG.md | 7 ++++ 10 files changed, 128 insertions(+), 71 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/01-bug.yml create mode 100644 .github/ISSUE_TEMPLATE/02-feature.yml create mode 100644 .github/ISSUE_TEMPLATE/03-question.yml create mode 100644 .github/ISSUE_TEMPLATE/04-other.yml delete mode 100644 .github/ISSUE_TEMPLATE/Bug.md delete mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.md delete mode 100644 .github/ISSUE_TEMPLATE/Question.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/01-bug.yml b/.github/ISSUE_TEMPLATE/01-bug.yml new file mode 100644 index 0000000..1475614 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug.yml @@ -0,0 +1,42 @@ +name: ⚠️️ Bug report +description: Report a bug +title: "[BUG]: " +labels: ["Type: Bug"] +body: + - type: markdown + attributes: + value: | + To report a bug, complete the form below. + - type: input + attributes: + label: Project version + description: Version of this project in which the bug exists + placeholder: vX.X.X + validations: + required: true + - type: textarea + attributes: + label: Description + description: Detailed description of the bug + validations: + required: true + - type: textarea + attributes: + label: Expected behavior + description: A summary of what you expected, should this issue not have arisen + - type: textarea + attributes: + label: Possible solution + description: Possible solution/fix to this issue + - type: textarea + attributes: + label: Steps to reproduce + description: Can provide links to a live example, code snippets, screenshots, or simple steps to reproduce this bug + - type: textarea + attributes: + label: Environment + description: Details of the environment which experienced this bug + - type: textarea + attributes: + label: Additional information + description: Additional information/details \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/02-feature.yml b/.github/ISSUE_TEMPLATE/02-feature.yml new file mode 100644 index 0000000..38d92cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature.yml @@ -0,0 +1,34 @@ +name: 🛠️ Feature request +description: Request a new feature +title: "[FEATURE]: " +labels: ["Type: Feature"] +body: + - type: markdown + attributes: + value: | + To request a new feature, complete the form below. + - type: input + attributes: + label: Current project version + description: Latest release of this project to-date + placeholder: vX.X.X + validations: + required: true + - type: textarea + attributes: + label: Description + description: Description of the proposed feature + validations: + required: true + - type: textarea + attributes: + label: Scenario/use-case + description: Explain how/when the feature would be helpful + - type: textarea + attributes: + label: Possible solution + description: Possible solution to implement this feature + - type: textarea + attributes: + label: Additional information + description: Additional information/details \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/03-question.yml b/.github/ISSUE_TEMPLATE/03-question.yml new file mode 100644 index 0000000..ca44cff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03-question.yml @@ -0,0 +1,22 @@ +name: ❓ Question +description: Ask a question +title: "[QUESTION]: " +labels: ["Type: Question"] +body: + - type: markdown + attributes: + value: | + To ask a question, complete the form below. + - type: input + attributes: + label: Current project version + description: Latest release of this project to-date + placeholder: vX.X.X + validations: + required: true + - type: textarea + attributes: + label: Description + description: Description of the question + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/04-other.yml b/.github/ISSUE_TEMPLATE/04-other.yml new file mode 100644 index 0000000..2384596 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/04-other.yml @@ -0,0 +1,20 @@ +name: 📄 Other +description: All other issues +title: "[OTHER]: " +labels: ["Type: Other"] +body: + - type: markdown + attributes: + value: | + To create a new issue, complete the form below. + - type: input + attributes: + label: Project version + description: Version of this project for which this issue applies (if applicable) + placeholder: vX.X.X + - type: textarea + attributes: + label: Description + description: Issue details + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/Bug.md b/.github/ISSUE_TEMPLATE/Bug.md deleted file mode 100644 index 1c02c09..0000000 --- a/.github/ISSUE_TEMPLATE/Bug.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: 🛠️ Bug -about: Does something need fixed? ---- - -# Bug Report - -## Description - - - -## Expected behavior - - - -## Current behavior - - - -## Possible solution - - - -## Steps to reproduce - - - -1. -2. -3. - -## Environment - - - -## Additional information - - \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.md b/.github/ISSUE_TEMPLATE/Feature_Request.md deleted file mode 100644 index 2ed1408..0000000 --- a/.github/ISSUE_TEMPLATE/Feature_Request.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: 💡 Feature Request -about: Should something great be added? ---- - -# Feature Request - -## Description - - - -## Scenario / Use-case - - - -## Additional information - - \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/Question.md b/.github/ISSUE_TEMPLATE/Question.md deleted file mode 100644 index 3cba4d5..0000000 --- a/.github/ISSUE_TEMPLATE/Question.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: ❓ Question -about: Does something need clarified? ---- - -# Question - - \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/SECURITY.md b/.github/SECURITY.md index cfc88df..92b75b0 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -2,4 +2,5 @@ **PLEASE DO NOT DISCLOSE SECURITY-RELATED ISSUES PUBLICLY** -If you discover a security vulnerability, please send an email to contact@bayfrontmedia.com. All security vulnerabilities will be promptly addressed. \ No newline at end of file +If you discover a security vulnerability, please email contact@bayfrontmedia.com. +All security vulnerabilities will be promptly addressed. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 40fe1e0..560c4be 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities +## [2.0.2] - 2024.12.23 + +### Added + +- Tested up to PHP v8.4. +- Updated GitHub issue templates. + ## [2.0.1] - 2023.08.15 ### Fixed