diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index e87504b4..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'bug' -assignees: 'nekofar' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..4b893d10 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,39 @@ +name: Bug report +description: Create a report to help us improve + +title: '[Bug]: ' +labels: + - bug +assignees: + - nekofar + +body: + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + placeholder: Describe the bug here. + + - type: textarea + attributes: + label: Steps to reproduce the behavior + description: List the steps to reproduce the behavior, including any necessary environment details. + placeholder: List the steps to reproduce here. + + - type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. + placeholder: Describe the expected behavior here. + + - type: textarea + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain the problem. + placeholder: Add any relevant screenshots here. + + - type: textarea + attributes: + label: Additional context + description: Add any other context about the problem here. + placeholder: Add any additional context here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..3ba13e0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 42bda8f0..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'enhancement' -assignees: 'nekofar' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..1b1b922a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,33 @@ +name: Feature request +description: Suggest an idea for this project + +title: '[Feature]: ' +labels: + - enhancement +assignees: + - nekofar + +body: + - type: textarea + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. Ex. I'm always frustrated when ... + placeholder: Describe the problem here. + + - type: textarea + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen. + placeholder: Describe the solution you'd like here. + + - type: textarea + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: Describe alternatives here. + + - type: textarea + attributes: + label: Additional context + description: Add any other context or screenshots about the feature request here. + placeholder: Add any additional context or screenshots here. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d523312a..24649855 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 # Validate wrapper - name: Gradle Wrapper Validation @@ -126,7 +126,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 # Remove old release drafts by using the curl request for the available releases with draft flag - name: Remove Old Release Drafts diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index e21838bb..d1430f5d 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -16,7 +16,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 with: fetch-depth: 0 @@ -47,7 +47,7 @@ jobs: # Create pull request - name: Create Pull Request - uses: peter-evans/create-pull-request@v4.2.4 + uses: peter-evans/create-pull-request@v5.0.0 with: delete-branch: true branch-suffix: short-commit-hash diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index b6448ef4..7ff99636 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -20,16 +20,16 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 # Run Qodana inspections - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2022.3.4 + uses: JetBrains/qodana-action@v2023.1.0 # Uploading a SARIF-formatted Qodana report to GitHub - name: Uploading Qodana report to GitHub if: ${{ false }} - uses: github/codeql-action/upload-sarif@v2.2.9 + uses: github/codeql-action/upload-sarif@v2.3.0 with: sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1c0978e..ae94929d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 with: ref: ${{ github.event.release.tag_name }} diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 519d53ea..336d5643 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -29,7 +29,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.2 # Setup Java 11 environment for the next steps - name: Setup Java diff --git a/CHANGELOG.md b/CHANGELOG.md index eb34c6f8..72414061 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.2.16] - 2023-04-25 + +### Bug Fixes + +- Solve some minor issues and update dependencies + ## [1.2.15] - 2023-04-01 ### Bug Fixes diff --git a/gradle.properties b/gradle.properties index c9f5e518..1b72fab8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ pluginName = IntelliJ Hardhat Plugin pluginRepositoryUrl = https://github.com/nekofar/intellij-hardhat # SemVer format -> https://semver.org -pluginVersion = 1.2.15 +pluginVersion = 1.2.16 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions.