Skip to content

Commit e8cd7bb

Browse files
committed
Merge branch 'release/1.0.2-alpha'
2 parents 3c295ec + 8e31a87 commit e8cd7bb

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.2-alpha] - 2020-01-19
11+
### Changed
12+
- Disabled the query grammar override for now
13+
1014
## [1.0.1-alpha] - 2020-01-17
1115
### Removed
1216
- Removed the builder expressions extensions because of bug with Laravel macros being invoked
1317

1418
## [1.0.0-alpha] - 2020-01-17
1519
- Initial release
1620

17-
[Unreleased]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.1-alpha...develop
21+
[Unreleased]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.2-alpha...develop
22+
[1.0.2-alpha]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.1-alpha...v1.0.2-alpha
1823
[1.0.1-alpha]: https://github.com/sprocketbox/laravel-toolkit/compare/v1.0.0-alpha...v1.0.1-alpha
1924
[1.0.0-alpha]: https://github.com/sprocketbox/laravel-toolkit/releases/tag/v1.0.0-alpha

src/ToolkitServiceProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ class ToolkitServiceProvider extends ServiceProvider
1919
public function register(): void
2020
{
2121
$this->registerMiddleware();
22-
$this->registerGrammarOverride();
22+
// This has been commented out for now because of the issues it's causing
23+
// I'm not sure why it's causing these issues, but I will investigate
24+
// $this->registerGrammarOverride();
2325
$this->registerBuilderExtensions();
2426
}
2527

0 commit comments

Comments
 (0)