Skip to content

Commit

Permalink
chore(master): release 4.1.1 (#129)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Pangratios Cosma <[email protected]>
  • Loading branch information
3 people authored Aug 16, 2024
1 parent 6064a21 commit 2074b1b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ jobs:
if: ${{ steps.release.outputs.prs_created == 'true' }}
uses: actions/checkout@v4
with:
ref: ${{ fromJSON(steps.release.outputs.pr).headBranchName }}
ref: ${{ fromJSON(steps.release.outputs.pr).headBranchName }}

- name: Job Summary
if: ${{ steps.release.outputs.prs_created == 'true' }}
run: |
echo "Release PR created with the following outputs:" >> $GITHUB_STEP_SUMMARY
echo "${{ toJSON(steps.release.outputs) }}" >> $GITHUB_STEP_SUMMARY
- name: Update version in HoneybadgerLaravel.php
if: ${{ steps.release.outputs.prs_created == 'true' }}
Expand All @@ -34,7 +40,7 @@ jobs:
- uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ steps.release.outputs.prs_created == 'true' }}
with:
create_branch: false
commit_message: "chore: update version to ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} [skip ci]"
commit_user_name: "honeybadger-robot"
commit_user_email: "[email protected]"
create_branch: false
commit_message: "chore: update version to ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }} [skip ci]"
commit_user_name: "honeybadger-robot"
commit_user_email: "[email protected]"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.1.1](https://github.com/honeybadger-io/honeybadger-laravel/compare/v4.1.0...v4.1.1) (2024-08-16)


### Bug Fixes

* check for getAuthIdentifier before calling it ([6064a21](https://github.com/honeybadger-io/honeybadger-laravel/commit/6064a2133de93feb3f286346eef2cdfa262703fe))

## [4.1.0](https://github.com/honeybadger-io/honeybadger-laravel/compare/v4.0.0...v4.1.0) (2024-07-06)

### Features
Expand Down
2 changes: 1 addition & 1 deletion src/HoneybadgerLaravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class HoneybadgerLaravel extends Honeybadger
{
const VERSION = '4.1.0';
const VERSION = '4.1.1';

const DEFAULT_EVENTS = [
Events\DatabaseQueryExecuted::class,
Expand Down

0 comments on commit 2074b1b

Please sign in to comment.