Skip to content

Commit b4cc6f9

Browse files
author
Markus Kalkbrenner
authored
remove deprecated classes for 4.0.0 (#568)
* remove obsolete Autoloader implementation * marked range query injection prevention as security fix * added all integration tests to group "integration" * removed deprecated classes. fixes #564 * remove hhvm tests on travis, use Solr 7.2.1
1 parent 295bc4e commit b4cc6f9

File tree

7 files changed

+11
-68
lines changed

7 files changed

+11
-68
lines changed

.travis.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ php:
66
- 7.2
77
- 7.1
88
- 7.0
9-
# hhvm removed as it is not fully compatible with php7
10-
# - hhvm
119
- nightly
1210

1311
env:
1412
- SYMFONY_VERSION=2.8.* SOLR_VERSION=6.6.2
1513
- SYMFONY_VERSION=3.0.* SOLR_VERSION=6.6.2
1614
- SYMFONY_VERSION=4.0.* SOLR_VERSION=6.6.2
17-
- SYMFONY_VERSION=4.0.* SOLR_VERSION=7.2.0
15+
- SYMFONY_VERSION=4.0.* SOLR_VERSION=7.2.1
1816

1917
cache:
2018
directories:
@@ -41,11 +39,7 @@ matrix:
4139
- php: 7.0
4240
env: SYMFONY_VERSION=4.0.* SOLR_VERSION=6.6.2
4341
- php: 7.0
44-
env: SYMFONY_VERSION=4.0.* SOLR_VERSION=7.2.0
45-
- php: hhvm
46-
env: SYMFONY_VERSION=4.0.* SOLR_VERSION=6.6.2
47-
- php: hhvm
48-
env: SYMFONY_VERSION=4.0.* SOLR_VERSION=7.2.0
42+
env: SYMFONY_VERSION=4.0.* SOLR_VERSION=7.2.1
4943
allow_failures:
5044
- php: nightly
5145

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2929
- Phar support
3030
- Exclude test suite from distribution
3131
- Dropped support for Solr versions before 6
32+
- Obsolete Autoloader.php
33+
- Deprecated Solarium\Core\Plugin\Plugin in favor of Solarium\Core\Plugin\AbstractPlugin
34+
- Deprecated Solarium\Core\Query\Query in favor of Solarium\Core\Query\AbstractQuery
35+
- Deprecated Solarium\Core\Query\RequestBuilder in favor of Solarium\Core\Query\AbstractRequestBuilder
36+
- Deprecated Solarium\Core\Query\ResponseParser in favor of Solarium\Core\Query\AbstractResponseParser
37+
- Deprecated Solarium\QueryType\Analysis\Query\Query in favor of Solarium\QueryType\Analysis\Query\AbstractQuery
38+
39+
### Security
40+
- Prevented query injection inside range queries
3241

3342
### Security
3443
- Prevented query injection inside range queries

src/Core/Plugin/Plugin.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Core/Query/Query.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Core/Query/RequestBuilder.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Core/Query/ResponseParser.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/QueryType/Analysis/Query/Query.php

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)