Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9f3217d
Remove deprecated `SubscriberUtil` from the getting started docs
DanielBadura Jun 3, 2026
12de1d9
Merge pull request #320 from patchlevel/remove-subscriber-util-gettin…
DanielBadura Jun 3, 2026
86f0f06
Fix icon spacing in webprofiler menu
mttsch Jun 4, 2026
cb42194
Merge pull request #321 from mttsch/bugfix/profiler-icon-spacing
DanielBadura Jun 4, 2026
3bb3b08
Fix some test namespace issues
DanielBadura Jun 4, 2026
8021082
Merge pull request #322 from patchlevel/fix-test-namespace
DanielBadura Jun 4, 2026
68d8b6c
Prepare docs
DanielBadura Jun 10, 2026
af77735
Fix docs scripts
DanielBadura Jun 10, 2026
5618dfa
Remove old build, add new deploy
DanielBadura Jun 10, 2026
78632a8
Fix issue which persisted before
DanielBadura Jun 10, 2026
fc4ef31
Remove trailing slash
DanielBadura Jun 10, 2026
0a27bca
Merge pull request #323 from patchlevel/prepare-docs
DanielBadura Jun 12, 2026
e130917
Update shivammathur/setup-php action to v2.37.2
renovate[bot] Jun 14, 2026
8defb96
Lock file maintenance (#313)
renovate[bot] Jun 15, 2026
67251e0
Lock file maintenance
renovate[bot] Jun 21, 2026
d611e3a
Lock file maintenance
renovate[bot] Jun 23, 2026
8e86922
Update actions/checkout action to v7
renovate[bot] Jun 23, 2026
2839229
Merge pull request #326 from patchlevel/renovate/actions-checkout-7.x
DavidBadura Jun 23, 2026
c6c554f
Lock file maintenance
renovate[bot] Jun 24, 2026
28ab093
Lock file maintenance
renovate[bot] Jun 25, 2026
c47a99b
Lock file maintenance
renovate[bot] Jun 26, 2026
5d70237
Lock file maintenance
renovate[bot] Jun 27, 2026
976daae
Lock file maintenance
renovate[bot] Jun 28, 2026
30cb167
Lock file maintenance
renovate[bot] Jul 1, 2026
336d00a
Lock file maintenance
renovate[bot] Jul 2, 2026
14c7306
Lock file maintenance
renovate[bot] Jul 3, 2026
6121f40
Lock file maintenance
renovate[bot] Jul 4, 2026
d2b9e33
Lock file maintenance
renovate[bot] Jul 5, 2026
4579bc8
Lock file maintenance
renovate[bot] Jul 6, 2026
d0e4818
Lock file maintenance
renovate[bot] Jul 8, 2026
8fd229c
Lock file maintenance
renovate[bot] Jul 9, 2026
557d461
Lock file maintenance
renovate[bot] Jul 10, 2026
5998624
Lock file maintenance
renovate[bot] Jul 11, 2026
b20b712
Lock file maintenance
renovate[bot] Jul 13, 2026
e2555af
Lock file maintenance
renovate[bot] Jul 14, 2026
85f959e
Lock file maintenance
renovate[bot] Jul 15, 2026
0c0ef5b
Fix wrapped exception access when keys are not sequential
tuxes3 Jul 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/coding-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/docs-build-try.yml

This file was deleted.

93 changes: 0 additions & 93 deletions .github/workflows/docs-build.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: none
php-version: "${{ matrix.php-version }}"
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish docs

on:
push:
branches:
- "[0-9]+.[0-9]+.x"
release:
types:
- published

jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger workflow in other repo
run: |
curl -L -X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.ORGANIZATION_ADMIN_TOKEN }}" \
-H "X-GitHub-Api-Version: 2026-03-10" \
https://api.github.com/repos/patchlevel/patchlevel.dev/actions/workflows/prod-deployment.yaml/dispatches \
-d '{"ref":"main"}'
4 changes: 2 additions & 2 deletions .github/workflows/mutation-tests-diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
operating-system: "windows-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Install PHP"
uses: "shivammathur/setup-php@2.37.0"
uses: "shivammathur/setup-php@2.37.2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Release"
uses: "laminas/automatic-releases@v1"
Expand Down
2 changes: 1 addition & 1 deletion bin/docs-extract-php-code
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (file_exists($targetDir)) {
mkdir($targetDir);

$finder = new Symfony\Component\Finder\Finder();
$finder->files()->in(__DIR__ . '/../docs/pages')->name('*.md');
$finder->files()->in(__DIR__ . '/../docs')->name('*.md');

foreach ($finder as $file) {
$fileName = pathinfo($file->getBasename(), PATHINFO_FILENAME);
Expand Down
2 changes: 1 addition & 1 deletion bin/docs-inject-php-code
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (!file_exists($targetDir)) {
}

$finder = new Symfony\Component\Finder\Finder();
$finder->files()->in(__DIR__ . '/../docs/pages')->name('*.md');
$finder->files()->in(__DIR__ . '/../docs')->name('*.md');

foreach ($finder as $file) {
$fileName = pathinfo($file->getBasename(), PATHINFO_FILENAME);
Expand Down
Loading