From 8bf15a6655e59d934efcc83a1a453bc2aadd3683 Mon Sep 17 00:00:00 2001 From: akshay kumar Date: Thu, 25 Jul 2019 18:55:10 +0530 Subject: [PATCH 1/7] Update branch alias --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6fb4f22..a8f3bfb 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,10 @@ "psr-4": { "Webkul\\UVDesk\\ExtensionFrameworkBundle\\": "" } }, "extra": { - "uvdesk-package-extension": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\Package\\Composer" + "uvdesk-package-extension": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\Package\\Composer", + "branch-alias": { + "dev-master": "1.0.x-dev" + } }, "minimum-stability": "dev" } From 39e07b5ae08e8f03ec8d9ab830bb3eec693d2a08 Mon Sep 17 00:00:00 2001 From: princewebkul Date: Mon, 11 Nov 2019 15:26:14 +0530 Subject: [PATCH 2/7] template file --- .github/ISSUE_TEPLATES/Bug_report.md | 17 +++++++++++++++++ .github/ISSUE_TEPLATES/Feature_request.md | 12 ++++++++++++ .github/ISSUE_TEPLATES/Support_question.md | 13 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 11 +++++++++++ .github/SECURITY.md | 8 ++++++++ 5 files changed, 61 insertions(+) create mode 100644 .github/ISSUE_TEPLATES/Bug_report.md create mode 100644 .github/ISSUE_TEPLATES/Feature_request.md create mode 100644 .github/ISSUE_TEPLATES/Support_question.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/SECURITY.md diff --git a/.github/ISSUE_TEPLATES/Bug_report.md b/.github/ISSUE_TEPLATES/Bug_report.md new file mode 100644 index 0000000..1b2b8c7 --- /dev/null +++ b/.github/ISSUE_TEPLATES/Bug_report.md @@ -0,0 +1,17 @@ +--- +name: 🐛 Bug Report +about: Report errors and problems + +--- + +**Description** + + +**How to reproduce** + + +**Possible Solution** + + +**Additional context** + \ No newline at end of file diff --git a/.github/ISSUE_TEPLATES/Feature_request.md b/.github/ISSUE_TEPLATES/Feature_request.md new file mode 100644 index 0000000..08f0643 --- /dev/null +++ b/.github/ISSUE_TEPLATES/Feature_request.md @@ -0,0 +1,12 @@ +--- +name: 🚀 Feature Request +about: RFC and ideas for new features and improvements + +--- + +**Description** + + +**Example** + \ No newline at end of file diff --git a/.github/ISSUE_TEPLATES/Support_question.md b/.github/ISSUE_TEPLATES/Support_question.md new file mode 100644 index 0000000..47fc65b --- /dev/null +++ b/.github/ISSUE_TEPLATES/Support_question.md @@ -0,0 +1,13 @@ +--- +name: ⛔ Support Question +about: Visit https://support.uvdesk.com/ to learn more about how the uvdesk team can assist you + +--- + +We use GitHub issues only to discuss about uvdesk bugs and new features. For customizations and extended support: + +- Contact us at support@uvdesk.com +- Visit official support website (https://support.uvdesk.com/en/) +- Visit our community forums (https://forums.uvdesk.com) + +Thanks! \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..beacbeb --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ + + +### 1. Why is this change necessary? + + +### 2. What does this change do, exactly? + + +### 3. Please link to the relevant issues (if any). \ No newline at end of file diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..794b4fb --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,8 @@ +Security Policy +=============== + +⚠ PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW. + +If you have found a security issue in Uvdesk, please send the details to support@uvdesk.com and don't disclose it publicly until we can provide a fix for it. + +Thanks! \ No newline at end of file From cf941e58d9d1cc2534979a94102a473e133babc7 Mon Sep 17 00:00:00 2001 From: princewebkul Date: Mon, 11 Nov 2019 15:35:18 +0530 Subject: [PATCH 3/7] new updated --- composer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4e503f9..720dcad 100644 --- a/composer.json +++ b/composer.json @@ -18,10 +18,7 @@ "psr-4": { "Webkul\\UVDesk\\ExtensionFrameworkBundle\\": "" } }, "extra": { - "uvdesk-package-extension": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\Package\\Composer", - "branch-alias": { - "dev-master": "1.0.x-dev" - } + "uvdesk-package-extension": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\Package\\Composer" }, "minimum-stability": "dev" } From 678346bf7ef69e2cb903f4590f25bc7b0ba3697e Mon Sep 17 00:00:00 2001 From: akshay kumar Date: Thu, 14 Nov 2019 16:55:27 +0530 Subject: [PATCH 4/7] Misc. updates - Define required roles for apps navigation item --- UIComponents/Dashboard/Navigation/Apps.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UIComponents/Dashboard/Navigation/Apps.php b/UIComponents/Dashboard/Navigation/Apps.php index 3aab220..bb511a6 100644 --- a/UIComponents/Dashboard/Navigation/Apps.php +++ b/UIComponents/Dashboard/Navigation/Apps.php @@ -27,6 +27,11 @@ public static function getRouteName() : string return 'uvdesk_extensions_applications_dashboard'; } + public static function getRoles() : array + { + return []; + } + public function getChildrenRoutes() : array { return []; From e898ef8b60f940ad634e625783e2f7e7a7d97ab8 Mon Sep 17 00:00:00 2001 From: akshay kumar Date: Fri, 15 Nov 2019 11:33:24 +0530 Subject: [PATCH 5/7] Update CHANGELOG-1.0.md --- CHANGELOG-1.0.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-1.0.md b/CHANGELOG-1.0.md index c33f6f3..76c4aaf 100644 --- a/CHANGELOG-1.0.md +++ b/CHANGELOG-1.0.md @@ -3,6 +3,10 @@ CHANGELOG for 1.0.x This changelog references any relevant changes introduced in 1.0 minor versions. +* 1.0.2 (2019-11-15) + * **Misc. Updates:** + * Included Github issue templates + * 1.0.1 (2019-10-22) * **Misc. Updates:** * Updated README.md with link to the official gitter chat for uvdesk/extension-framework From 2d1b619f9e2572d8a955319ee2ef72b755734295 Mon Sep 17 00:00:00 2001 From: akshay kumar Date: Fri, 15 Nov 2019 11:51:14 +0530 Subject: [PATCH 6/7] Update composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 720dcad..f2857aa 100644 --- a/composer.json +++ b/composer.json @@ -10,9 +10,9 @@ } ], "require": { - "php": "^7.1.3", + "php": "^7.2", "uvdesk/composer-plugin": "^1.0", - "uvdesk/core-framework": "^1.0" + "uvdesk/core-framework": "^1.0.3" }, "autoload": { "psr-4": { "Webkul\\UVDesk\\ExtensionFrameworkBundle\\": "" } From dc91f79cd5bc52e4e3c19ee5f73866ae543f31a0 Mon Sep 17 00:00:00 2001 From: akshay kumar Date: Fri, 15 Nov 2019 11:53:48 +0530 Subject: [PATCH 7/7] Update CHANGELOG-1.0.md --- CHANGELOG-1.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG-1.0.md b/CHANGELOG-1.0.md index 76c4aaf..cfac670 100644 --- a/CHANGELOG-1.0.md +++ b/CHANGELOG-1.0.md @@ -6,6 +6,7 @@ This changelog references any relevant changes introduced in 1.0 minor versions. * 1.0.2 (2019-11-15) * **Misc. Updates:** * Included Github issue templates + * Updated composer dependencies & set minimum required php version to 7.2 * 1.0.1 (2019-10-22) * **Misc. Updates:**