Skip to content

Commit 2386cb0

Browse files
committed
Merge branch 'master' into feature/filament-v4
2 parents 13fefb2 + cf1695d commit 2386cb0

7 files changed

Lines changed: 32 additions & 9 deletions

File tree

.github/workflows/fix-php-code-style.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
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

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
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

.github/workflows/update-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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.
@@ -34,7 +34,7 @@ jobs:
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

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

resources/lang/en/input.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?php
22

33
return [
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',

resources/lang/nl/input.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
];

0 commit comments

Comments
 (0)