Skip to content

Commit e50934f

Browse files
committed
Update changelog and remove realpath from CreatesApplication trait
1 parent 7ffba14 commit e50934f

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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+
## [0.2.16] - 16 Jan 2018
8+
### Added
9+
- hashing of cache keys to prevent key length over-run issues.
10+
11+
### Updated
12+
- dependency version constraint for "pretty test printer".
13+
14+
## [0.2.17] - 10 Jan 2018
15+
###Added
16+
- caching for value() querybuilder method.
17+
18+
### Updated
19+
- tests to use Orchestral Testbench.
20+
721
## [0.2.16] - 5 Jan 2018
822
### Added
923
- `thanks` package.

tests/CreatesApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function setUp()
1010
parent::setUp();
1111

1212
$this->withFactories(__DIR__ . '/database/factories');
13-
$this->loadMigrationsFrom(realpath(__DIR__ . '/database/migrations'));
13+
$this->loadMigrationsFrom(__DIR__ . '/database/migrations');
1414
}
1515

1616
/**

0 commit comments

Comments
 (0)