-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.xml
1322 lines (1282 loc) · 48.8 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<package version="2.0"
xmlns="http://pear.php.net/dtd/package-2.0"
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>solr</name>
<channel>pecl.php.net</channel>
<summary>The Apache Solr PHP extension is an extremely fast,
light-weight, feature-rich library that allows PHP applications to
communicate easily and efficiently with Apache Solr server instances
using an object-oriented API.
</summary>
<description><![CDATA[
It effectively simplifies the process of interacting with Apache Solr using PHP.
The extension has features such as built-in, serializable query string builder objects which effectively simplifies the manipulation of name-value pair request parameters across repeated requests.
The response from the Solr server is also automatically parsed into native php objects whose properties can be accessed as array keys or object properties without any additional configuration on the client-side.
Its advanced HTTP client reuses the same connection across multiple requests and provides built-in support for connecting to Solr servers secured behind HTTP Authentication or HTTP proxy servers. It is also able to connect to SSL-enabled containers.
Please consult the documentation for more details on features. Included in the source code are phpdoc stubs that enable autocomplete of Solr classes and methods in IDE during development in userland.
Please consider staring the package on github, and get a free release ;)
https://github.com/php/pecl-search_engine-solr
]]>
</description>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<lead>
<name>Birgir Haraldsson</name>
<user>biggi</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-01-11</date>
<version>
<release>2.7.0</release>
<api>2.7.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<!-- Notes for the latest release -->
<notes>
<![CDATA[
Features:
- Support Highlight Query (#28)
- Support PHP 8.3
- Dropped Support for PHP 7.3 and below
API Changes:
- Added SolrQuery SolrQuery::setHighlightQuery(string $q)
- Added string SolrQuery::getHighlightQuery()
Bug Fixes:
- Fix parsed parameter types (#37)
- Fix compile error: libcurl on linux multi-arch support (#46)
- Fix SegFault in SolrClient::optimize() (debug mode)
- Fix Missing Windows DLLs (#51) / available on github releases now
- Fix curl checks for PHP 7.4+, use PKG_CONFIG (remicollet)
Internals:
- ci: windows tests (#51)
- parse_int macros
]]>
</notes>
<!-- Contents of the Source -->
<contents>
<dir name="/">
<file role="doc" name="CREDITS" />
<file role="doc" name="README.CONTRIBUTORS" />
<file role="doc" name="LICENSE" />
<file role="doc" name="README.ABOUT_SOLR_EXTENSION" />
<file role="src" name="README.INSTALLATION" />
<file role="doc" name="README.SUBMITTING_CONTRIBUTIONS" />
<file role="doc" name="README.MEMORY_ALLOCATION" />
<file role="doc" name="TODO" />
<file role="doc" name="docs/documentation.php" />
<dir name="examples">
<file role="doc" name="bootstrap.php" />
<file role="doc" name="facet_001.php" />
<file role="doc" name="facet_002.php" />
<file role="doc" name="solrclient_001_adddocument_01.php" />
<file role="doc" name="solrclient_002_adddocument_02.php" />
<file role="doc"
name="solrclient_002_adddocument_03_child_docs.php" />
<file role="doc" name="solrclient_003_adddocuments_01.php" />
<file role="doc" name="solrclient_004_adddocuments_02.php" />
<file role="doc" name="solrclient_005_optimize.php" />
<file role="doc" name="solrclient_006_commit.php" />
<file role="doc" name="solrclient_007_query.php" />
<file role="doc" name="solrclient_008_query_lucene.php" />
<file role="doc" name="solrclient_009_query_parsemode.php" />
<file role="doc" name="solrdocument_001.php" />
<file role="doc" name="solrdocument_002.php" />
<file role="doc" name="solrdocument_003.php" />
<file role="doc" name="solrdocument_004.php" />
<file role="doc" name="solrobject_001.php" />
<file role="doc" name="solrobject_002.php" />
<file role="doc" name="solrobject_003.php" />
<file role="doc" name="solrobject_004.php" />
<file role="doc" name="solrobject_005.php" />
<file role="doc" name="solrquery_001.php" />
<file role="doc" name="solrquery_002_facet.php" />
<file role="doc" name="solrquery_003_date_facet.php" />
<file role="doc" name="solrquery_004_highlight.php" />
<file role="doc" name="solrquery_005_stats.php" />
<file role="doc" name="solrquery_006_mlt.php" />
<file role="doc" name="solrquery_007_terms.php" />
<file role="doc" name="solrutils_001_digestxmlresponse.php" />
<file role="doc" name="solrutils_002_escapequerychars.php" />
<file role="doc" name="terms_001.php" />
<file role="doc" name="terms_002.php" />
<file role="doc" name="terms_003.php" />
<file role="doc" name="test.config.php" />
<file role="doc" name="solrdismaxquery_001.php" />
<file role="doc" name="solrclient_010_getbyid.php" />
<file role="doc" name="solrclient_011_getbyids.php" />
<file role="doc" name="solrclient_012_system.php" />
<file role="doc" name="solrquery_008_facetquery.php" />
<file role="doc" name="solrquery_009_grouping.php" />
<file role="doc" name="solrquery_010_collapse.php" />
<file role="doc" name="solrquery_011_expand.php" />
<file role="doc" name="update_stream_file.php" />
<file role="doc" name="update_stream_payload.php" />
<file role="doc"
name="solrinputdocument_update_partial.php" />
</dir>
<dir name="tests">
<file role="test" name="skip.if.server_not_configured.inc" />
<file role="test" name="test.config.inc" />
<file role="test" name="bootstrap.inc" />
<file role="test" name="000.solr_int_arg.phpt" />
<file role="test" name="000.solr_int_arg_strict.phpt" />
<file role="test" name="000.solrclient_ping.phpt" />
<file role="test" name="000.solr_server_compat.phpt" />
<file role="test"
name="001.solrclient_addDocument_partial.phpt" />
<file role="test" name="001.solrclient_addDocument.phpt" />
<file role="test" name="002.solrclient_addDocuments.phpt" />
<file role="test"
name="003.solrclient_addDocument_no_overwrite.phpt" />
<file role="test"
name="003.solrclient_addDocuments_commitwithin.phpt" />
<file role="test" name="003.solrclient_options.phpt" />
<file role="test" name="004.solrclient_query_response.phpt" />
<file role="test" name="004.solrclient_query_terms.phpt" />
<file role="test" name="005.solrclient_query_error.phpt" />
<file role="test" name="006.solrclient_system.phpt" />
<file role="test" name="007.solrclient_deleteById.phpt" />
<file role="test" name="007.solrclient_deleteByIds.phpt" />
<file role="test" name="008.solrclient_commit.phpt" />
<file role="test" name="008.solrclient_rollback.phpt" />
<file role="test" name="009.solrclient_optimize.phpt" />
<file role="test" name="010.solrclient_getOptions.phpt" />
<file role="test" name="011.solrclient_phps_response.phpt" />
<file role="test" name="012.solrclient_getById.phpt" />
<file role="test" name="013.solrclient_getByIds.phpt" />
<file role="test"
name="014.solrclient_addDocument_nested_document.phpt" />
<file role="test"
name="015.solrclient_addDocuments_nested_document.phpt" />
<file role="test" name="016.solrclient_request.phpt" />
<file role="test"
name="016.solrclient_sendUpdateStream_bin.phpt" />
<file role="test"
name="016.solrclient_sendUpdateStream_file.phpt" />
<file role="test"
name="017.solrclient_deletebyqueries.phpt" />
<file role="test" name="017.solrclient_deletebyquery.phpt" />
<file role="test" name="017.solrclient_threads.phpt" />
<file role="test" name="018.solrclient_setservlet.phpt" />
<file role="test" name="019.solrclient_clone.phpt" />
<file role="test" name="019.solrclient_getdebug.phpt" />
<file role="test" name="019.solrclient_serialize.phpt" />
<file role="test"
name="020.solrdocument_adding_fields.phpt" />
<file role="test" name="020.solrdocument_update_field.phpt" />
<file role="test" name="021.solrdocument_iterator.phpt" />
<file role="test"
name="022.solrdocument_getInputDocument.phpt" />
<file role="test"
name="023.solrdocument_merge_no_overwrite.phpt" />
<file role="test" name="023.solrdocument_merge.phpt" />
<file role="test" name="024.solrdocument_child_fetch.phpt" />
<file role="test"
name="025.solrdocument_haschilddocuments.phpt" />
<file role="test"
name="026.solrdocument_getchilddocscount.phpt" />
<file role="test"
name="027.solrdocument_getinputdocument_children.phpt" />
<file role="test" name="028.solrdocument_clone.phpt" />
<file role="test" name="029.solrdocument_serialize.phpt" />
<file role="test" name="029.solrdocument_serialize_php81.phpt" />
<file role="test" name="030.solrdocument_magic.phpt" />
<file role="test" name="031.solrdocument_clear.phpt" />
<file role="test" name="032.solrdocument_fieldexists.phpt" />
<file role="test" name="033.solrdocument_sort.phpt" />
<file role="test" name="034.solrdocument_deletefield.phpt" />
<file role="test"
name="035.solrdocument_getfieldnames.phpt" />
<file role="test" name="036.solrdocument_array_access.phpt" />
<file role="test" name="037.solrdocument_getfield.phpt" />
<file role="test" name="040.solrobject_xmlresponse.phpt" />
<file role="test"
name="041.solrobject_illegal_operation.phpt" />
<file role="test" name="042.solrobject_magic_property.phpt" />
<file role="test"
name="043.solrobject_magic_properties.phpt" />
<file role="test"
name="044.solrobject_dimension_access_properties.phpt" />
<file role="test" name="045.solrobject_array_access.phpt" />
<file role="test"
name="046.solrobject_getpropertynames.phpt" />
<file role="test" name="047.solrobject_offsetExists.phpt" />
<file role="test"
name="050.solrinputdocument_addchilddocument_01.phpt" />
<file role="test"
name="050.solrinputdocument_addchilddocument_02_error.phpt" />
<file role="test"
name="051.solrinputdocument_getchilddocuments.phpt" />
<file role="test"
name="052.solrinputdocument_haschilddocuments.phpt" />
<file role="test"
name="053.solrinputdocument_getchilddocumentscount.phpt" />
<file role="test"
name="054.solrinputdocument_addchilddocuments.phpt" />
<file role="test"
name="055.solrinputdocument_serialization.phpt" />
<file role="test" name="056.solrinputdocument_toArray.phpt" />
<file role="test" name="057.solrinputdocument_clone.phpt" />
<file role="test"
name="058.solrinputdocument_deletefield.phpt" />
<file role="test" name="059.solrinputdocument_clear.phpt" />
<file role="test"
name="059.solrinputdocument_fieldexists.phpt" />
<file role="test"
name="059.solrinputdocument_getboost.phpt" />
<file role="test"
name="059.solrinputdocument_getfieldcount.phpt" />
<file role="test"
name="059.solrinputdocument_getfieldnames.phpt" />
<file role="test"
name="059.solrinputdocument_getfield.phpt" />
<file role="test" name="059.solrinputdocument_merge.phpt" />
<file role="test"
name="059.solrinputdocument_set_getfieldboost.phpt" />
<file role="test"
name="059.solrinputdocument_setversion.phpt" />
<file role="test" name="059.solrinputdocument_sort.phpt" />
<file role="test"
name="060.solrquery_comon_query_params.phpt" />
<file role="test"
name="061.solrquery_simpleFacetParameters.phpt" />
<file role="test"
name="062.solrquery_date_facet_parameters.phpt" />
<file role="test"
name="063.solrquery_HighlightingParameters.phpt" />
<file role="test" name="064.solrquery_StatsComponent.phpt" />
<file role="test" name="065.solrquery_MoreLikeThis.phpt" />
<file role="test" name="066.solrquery_TermsComponent.phpt" />
<file role="test" name="067.solrquery__construct.phpt" />
<file role="test"
name="068.solrquery_parameters_error.phpt" />
<file role="test" name="069.solrquery_GroupParameters.phpt" />
<file role="test" name="070.solrquery_collapse.phpt" />
<file role="test"
name="071.solrquery_collapse_exception.phpt" />
<file role="test" name="072.solrquery_expand.phpt" />
<file role="test"
name="080.solrutils_escapequerychars.phpt" />
<file role="test"
name="081.solrutils_digest_json_response.phpt" />
<file role="test" name="082.solrutils_getsolrversion.phpt" />
<file role="test" name="083.solrutils_getsolrstats.phpt" />
<file role="test" name="084.solrutils_queryphrase.phpt" />
<file role="test" name="090.solrserverexception_xml.phpt" />
<file role="test" name="091.solrserverexception_json.phpt" />
<file role="test" name="092.solrserverexception_php.phpt" />
<file role="test" name="100.solrresponse_json.phpt" />
<file role="test" name="101.solrresponse_parseMode.phpt" />
<file role="test" name="102.solrresponse_phps.phpt" />
<file role="test"
name="103.solrresponse_get_array_response.phpt" />
<file role="test"
name="104.solrresponse_get_response_maxscore.phpt" />
<file role="test"
name="105.solrresponse_child_doc_response.phpt" />
<file role="test"
name="106.solrresponse_child_doc_response_solrdoc.phpt" />
<file role="test"
name="107.solrresponse_getrawresponseheaders.phpt" />
<file role="test"
name="108.solrresponse_getdigestedresponse.phpt" />
<file role="test"
name="109.solrresponse_gethttpstatus.phpt" />
<file role="test"
name="109.solrresponse_getrequesturl.phpt" />
<file role="test" name="109.solrresponse_success.phpt" />
<file role="test" name="110.solrdismaxquery.phpt" />
<file role="test"
name="111.solrdismaxquery_boostquery.phpt" />
<file role="test"
name="112.solrdismaxquery_query_parser.phpt" />
<file role="test"
name="113.solrdismaxquery_bigramfields.phpt" />
<file role="test"
name="114.solrdismaxquery_trigramfields.phpt" />
<file role="test"
name="115.solrdismaxquery_userfields.phpt" />
<file role="test"
name="116.solrdismaxquery_boostfunction.phpt" />
<file role="test"
name="130.parameters_simple_list_separator.phpt" />
<file role="test" name="150.solrcollapsefunction.phpt" />
<file role="test"
name="151.solrcollapsefunction_illegal_operations.phpt" />
<file role="test"
name="160.solr_update_document_block.phpt" />
<file role="test"
name="180.solrdocumentfield_construct.phpt" />
<file role="test"
name="181.solrdocumentfield_write_property.phpt" />
<file role="test"
name="182.solrdocumentfield_unset_property.phpt" />
<file role="test" name="190.solrparams_setparam.phpt" />
<file role="test" name="191.solrparams_addparam.phpt" />
<file role="test" name="192.solrparams_getparam.phpt" />
<file role="test" name="193.solrparams_getparams.phpt" />
<file role="test"
name="194.solrparams_getpreparedparams.phpt" />
<file role="test" name="195.solrparams_tostring.phpt" />
<file role="test" name="196.solrparams_serialize.phpt" />
<file role="test" name="196.solrparams_serialize_php81.phpt" />
<file role="test" name="197.solrparams_unserialize.phpt" />
<file role="test" name="198.solrparams_clone.phpt" />
<file role="test" name="200.solrextractrequest_clone.phpt" />
<file role="test"
name="201.solrextractrequest_serialize.phpt" />
<file role="test" name="202.solrdocument_new_serialize.phpt" />
<file role="test" name="203.solrquery_strict_types.phpt" />
<file role="test" name="bug_59511_error.phpt" />
<file role="test" name="bug_61836_error.phpt" />
<file role="test" name="bug_67394.phpt" />
<file role="test" name="bug_68179.phpt" />
<file role="test" name="bug_68181.phpt" />
<file role="test" name="bug_69156.phpt" />
<file role="test" name="bug_70482.phpt" />
<file role="test" name="bug_70495.phpt" />
<file role="test" name="bug_70496.phpt" />
<file role="test" name="bug_72033.phpt" />
<file role="test" name="bug_72740.phpt" />
<file role="test" name="bug_unknown.phpt" />
<dir name="files">
<file role="test" name="bug67394.json" />
<file role="test" name="bug67394.xml" />
<file role="test" name="extract_file.1.pdf" />
<file role="test" name="response_xml.1.xml" />
<file role="test" name="response_xml.2.xml" />
<file role="test" name="response_xml.3.xml" />
<file role="test" name="response_xml.4.xml" />
<file role="test" name="sample.html" />
<file role="test" name="sample_1.xlsx" />
<file role="test" name="solr-word.pdf" />
</dir> <!-- tests/files -->
<dir name="docker">
<file role="test" name="Dockerfile" />
<dir name="collections">
<file role="test" name="collection1.json" />
<file role="test" name="metal_store.json" />
</dir> <!-- tests/docker/collections -->
</dir> <!-- tests/docker -->
</dir> <!-- tests -->
<dir name="pecl-compat">
<file role="src" name="compat.h" />
<dir name="src">
<file role="src" name="misc.h" />
<file role="src" name="zend_hash.h" />
<file role="src" name="zend_string.h" />
</dir>
</dir>
<file role="src" name="config.m4" />
<file role="src" name="config.w32" />
<file role="src" name="solr.dsp" />
<dir name="src">
<dir name="php7">
<file role="src" name="php_solr.h" />
<file role="src" name="php_solr_api.h" />
<file role="src" name="php_solr_version.h" />
<file role="src" name="solr_constants.h" />
<file role="src" name="solr_macros.h" />
<file role="src" name="solr_string.h" />
<file role="src" name="solr_types.h" />
<file role="src" name="php_solr.c" />
<file role="src" name="php_solr_client.c" />
<file role="src" name="php_solr_collapse_function.c" />
<file role="src" name="php_solr_document.c" />
<file role="src" name="php_solr_exception.c" />
<file role="src" name="php_solr_extract.c" />
<file role="src" name="php_solr_input_document.c" />
<file role="src" name="php_solr_object.c" />
<file role="src" name="php_solr_params.c" />
<file role="src" name="php_solr_query.c" />
<file role="src" name="php_solr_response.c" />
<file role="src" name="php_solr_utils.c" />
<file role="src" name="solr_functions_client.c" />
<file role="src" name="solr_functions_debug.c" />
<file role="src" name="solr_functions_document.c" />
<file role="src" name="solr_functions_helpers.c" />
<file role="src" name="solr_functions_params.c" />
<file role="src" name="solr_functions_response.c" />
<file role="src" name="solr_string.c" />
<file role="src" name="php_solr_dismax_query.c" />
<file role="src" name="php_solr_dismax_query.h" />
<file role="src" name="php_solr_collapse_function.c" />
</dir>
</dir>
</dir>
</contents>
<!-- Registered dependencies -->
<dependencies>
<required>
<php>
<min>7.4.0</min>
<max>8.4.99</max>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
<extension>
<name>libxml</name>
</extension>
</required>
</dependencies>
<providesextension>solr</providesextension>
<!-- Configure options for source releases -->
<extsrcrelease>
</extsrcrelease>
<!-- Changes to the extension should be tracked here -->
<changelog>
<release>
<version>
<release>2.7.0</release>
<api>2.7.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2024-01-11</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
Features:
- Support Highlight Query (#28)
- Support PHP 8.3
- Dropped Support for PHP 7.3 and below
API Changes:
- Added SolrQuery SolrQuery::setHighlightQuery(string $q)
- Added string SolrQuery::getHighlightQuery()
Bug Fixes:
- Fix parsed parameter types (#37)
- Fix compile error: libcurl on linux multi-arch support (#46)
- Fix SegFault in SolrClient::optimize() (debug mode)
- Fix Missing Windows DLLs (#51) / available on github releases now
- Fix curl checks for PHP 7.4+, use PKG_CONFIG (remicollet)
Internals:
- ci: windows tests (#51)
- parse_int macros
]]>
</notes>
</release>
<release>
<version>
<release>2.6.0</release>
<api>2.6.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2022-11-09</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- PHP 8.1 compatible
- PHP 8.2 compatible
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.5.1</release>
<api>2.5.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2020-09-09</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- PHP 7.4 compatible
- PHP 7 windows support
- PHP 8.0.0beta3 compatible
- Bug #72740 Fixes NULL byte when using addQueryField() w/o boost
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.5.0</release>
<api>2.5.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2019-07-04</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Atomic Updates (partials)
- Simple Optimistic Concurrency
- Compatibility with PHP 7.1, 7.2, 7.3, latest 7.4
- Enable gzip encoding if server supports it
- Fix Real Time Get requests fails if it wasn't the first request
- Fix addQueryField return wrong query
- Fix Solr Extension build fail with curl 7.19+
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.4.0</release>
<api>2.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-03-30</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- PHP 7 Support [Request #70696]
- Performance Optimizations
- Enabled SolrUtils::getSolrStats()
- Fix SolrException*::getInternalInfo
- Fix SolrQueryResponse::getRequestUrl returns wrong url with terms [Bug #71591]
- Fix SolrClient::deleteByIds Segfaults with invalid ids [Bug #71853]
- Fix SolrObject::offsetExists SegFault [Bug #71852]
- Fix float formatting with decimal comma [Bug #71568]
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.3.0</release>
<api>2.3.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-11-29</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Support indexing child/nested documents [Request #70739]
- Support nested documents parsing SolrObject [Request #70953]
- Support nested documents parsing SolrDocument [Request #70974]
- Added maxScore to SolrResponse [Request #68610]
- Fixed issues on big endean processors (Remi Collet)
- Enhancements on method parameter naming (reflections)
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.2.1</release>
<api>2.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-09-27</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Fix windows build
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.2.0</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-09-26</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Support Real Time Get (Request #68647)
- Support Result Grouping (Request #68793)
- Support Field Collapsing (Request #70175)
- Support Expand Component (Request #70176)
- SolrMissingMandatoryParameterException (Request #70301)
- Fix SegFault on Solr Server 500 Response with no msg [xml RW] (Bug #69156)
- Fix SegFault on non-phpserialized 500 responses from Solr Server with PHPS RW (Bug #69156)
- Fix Failed to parse 500 error response when it lacks msg JSON/PHPS RW (Bug #70495, #70496)
- Fix compatibility tests with Solr Server 5 (Bug #70333)
- Fix Error unserializing raw response on statistics response having NaN as value (Bug #67394)
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.1.0</release>
<api>2.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-01-15</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- New Feature: SolrDisMaxQuery Builder (dismax/edismax) [Feature #67101]
- Support PHPS (PHP Serialized) Response Writer [Request #61329]
- SolrResponse::getArrayResponse [Feature #67660]
- SolrResponse::getResponse() returns SolrObject instead of array (with json response writer) [Bug #67579]
- Argument list parameter: Argument to value separator disappears [Bug #68179]
- Conflict Occurs When using SolrDisMax::addBoostQuery and setBoostQuery [Bug #68181]
- Doc Fix [Doc #67542]
- Internals: simple_list parameter type allow custom delimiter
- Internals: Allowed zero-length argument value
- Internals: Allowed zero-length argument-to-argument-value separator
- Security Fix
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.0.0</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-06-24</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Introduced SolrServerException which handles exception responses produced by Solr Server [Feature #67063]
- SolrClient::commit $maxSegments removed
- Removed php curl extension dependency for static builds [Bug #59028]
- SolrParams/SolrModifiableParams/SolrQuery throws SolrIllegalArguments Exception instead of E_ERROR [Feature #66858]
- SolrQuery::__construct throws SolrIllegalArgumentException instead of E_ERROR
- Dropped Support for phpnative Response Writer
- Fix config that always enables solr debug [Bug #60361]
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>1.1.1</release>
<api>1.1.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-06-20</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Fix Windows Build
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-06-19</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
1.1.0 Stable
- Introduced SolrServerException which handles exception responses produced by Solr Server [Feature #67063]
- SolrClient::commit $maxSegments removed
- SolrQuery::__construct throws SolrIllegalArgumentException instead of E_ERROR
- Removed php curl extension dependency for static builds [Bug #59028]
From 1.1.0b
- SolrClient::system Access system servlet which fetch Solr Server System Information
- SolrClient::commit argument $maxSegments is now DEPRECATED
- SolrClient::commit Added support for expungeDeletes on
- All SolrClient methods throws SolrClientExceptions instead of E_WARNING + SolrClientException
- SolrClientExceptions' messages are more informative in case of connection errors
- Added json extension validation
- All SolrResponse, SolrQueryResponse, SolrUpdateResponse, SolrPingResponse, SolrGenericResponse, SolrDocument, and SolrInputDocument classes are now final
- All parameters functions throws SolrIllegalArgumentException instead of E_RROR
- SolrParams/SolrModifiableParams/SolrQuery throws SolrIllegalArguments Exception instead of E_ERROR [Feature #66858]
- Various Bug Fixes
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>1.1.0b</release>
<api>1.1.0b</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-03-17</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- SolrClient::system Access system servlet which fetch Solr Server System Information
- SolrClient::commit argument $maxSegments is now DEPRECATED
- SolrClient::commit Added support for expungeDeletes on
- All SolrClient methods throws SolrClientExceptions instead of E_WARNING + SolrClientException
- SolrClientExceptions' messages are more informative in case of connection errors
- Added json extension validation
- All SolrResponse, SolrQueryResponse, SolrUpdateResponse, SolrPingResponse, SolrGenericResponse, SolrDocument, and SolrInputDocument classes are now final
- All parameters functions throws SolrIllegalArgumentException instead of E_RROR
- SolrParams/SolrModifiableParams/SolrQuery throws SolrIllegalArguments Exception instead of E_ERROR (Feature #66858)
- Various Bug Fixes
]]>
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>2.0.0b</release>
<api>2.0.0b</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-02-28</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Support Solr version 4.0+
- Added support for retreiving Solr Server system information through SolrClient
SolrClient::system()
- Support for softCommit
- Suppport for expungeDeletes
- maxSegments for commit is deprecated
- Added escape character / as per Solr 4 it is reserved for REGEX
- Disabled warnings for connection errors, SolrClientException is thrown
- SolrClientException messages for connection errors are more meaningful indicating error messages and codes
- API changes for:
SolrClient::commit($maxSegments = 0, $softCommit = false, $waitSearcher = true, $expungeDeletes = false)
SolrClient::optimize($maxSegments = 1, $softCommit = false, $waitSearcher = true)
SolrClient::addDocument(SolrInputDocument &$doc, $overwrite = true, $commitWithin = 0)
SolrClient::addDocuments(array &$docs, $overwrite = true, $commitWithin = 0)
- Several Bug Fixes
Warning: PECL Solr >= 2 is not compatible with Solr Server < 4.0
]]>
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>1.0.2</release>
<api>1.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-11-29</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Several Bug Fixes by Pierrick, Felipe and Tony
- Changes to make the code compile on 5.2.3 and greater
- Changes to Tests by Pierrick
]]>
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>1.0.1</release>
<api>1.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-06-04</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Added support for json response writer in SolrClient
- Removed final bit from classes so that they can be mocked in unit tests
- Changed from beta to stable
- Included phpdoc stubs in source to enable autocomplete of Solr classes and methods in IDE during development
- Lowered libxml2 version requirement to 2.6.16
]]>
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>0.9.11</release>
<api>0.9.11</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-06-22</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Added ability to specify response writer in constructor option
- Added new method to set response writer SolrClient::setResponseWriter()
- Currently, the only supported response writers are 'xml' and 'phpnative'
- Added support for new native Solr response writer
- New response writer is available at https://issues.apache.org/jira/browse/SOLR-1967
]]>
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>0.9.10</release>
<api>0.9.10</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-05-04</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
<![CDATA[
- Increased compatibility with older systems running CentOS 4 or 5 and RHEL4 or 5
- Added ability to compile directly without having to build libcurl and libxml2 from source on older systems
- Lowered minimum supported version for libcurl to 7.15.0 (Alex Samorukov)
- Lowered minimum supported version for libxml2 to 2.6.26 (Alex Samorukov)
- Fixed PECL Bug# 17172 MoreLikeThis only parses one doc (trevor at blubolt dot com, max at blubolt dot com)
- Declared workaround macros for SSL private key constants due to support for earlier versions of libcurl (Alex Samorukov)
- Changed extension version numbers to start using hexadecimal numbers (Israel Ekpo)
- Added instructions on how to attempt to compile on windows (Israel Ekpo)
- Fixed PECL Bug# 17292 sending UTF-8 encoding in header (giguet at info dot unicaen dot fr)
]]>
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<version>
<release>0.9.9</release>
<api>0.9.9</api>
</version>
<stability>
<release>beta</release>