File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99 steps :
1010 - name : Checkout code
11- uses : actions/checkout@v4
11+ uses : actions/checkout@v5
1212 with :
1313 ref : ${{ github.head_ref }}
1414
1515 - name : Fix PHP code style issues
16- uses : aglipanci/laravel-pint-action@2.5
16+ uses : aglipanci/laravel-pint-action@2.6
1717
1818 - name : Commit changes
19- uses : stefanzweifel/git-auto-commit-action@v5
19+ uses : stefanzweifel/git-auto-commit-action@v7
2020 with :
2121 commit_message : Fix styling
Original file line number Diff line number Diff line change 1111 name : phpstan
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v5
1515
1616 - name : Setup PHP
1717 uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 2121
2222 steps :
2323 - name : Checkout code
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v5
2525
2626 - name : Setup PHP
2727 uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 1010
1111 steps :
1212 - name : Checkout code
13- uses : actions/checkout@v4
13+ uses : actions/checkout@v5
1414 with :
1515 # Fetch entire history of repository to ensure relase date can be
1616 # extracted from commit of the given tag.
3434 compare-url-target-revision : ${{ github.event.release.target_commitish }}
3535
3636 - name : Commit updated CHANGELOG
37- uses : stefanzweifel/git-auto-commit-action@v5
37+ uses : stefanzweifel/git-auto-commit-action@v7
3838 with :
3939 branch : ${{ github.event.release.target_commitish }}
4040 commit_message : Update CHANGELOG
Original file line number Diff line number Diff line change @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## v1.7.0 - 2025-11-20
9+
10+ ### What's Changed
11+
12+ * Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by @dependabot [ bot] in https://github.com/codedor/filament-link-picker/pull/36
13+ * Bump aglipanci/laravel-pint-action from 2.5 to 2.6 by @dependabot [ bot] in https://github.com/codedor/filament-link-picker/pull/39
14+ * Bump stefanzweifel/git-auto-commit-action from 5 to 7 by @dependabot [ bot] in https://github.com/codedor/filament-link-picker/pull/41
15+ * Bump actions/checkout from 4 to 5 by @dependabot [ bot] in https://github.com/codedor/filament-link-picker/pull/40
16+ * Add Dutch translations by @jyrkidn in https://github.com/codedor/filament-link-picker/pull/35
17+
18+ ** Full Changelog** : https://github.com/codedor/filament-link-picker/compare/v1.6.0...v1.7.0
19+
820## v1.6.0 - 2025-02-28
921
1022### What's Changed
Original file line number Diff line number Diff line change 11<?php
22
33return [
4- 'select link ' => 'Selecting link ' ,
4+ 'select link ' => 'Select link ' ,
55 'selected link ' => 'Selected link ' ,
66 'selected parameters ' => 'Selected parameters ' ,
77 'selected open in new tab ' => 'Opens in a new tab ' ,
88 'edit link ' => 'Edit link ' ,
9- 'select link ' => 'Select link ' ,
109 'remove link ' => 'Remove link ' ,
1110 'route label ' => 'Route ' ,
1211 'new tab label ' => 'Open in new tab ' ,
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ return [
4+ 'select link ' => 'Link selecteren ' ,
5+ 'selected link ' => 'Geselecteerde link ' ,
6+ 'selected parameters ' => 'Geselecteerde parameters ' ,
7+ 'selected open in new tab ' => 'Opent in een nieuw tabblad ' ,
8+ 'edit link ' => 'Link bewerken ' ,
9+ 'remove link ' => 'Link verwijderen ' ,
10+ 'route label ' => 'Route ' ,
11+ 'new tab label ' => 'Open in nieuw tabblad ' ,
12+ ];
You can’t perform that action at this time.
0 commit comments