From fe5e04df0b84ab012adc46ada0bc95f61821953c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Oct 2020 06:12:43 +0000 Subject: [PATCH 1/3] Bump dokka-maven-plugin from 1.4.10 to 1.4.10.2 Bumps dokka-maven-plugin from 1.4.10 to 1.4.10.2. Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 97c0a85..5800f5b 100644 --- a/pom.xml +++ b/pom.xml @@ -40,7 +40,7 @@ 5.7.0 1.7.30 2.13.3 - 1.4.10 + 1.4.10.2 From e102cb3fd5e8b341ef3538e1f87c43b99a6f2672 Mon Sep 17 00:00:00 2001 From: Steven van Beelen Date: Thu, 22 Oct 2020 18:28:36 +0200 Subject: [PATCH 2/3] Fine tune issue templates Make some minor tweaks to the issue templates to follow the style in the other templates more closely --- .github/ISSUE_TEMPLATE.md | 31 +++++++++++++++-- .github/ISSUE_TEMPLATE/1_bug_report.md | 22 ------------- .github/ISSUE_TEMPLATE/1_feature_request.md | 24 ++++++++++++++ ...nt_request.md => 2_enhancement_request.md} | 0 .github/ISSUE_TEMPLATE/2_feature_request.md | 19 ----------- .github/ISSUE_TEMPLATE/3_bug_report.md | 33 +++++++++++++++++++ 6 files changed, 86 insertions(+), 43 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/1_bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/1_feature_request.md rename .github/ISSUE_TEMPLATE/{3_enhancement_request.md => 2_enhancement_request.md} (100%) delete mode 100644 .github/ISSUE_TEMPLATE/2_feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/3_bug_report.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index cbc46ed..d2765f5 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,3 +1,30 @@ -Please use one of the following templates: + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.md b/.github/ISSUE_TEMPLATE/1_bug_report.md deleted file mode 100644 index a74e369..0000000 --- a/.github/ISSUE_TEMPLATE/1_bug_report.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: 'Bug report' -about: 'Report a bug in Axon Framework - Extension Kotlin' -title: -labels: 'type: bug :bug:' -assignees: - ---- - -### Steps to reproduce - -* extension-kotlin version: -* Axon Framework version: -* JDK version: -* Complete executable reproducer: (e.g. GitHub Repo) -* Steps: (what exactly are you doing with the above reproducer?) - -### Expected behaviour - -### Actual behaviour - -(In case of exceptions please provide full stack trace) diff --git a/.github/ISSUE_TEMPLATE/1_feature_request.md b/.github/ISSUE_TEMPLATE/1_feature_request.md new file mode 100644 index 0000000..3ada36d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1_feature_request.md @@ -0,0 +1,24 @@ +--- +name: 'Enhancement request' +about: 'Suggest an enhancement/change to an existing feature for the Kotlin Extension' +title: +labels: 'Type: Enhancement' +--- + + + +### Enhancement Description + + + +### Current Behaviour + + + +### Wanted Behaviour + + + +### Possible Workarounds + + diff --git a/.github/ISSUE_TEMPLATE/3_enhancement_request.md b/.github/ISSUE_TEMPLATE/2_enhancement_request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/3_enhancement_request.md rename to .github/ISSUE_TEMPLATE/2_enhancement_request.md diff --git a/.github/ISSUE_TEMPLATE/2_feature_request.md b/.github/ISSUE_TEMPLATE/2_feature_request.md deleted file mode 100644 index 65c902d..0000000 --- a/.github/ISSUE_TEMPLATE/2_feature_request.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: 'Feature request' -about: 'Suggest a feature for Axon Framework - Extension Kotlin' -title: -labels: 'type: feature' - ---- - -### Scenario - -* extension-kotlin version: -* Axon Framework version: -* Description of your use case: (detailed description or executable reproducer, e.g. GitHub repo) - -### Current Behaviour - -### Wanted Behaviour - -### Possible Workarounds diff --git a/.github/ISSUE_TEMPLATE/3_bug_report.md b/.github/ISSUE_TEMPLATE/3_bug_report.md new file mode 100644 index 0000000..d95e44b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3_bug_report.md @@ -0,0 +1,33 @@ +--- +name: 'Bug report' +about: 'Report a bug for the Kotlin Extension' +title: +labels: 'Type: Bug' +--- + + + +### Basic information + +* Axon Framework version: +* JDK version: +* Kotlin Extension version: +* Complete executable reproducer if available (e.g. GitHub Repo): + +### Steps to reproduce + + + +### Expected behaviour + + + +### Actual behaviour + + From 7ecf029defe05fed8372f092a26852c4f3a53fd7 Mon Sep 17 00:00:00 2001 From: Steven van Beelen Date: Thu, 22 Oct 2020 18:37:49 +0200 Subject: [PATCH 3/3] Add milestone Add milestone configuration to auto-set this on dependency upgrade issues --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index de418ec..455ccd9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,3 +13,4 @@ updates: reviewers: - "sandjelkovic" - "smcvb" + milestone: 2 \ No newline at end of file