Skip to content

Commit cdd8624

Browse files
authored
Merge pull request #100 from honeybadger-io/feedback-form-url
Correct feedback form URL
2 parents 15bf126 + c934d7e commit cdd8624

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ 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

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

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 = '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 = [

src/HoneybadgerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)