File tree Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Expand file tree Collapse file tree 3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 2525 if : ${{ steps.release.outputs.prs_created == 'true' }}
2626 uses : actions/checkout@v4
2727 with :
28- ref : ${{ fromJSON(steps.release.outputs.pr).headBranchName }}
28+ ref : ${{ fromJSON(steps.release.outputs.pr).headBranchName }}
29+
30+ - name : Job Summary
31+ if : ${{ steps.release.outputs.prs_created == 'true' }}
32+ run : |
33+ echo "Release PR created with the following outputs:" >> $GITHUB_STEP_SUMMARY
34+ echo "${{ toJSON(steps.release.outputs) }}" >> $GITHUB_STEP_SUMMARY
2935
3036 - name : Update version in HoneybadgerLaravel.php
3137 if : ${{ steps.release.outputs.prs_created == 'true' }}
3440 - uses : stefanzweifel/git-auto-commit-action@v5
3541 if : ${{ steps.release.outputs.prs_created == 'true' }}
3642 with :
37- create_branch : false
38- commit_message : " chore: update version to ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} [skip ci]"
39- commit_user_name : " honeybadger-robot"
40- commit_user_email :
" [email protected] " 43+ create_branch : false
44+ commit_message : " chore: update version to ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} [skip ci]"
45+ commit_user_name : " honeybadger-robot"
46+ commit_user_email :
" [email protected] "
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 4.1.1] ( https://github.com/honeybadger-io/honeybadger-laravel/compare/v4.1.0...v4.1.1 ) (2024-08-16)
8+
9+
10+ ### Bug Fixes
11+
12+ * check for getAuthIdentifier before calling it ([ 6064a21] ( https://github.com/honeybadger-io/honeybadger-laravel/commit/6064a2133de93feb3f286346eef2cdfa262703fe ) )
13+
714## [ 4.1.0] ( https://github.com/honeybadger-io/honeybadger-laravel/compare/v4.0.0...v4.1.0 ) (2024-07-06)
815
916### Features
Original file line number Diff line number Diff line change 1212
1313class HoneybadgerLaravel extends Honeybadger
1414{
15- const VERSION = '4.1.0 ' ;
15+ const VERSION = '4.1.1 ' ;
1616
1717 const DEFAULT_EVENTS = [
1818 Events \DatabaseQueryExecuted::class,
You can’t perform that action at this time.
0 commit comments