File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,15 @@ The 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
77## [ Unreleased]
8+
9+ ## [ 3.14.1] - 2022-12-03
10+ ### Fixed
11+ - Correct feedback form URL ([ #100 ] ( https://github.com/honeybadger-io/honeybadger-laravel/pull/100 ) )
12+
13+ ## [ 3.14.0] - 2022-05-06
814### Added
9- - Call ` shouldReport() ` of parent ([ #97 ] ( https://github.com/honeybadger-io/honeybadger-php /pull/97 ) )
10- - Add ` capture_deprecations ` config flag ([ #97 ] ( https://github.com/honeybadger-io/honeybadger-php /pull/97 ) )
15+ - Call ` shouldReport() ` of parent ([ #98 ] ( https://github.com/honeybadger-io/honeybadger-laravel /pull/98 ) )
16+ - Add ` capture_deprecations ` config flag ([ #98 ] ( https://github.com/honeybadger-io/honeybadger-laravel /pull/98 ) )
1117
1218## [ 3.13.1] - 2022-02-16
1319### Added
Original file line number Diff line number Diff line change 1212
1313class HoneybadgerLaravel extends Honeybadger
1414{
15- const VERSION = '3.13 .1 ' ;
15+ const VERSION = '3.14 .1 ' ;
1616
1717 // Don't forget to sync changes to this with the config file defaults
1818 const DEFAULT_BREADCRUMBS = [
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ private function registerBladeDirectives()
142142 });
143143
144144 Blade::directive ('honeybadgerFeedback ' , function () {
145- $ action = rtrim (Honeybadger::API_URL , '/ ' ).'/feedback ' ;
145+ $ action = rtrim (Honeybadger::API_URL , '/ ' ).'/v1/ feedback ' ;
146146
147147 return "<?php echo \$__env->make('honeybadger::feedback', ['action' => ' $ action'])->render(); ?> " ;
148148 });
You can’t perform that action at this time.
0 commit comments