Skip to content

Commit 2074b1b

Browse files
chore(master): release 4.1.1 (#129)
* chore(master): release 4.1.1 * chore: update version to .. [skip ci] * chore: add job summary for debugging * chore: set correct version --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: subzero10 <subzero10@users.noreply.github.com> Co-authored-by: Pangratios Cosma <pagcosma@gmail.com>
1 parent 6064a21 commit 2074b1b

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@ jobs:
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' }}
@@ -34,7 +40,7 @@ jobs:
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: "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"

CHANGELOG.md

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

src/HoneybadgerLaravel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class 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,

0 commit comments

Comments
 (0)