Skip to content

Commit 347aa2f

Browse files
committed
Merge remote branch 'origin/3.0.x' into 3.1.x
Conflicts: composer.json
2 parents 594f7dc + d430b9a commit 347aa2f

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,19 @@ php:
99
- 5.4
1010
- 5.5
1111
- 5.6
12+
- 7.0
13+
- hhvm
1214

1315
matrix:
1416
include:
15-
- php: 5.5
17+
- php: 5.6
1618
env: SYMFONY_VERSION='2.3.*'
17-
- php: 5.5
18-
env: SYMFONY_VERSION='2.5.*'
19+
- php: 5.6
20+
env: SYMFONY_VERSION='2.7.*'
21+
allow_failures:
22+
- php: hhvm
23+
fast_finish: true
24+
1925

2026
before_script:
2127
- /usr/share/elasticsearch/bin/elasticsearch -v

CHANGELOG-3.0.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ https://github.com/FriendsOfSymfony/FOSElasticaBundle/compare/v3.0.0...v3.0.1
1212
To generate a changelog summary since the last version, run
1313
`git log --no-merges --oneline v3.0.0...3.0.x`
1414

15+
* 3.0.13 (2015-xx-xx)
16+
17+
* Add PHP 7 compatibility
18+
19+
* 3.0.12 (2015-08-31)
20+
21+
* Bump allowed Elastica version to 2.2
22+
1523
* 3.0.11 (2015-08-05)
1624

1725
* Bump allowed Elastica version to 2.1

Resources/doc/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The following code will execute a search against the Elasticsearch server:
185185

186186
```php
187187
$finder = $this->container->get('fos_elastica.finder.site.article');
188-
$boolQuery = new \Elastica\Query\Bool();
188+
$boolQuery = new \Elastica\Query\BoolQuery();
189189
190190
$fieldQuery = new \Elastica\Query\Match();
191191
$fieldQuery->setFieldQuery('title', 'I am a title string');

Tests/Elastica/ClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace FOS\ElasticaBundle\Tests\Client;
44

55
use Elastica\Request;
6-
use Elastica\Transport\Null as NullTransport;
6+
use Elastica\Transport\NullTransport;
77

88
class ClientTest extends \PHPUnit_Framework_TestCase
99
{

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"symfony/console": "~2.1",
1818
"symfony/form": "~2.1",
1919
"symfony/property-access": "~2.3",
20-
"ruflin/elastica": ">=0.90.10.0, <2.2-dev",
20+
"ruflin/elastica": "~2.1,<2.3",
2121
"psr/log": "~1.0"
2222
},
2323
"require-dev":{

0 commit comments

Comments
 (0)