Skip to content

Commit 3233395

Browse files
authored
Update changelog.md (#30)
* Update changelog.md * Comment out verify step
1 parent 02d8853 commit 3233395

2 files changed

Lines changed: 81 additions & 60 deletions

File tree

.github/workflows/build.yml

Lines changed: 53 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -177,60 +177,56 @@ jobs:
177177
cache-default-branch-only: true
178178

179179
# Run plugin structure verification along with IntelliJ Plugin Verifier
180-
verify:
181-
name: Verify plugin
182-
needs: [ build ]
183-
runs-on: ubuntu-latest
184-
steps:
185-
186-
# Free GitHub Actions Environment Disk Space
187-
- name: Maximize Build Space
188-
uses: jlumbroso/free-disk-space@main
189-
with:
190-
tool-cache: true
191-
large-packages: true
192-
android: true
193-
dotnet: true
194-
swap-storage: true
195-
docker-images: true
196-
197-
# Check out the current repository
198-
- name: Fetch Sources
199-
uses: actions/checkout@v4
200-
201-
# Set up Java environment for the next steps
202-
- name: Setup Java
203-
uses: actions/setup-java@v4
204-
with:
205-
distribution: zulu
206-
java-version: 17
207-
208-
# Setup Gradle
209-
- name: Setup Gradle
210-
uses: gradle/actions/setup-gradle@v4
211-
212-
# Change Wrapper Permissions
213-
- name: Change wrapper permissions
214-
run: chmod +x ./gradlew
215-
216-
# Cache Plugin Verifier IDEs
217-
- name: Setup Plugin Verifier IDEs Cache
218-
uses: actions/cache@v4
219-
with:
220-
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
221-
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
222-
223-
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
224-
- name: Run Plugin Verification tasks
225-
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
226-
227-
# Collect Plugin Verifier Result
228-
- name: Collect Plugin Verifier Result
229-
if: ${{ always() }}
230-
uses: actions/upload-artifact@v4
231-
with:
232-
name: pluginVerifier-result
233-
path: ${{ github.workspace }}/build/reports/pluginVerifier
180+
#verify:
181+
# name: Verify plugin
182+
# needs: [ build ]
183+
# runs-on: ubuntu-latest
184+
# steps:
185+
#
186+
# # Free GitHub Actions Environment Disk Space
187+
# - name: Maximize Build Space
188+
# uses: jlumbroso/free-disk-space@main
189+
# with:
190+
# tool-cache: true
191+
# large-packages: true
192+
#
193+
# # Check out the current repository
194+
# - name: Fetch Sources
195+
# uses: actions/checkout@v4
196+
#
197+
# # Set up Java environment for the next steps
198+
# - name: Setup Java
199+
# uses: actions/setup-java@v4
200+
# with:
201+
# distribution: zulu
202+
# java-version: 17
203+
#
204+
# # Setup Gradle
205+
# - name: Setup Gradle
206+
# uses: gradle/actions/setup-gradle@v4
207+
#
208+
# # Change Wrapper Permissions
209+
# - name: Change wrapper permissions
210+
# run: chmod +x ./gradlew
211+
#
212+
# # Cache Plugin Verifier IDEs
213+
# - name: Setup Plugin Verifier IDEs Cache
214+
# uses: actions/cache@v4
215+
# with:
216+
# path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
217+
# key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
218+
#
219+
# # Run Verify Plugin task and IntelliJ Plugin Verifier tool
220+
# - name: Run Plugin Verification tasks
221+
# run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
222+
#
223+
# # Collect Plugin Verifier Result
224+
# - name: Collect Plugin Verifier Result
225+
# if: ${{ always() }}
226+
# uses: actions/upload-artifact@v4
227+
# with:
228+
# name: pluginVerifier-result
229+
# path: ${{ github.workspace }}/build/reports/pluginVerifier
234230

235231
# Prepare a draft release for GitHub Releases page for the manual verification
236232
# If accepted and published, release workflow would be triggered
@@ -240,8 +236,9 @@ jobs:
240236
needs: [
241237
build,
242238
test,
243-
#inspectCode,
244-
verify ]
239+
inspectCode,
240+
#verify
241+
]
245242
runs-on: ubuntu-latest
246243
permissions:
247244
contents: write

CHANGELOG.md

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,33 @@
44

55
## [Unreleased]
66

7-
## [0.0.1] - 2025.04.10
7+
## [0.0.1] - 2025.06.04
88

9-
### Added
9+
### What's Changed
10+
* Add MIT license by @mohamead in [PR #1](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/1)
11+
* Remove sortBy by @mohamead in [PR #2](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/2)
12+
* Add github action by @mohamead in [PR #5](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/5)
13+
* Fix table cell selection by @mohamead in [PR #12](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/12)
14+
* Bump org.jsoup:jsoup from 1.18.1 to 1.20.1 by @dependabot in [PR #10](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/10)
15+
* Bump org.jetbrains.qodana from 2025.1.0 to 2025.1.1 by @dependabot in [PR #9](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/9)
16+
* Change step to free disk space by @mohamead in [PR #17](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/17)
17+
* Bump io.kotest:kotest-assertions-core-jvm from 5.8.1 to 5.9.1 by @dependabot in [PR #16](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/16)
18+
* Add inspect code config by @mohamead in [PR #18](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/18)
19+
* Bump JetBrains/qodana-action from 2025.1.0 to 2025.1.1 by @dependabot in [PR #20](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/20)
20+
* Bump org.http4k:http4k-core from 5.29.0.0 to 6.10.0.0 by @dependabot in [PR #19](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/19)
21+
* Bump org.jetbrains.kotlin.jvm from 2.1.0 to 2.1.21 by @dependabot in [PR #15](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/15)
22+
* Bump io.kotest:kotest-runner-junit5-jvm from 5.8.1 to 5.9.1 by @dependabot in [PR #7](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/7)
23+
* Bump org.gradle.toolchains.foojay-resolver-convention from 0.8.0 to 1.0.0 by @dependabot in [PR #6](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/6)
24+
* Bump org.jetbrains.intellij.platform from 2.5.0 to 2.6.0 by @dependabot in [PR #8](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/8)
25+
* Handle broken url's by @mohamead in [PR #21](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/21)
26+
* Refactor search listener and settings by @mohamead in [PR #25](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/25)
27+
* Bump org.http4k:http4k-core from 6.10.0.0 to 6.11.1.0 by @dependabot in [PR #26](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/26)
28+
* Bump org.jetbrains.qodana from 2025.1.0 to 2025.1.1 by @dependabot in [PR #22](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/22)
29+
* Use ActivityTracker.getInstance().inc() to force update of ui by @mohamead in [PR #27](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/27)
30+
* Downgrade version of http4k by @mohamead in [PR #29](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/29)
1031

11-
- Initial code with functionality that matches fiskeoye
12-
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
32+
### New Contributors
33+
* @mohamead made their first contribution in [PR #1](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/1)
34+
* @dependabot made their first contribution in [PR #10](https://github.com/statens-pensjonskasse/fiskeoye-plugin/pull/10)
35+
36+
**Full Changelog**: https://github.com/statens-pensjonskasse/fiskeoye-plugin/commits/v0.0.1

0 commit comments

Comments
 (0)