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 25
25
if : ${{ steps.release.outputs.prs_created == 'true' }}
26
26
uses : actions/checkout@v4
27
27
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
29
35
30
36
- name : Update version in HoneybadgerLaravel.php
31
37
if : ${{ steps.release.outputs.prs_created == 'true' }}
34
40
- uses : stefanzweifel/git-auto-commit-action@v5
35
41
if : ${{ steps.release.outputs.prs_created == 'true' }}
36
42
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 : " honeybadger-robot@honeybadger.io"
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 : " honeybadger-robot@honeybadger.io"
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.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
14
## [ 4.1.0] ( https://github.com/honeybadger-io/honeybadger-laravel/compare/v4.0.0...v4.1.0 ) (2024-07-06)
8
15
9
16
### Features
Original file line number Diff line number Diff line change 12
12
13
13
class HoneybadgerLaravel extends Honeybadger
14
14
{
15
- const VERSION = '4.1.0 ' ;
15
+ const VERSION = '4.1.1 ' ;
16
16
17
17
const DEFAULT_EVENTS = [
18
18
Events \DatabaseQueryExecuted::class,
You can’t perform that action at this time.
0 commit comments