Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
romainneutron committed Jul 12, 2018
1 parent 5c05e5a commit bc5c141
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Blackfire Player Changelog

* Add Blackfire PHP SDK User-Agent header suffix with Player version
* Allow to set a build name
* Change "warmup" default value from "false" to "true"

* 0.8.2 (2018-07-09)

Expand Down
14 changes: 7 additions & 7 deletions Player/Tests/Extension/BlackfireExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public function stepsProvider()
false,
];

// Blackfire enabled, Warmup disabled by default
// Blackfire enabled, Warmup enabled by default

$step = (new ConfigurableStep())
->name('"Step name"')
Expand All @@ -99,11 +99,11 @@ public function stepsProvider()
yield [
$step,
new Request('GET', '/'),
true,
false,
true,
];

// Blackfire enabled, Warmup disabled by default + samples
// Blackfire enabled, Warmup enabled by default + samples

$step = (new ConfigurableStep())
->name('"Step name"')
Expand All @@ -114,11 +114,11 @@ public function stepsProvider()
yield [
$step,
new Request('POST', '/'),
true,
false,
true,
];

// Blackfire enabled, Warmup enabled (GET)
// Blackfire enabled, Warmup enabled explicitly (GET)

$step = (new ConfigurableStep())
->name('"Step name"')
Expand All @@ -133,7 +133,7 @@ public function stepsProvider()
true,
];

// Blackfire enabled, Warmup enabled (POST)
// Blackfire enabled, Warmup enabled explicitly (POST)

$step = (new ConfigurableStep())
->name('"Step name"')
Expand All @@ -148,7 +148,7 @@ public function stepsProvider()
false,
];

// Blackfire enabled, Warmup enabled + samples
// Blackfire enabled, Warmup enabled explicitly + samples

$step = (new ConfigurableStep())
->name('"Step name"')
Expand Down

0 comments on commit bc5c141

Please sign in to comment.