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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
|
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.13" 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>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>omars@php.net</email>
<active>yes</active>
</lead>
<lead>
<name>Birgir Haraldsson</name>
<user>biggi</user>
<email>biggi@stefna.is</email>
<active>yes</active>
</lead>
<date>2025-04-22</date>
<time>16:07:41</time>
<version>
<release>2.8.1</release>
<api>2.8.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Fixes:
- Fix return type of SolrUtils::escapeQueryChars() (#83)
</notes>
<contents>
<dir name="/">
<file md5sum="b91f885ef710f6580c17e0bdffd884bc" name="examples/bootstrap.php" role="doc" />
<file md5sum="c08c750a98a2ae0861e92b467b51f650" name="examples/facet_001.php" role="doc" />
<file md5sum="b8c47ea0eb153cc6804d44fa74ce70e7" name="examples/facet_002.php" role="doc" />
<file md5sum="a8511d234fa73141e9f7031be43c5519" name="examples/solrclient_001_adddocument_01.php" role="doc" />
<file md5sum="54d90e770730993bf1a42d8804f76798" name="examples/solrclient_002_adddocument_02.php" role="doc" />
<file md5sum="5a7845a9305cc9e725156877024bee2a" name="examples/solrclient_002_adddocument_03_child_docs.php" role="doc" />
<file md5sum="58edebf924eee6633aa48a435a6b0d52" name="examples/solrclient_003_adddocuments_01.php" role="doc" />
<file md5sum="7c5942c501b5149df9a3fa8f966473bf" name="examples/solrclient_004_adddocuments_02.php" role="doc" />
<file md5sum="ef89a4824d96b49bd56a50e7dd743c8f" name="examples/solrclient_005_optimize.php" role="doc" />
<file md5sum="a7c29625455e6737b97522df9fdc5faf" name="examples/solrclient_006_commit.php" role="doc" />
<file md5sum="2810fdd472fbca57437cea74d267b425" name="examples/solrclient_007_query.php" role="doc" />
<file md5sum="45590e9430d408b25f1cbb03937bd87d" name="examples/solrclient_008_query_lucene.php" role="doc" />
<file md5sum="6b4566cd26df97cc8cd8a0be93ee3531" name="examples/solrclient_009_query_parsemode.php" role="doc" />
<file md5sum="8b03890994b5308d5befe6a77f64f193" name="examples/solrdocument_001.php" role="doc" />
<file md5sum="c522607352d29a61d531237829b267c8" name="examples/solrdocument_002.php" role="doc" />
<file md5sum="ae569473884a37bd780be5bcf1995837" name="examples/solrdocument_003.php" role="doc" />
<file md5sum="bb4924a82932aa61ba31f3e99df93845" name="examples/solrdocument_004.php" role="doc" />
<file md5sum="d3305c5495bd1ed87594e6c3e8a59ace" name="examples/solrobject_001.php" role="doc" />
<file md5sum="e28a419c727c0ad00691787894674682" name="examples/solrobject_002.php" role="doc" />
<file md5sum="49a60ef73833b7bc368ba5f2ed79d4ff" name="examples/solrobject_003.php" role="doc" />
<file md5sum="f9563e7f56df5752f9eaefbb188f0346" name="examples/solrobject_004.php" role="doc" />
<file md5sum="e1c02ed8cf668660dd8afc78e6c07d53" name="examples/solrobject_005.php" role="doc" />
<file md5sum="6d0282342bd47a9d9bc75d00860f8366" name="examples/solrquery_001.php" role="doc" />
<file md5sum="876a070d9ee480561293a750e6f5836d" name="examples/solrquery_002_facet.php" role="doc" />
<file md5sum="236edcc20894edd5005dc9a8bb0cbdfb" name="examples/solrquery_003_date_facet.php" role="doc" />
<file md5sum="3bc4dcdd78d072ce4b09f3d166f9b181" name="examples/solrquery_004_highlight.php" role="doc" />
<file md5sum="e7dba75a5ee1f39f8451eec533304dd8" name="examples/solrquery_005_stats.php" role="doc" />
<file md5sum="77e168bb4e4edeec6966c42a9f67d9fc" name="examples/solrquery_006_mlt.php" role="doc" />
<file md5sum="a1789eca0c20b9077e40262934699dc7" name="examples/solrquery_007_terms.php" role="doc" />
<file md5sum="73b865ad4666e5799ba75f824aff4cff" name="examples/solrutils_001_digestxmlresponse.php" role="doc" />
<file md5sum="2e5c00726d900726f3975e280070e689" name="examples/solrutils_002_escapequerychars.php" role="doc" />
<file md5sum="b5c2b650ed121eb173df80a108fa0639" name="examples/terms_001.php" role="doc" />
<file md5sum="2c28b7ceb46ffdfaa1dda4569cf18af5" name="examples/terms_002.php" role="doc" />
<file md5sum="d17817ef63c9d0b50a961f65b0fc2cb3" name="examples/terms_003.php" role="doc" />
<file md5sum="4f59aa64cbfcc2d1926e15e0b73a3746" name="examples/test.config.php" role="doc" />
<file md5sum="2f8feffb4ebac0483722bf23254ab6f6" name="examples/solrdismaxquery_001.php" role="doc" />
<file md5sum="394125eafd3b56fbab83c7e181235ccf" name="examples/solrclient_010_getbyid.php" role="doc" />
<file md5sum="e7ce6fad23f8b388cec3c4a92b20d9cc" name="examples/solrclient_011_getbyids.php" role="doc" />
<file md5sum="603c312d2cf0bf34864594ebddea43ff" name="examples/solrclient_012_system.php" role="doc" />
<file md5sum="9e4c768d3f69c8285bae4134c2bf572d" name="examples/solrquery_008_facetquery.php" role="doc" />
<file md5sum="ebce6b8aafd9ec130d05b0de905a7ef6" name="examples/solrquery_009_grouping.php" role="doc" />
<file md5sum="9aa5f54a4a808410526a6ff8a4bc6d6e" name="examples/solrquery_010_collapse.php" role="doc" />
<file md5sum="8f80fa45e3cd585ff51c6e4a004cadc5" name="examples/solrquery_011_expand.php" role="doc" />
<file md5sum="a2159af0357ca644df7ae471173964f5" name="examples/update_stream_file.php" role="doc" />
<file md5sum="ad85c77b8aa44bed3b59b2d167462250" name="examples/update_stream_payload.php" role="doc" />
<file md5sum="650c02b4e965e39253467db3ea4e5e90" name="examples/solrinputdocument_update_partial.php" role="doc" />
<file md5sum="7b9bf3805fc8b167fd7bf22552c5590f" name="tests/files/bug67394.json" role="test" />
<file md5sum="28a239fed2584d0b627e22325909f17a" name="tests/files/bug67394.xml" role="test" />
<file md5sum="8bd6509aba6eafe623392995b08c7047" name="tests/files/extract_file.1.pdf" role="test" />
<file md5sum="9fc994c5dc6d4396cea2542d15d9c983" name="tests/files/response_xml.1.xml" role="test" />
<file md5sum="bc6d4f299f0cf04de471af56a614777c" name="tests/files/response_xml.2.xml" role="test" />
<file md5sum="90d3490a8c1e104511c0418d5c094bcc" name="tests/files/response_xml.3.xml" role="test" />
<file md5sum="4c5e5ff3c8d5f28e4a2d6ac7316c34b2" name="tests/files/response_xml.4.xml" role="test" />
<file md5sum="9ef38818acd1e5bdfc0bdf615d2e1391" name="tests/files/sample.html" role="test" />
<file md5sum="9899d45799effbb042efbb13e462ab46" name="tests/files/sample_1.xlsx" role="test" />
<file md5sum="c24692f966821cd5fad86a3519fdcdd9" name="tests/files/solr-word.pdf" role="test" />
<file md5sum="829964b8719b13f90fd286aee2d0f7b8" name="tests/docker/collections/collection1.json" role="test" />
<file md5sum="1de05e2f6c062b787d251d53b6ad82a9" name="tests/docker/collections/metal_store.json" role="test" />
<file md5sum="a76bf47c5ece45b8763005ce84c12453" name="tests/docker/Dockerfile" role="test" />
<file md5sum="2daa0bd0956c200c5b783d253a000a5e" name="tests/skip.if.server_not_configured.inc" role="test" />
<file md5sum="38727c706b046fb451c309bfb50dfbe6" name="tests/test.config.inc" role="test" />
<file md5sum="e9fe2141a9d8726d132612d540a8ccb1" name="tests/bootstrap.inc" role="test" />
<file md5sum="74988324f65d0fdc8d9a17338e314542" name="tests/000.solr_int_arg.phpt" role="test" />
<file md5sum="5b9a4780181efc828891800613750649" name="tests/000.solr_int_arg_strict.phpt" role="test" />
<file md5sum="c76bf5964a48581137e646b2ef586270" name="tests/000.solrclient_ping.phpt" role="test" />
<file md5sum="fc140758fa7280cf31dae2e0584ae307" name="tests/000.solr_server_compat.phpt" role="test" />
<file md5sum="caceb1340b731fb8e5a3786685d26c65" name="tests/001.solrclient_addDocument_partial.phpt" role="test" />
<file md5sum="591c458612e30e30471d670724d78f68" name="tests/001.solrclient_addDocument.phpt" role="test" />
<file md5sum="cad5489ccf54b0e7d7cde63d45d3e6ae" name="tests/002.solrclient_addDocuments.phpt" role="test" />
<file md5sum="a4ac483a788fb49b8375a42052c2a661" name="tests/003.solrclient_addDocument_no_overwrite.phpt" role="test" />
<file md5sum="5b6c314da532e8db95cb44cb18dff69f" name="tests/003.solrclient_addDocuments_commitwithin.phpt" role="test" />
<file md5sum="f13e07f5c5496fd7d4b2496a5ced251e" name="tests/003.solrclient_options.phpt" role="test" />
<file md5sum="8df72c15b9f0ebb9e6d01c28c703dc76" name="tests/004.solrclient_query_response.phpt" role="test" />
<file md5sum="3de7b11df10aa51f995a1e0085ddacfe" name="tests/004.solrclient_query_terms.phpt" role="test" />
<file md5sum="53d681586cb4f655a3bf88474c6afbd6" name="tests/005.solrclient_query_error.phpt" role="test" />
<file md5sum="23162043e6320fcd0d28e5f0a304ebc2" name="tests/006.solrclient_system.phpt" role="test" />
<file md5sum="967cc6c7f3b2e3dc5100611e2a1220a3" name="tests/007.solrclient_deleteById.phpt" role="test" />
<file md5sum="c7ea1db9ee730729fff9977dc050c4c3" name="tests/007.solrclient_deleteByIds.phpt" role="test" />
<file md5sum="7ee2e7518388b6981f552bacd22b09db" name="tests/008.solrclient_commit.phpt" role="test" />
<file md5sum="50cb7e107533d4b59b6725b34150b643" name="tests/008.solrclient_rollback.phpt" role="test" />
<file md5sum="b917c1f11f612855b4c2a6a680cb5839" name="tests/009.solrclient_optimize.phpt" role="test" />
<file md5sum="861491408fced1f255b2bf97e004f6f4" name="tests/010.solrclient_getOptions.phpt" role="test" />
<file md5sum="7d1f27c2fccb4884eb80974e8e48389f" name="tests/011.solrclient_phps_response.phpt" role="test" />
<file md5sum="d4bbe6f48cf935b170b76e7689b43005" name="tests/012.solrclient_getById.phpt" role="test" />
<file md5sum="dbed760da8bfe208e881e1147319272c" name="tests/013.solrclient_getByIds.phpt" role="test" />
<file md5sum="4dcee56de800c82e1689c5fbdf39de54" name="tests/014.solrclient_addDocument_nested_document.phpt" role="test" />
<file md5sum="d88c4c4847dbf8c35598bec45cb23151" name="tests/015.solrclient_addDocuments_nested_document.phpt" role="test" />
<file md5sum="2445fa23cec900144cee7961a9812cdc" name="tests/016.solrclient_request.phpt" role="test" />
<file md5sum="f36a2555e3e478f084f72d332e1e0833" name="tests/016.solrclient_sendUpdateStream_bin.phpt" role="test" />
<file md5sum="5fcd9c6da49c431310cd30b789c99680" name="tests/016.solrclient_sendUpdateStream_file.phpt" role="test" />
<file md5sum="fbde99b6b8dc002c7e0e2cbc3f7d1322" name="tests/017.solrclient_deletebyqueries.phpt" role="test" />
<file md5sum="048dbd20bde6b2b340f19e65a2dbb418" name="tests/017.solrclient_deletebyquery.phpt" role="test" />
<file md5sum="c53686375e38fd44931f7cad8298f16e" name="tests/017.solrclient_threads.phpt" role="test" />
<file md5sum="22e3cf1eace42d493e99c44de812737f" name="tests/018.solrclient_setservlet.phpt" role="test" />
<file md5sum="7572e42276b970ba11c913ee1b911cc5" name="tests/019.solrclient_clone.phpt" role="test" />
<file md5sum="4e4b2ecf97216da4d96385e54e3a1cc7" name="tests/019.solrclient_getdebug.phpt" role="test" />
<file md5sum="de93d1ca6b9c67896e7ce1aa297de0f6" name="tests/019.solrclient_serialize.phpt" role="test" />
<file md5sum="a565ca0c4eb7be1ae4caf434b3124c89" name="tests/020.solrdocument_adding_fields.phpt" role="test" />
<file md5sum="aa5e50145563aaca33fdee8aef8cdcc0" name="tests/020.solrdocument_update_field.phpt" role="test" />
<file md5sum="389e6d2f29599ff1e4f86612d73313d2" name="tests/021.solrdocument_iterator.phpt" role="test" />
<file md5sum="a361582fb453f9ab88eefa7b94094fa7" name="tests/022.solrdocument_getInputDocument.phpt" role="test" />
<file md5sum="6baa73ee33ce4b3293897fb6d8a446cd" name="tests/023.solrdocument_merge_no_overwrite.phpt" role="test" />
<file md5sum="294b2d1a57c04cd3a5112f7fee415668" name="tests/023.solrdocument_merge.phpt" role="test" />
<file md5sum="b203f5fda40c81cb8b908ef8b6f082bd" name="tests/024.solrdocument_child_fetch.phpt" role="test" />
<file md5sum="f475af65dc794498f1ed6715ca2599c2" name="tests/025.solrdocument_haschilddocuments.phpt" role="test" />
<file md5sum="ccd7da23785140bbe0e03e19e2ed5261" name="tests/026.solrdocument_getchilddocscount.phpt" role="test" />
<file md5sum="05f484be9c0b5dda7efbffef573ff8bf" name="tests/027.solrdocument_getinputdocument_children.phpt" role="test" />
<file md5sum="be11dffe9f722f43c4fa4c3ef482e4b8" name="tests/028.solrdocument_clone.phpt" role="test" />
<file md5sum="9c15f13d76d1c96fcf40647df91775fd" name="tests/029.solrdocument_serialize.phpt" role="test" />
<file md5sum="0afa5518f6d088ace645d490474f1f56" name="tests/029.solrdocument_serialize_php81.phpt" role="test" />
<file md5sum="f6798b5997bdb2d59d5dd4181fe4b994" name="tests/030.solrdocument_magic.phpt" role="test" />
<file md5sum="e5327757af634e878edc167acc1a02d8" name="tests/031.solrdocument_clear.phpt" role="test" />
<file md5sum="8792314c84359d36f7da03dc6153ecdb" name="tests/032.solrdocument_fieldexists.phpt" role="test" />
<file md5sum="9dda4bb4c95297f8222fe3f652c4923f" name="tests/033.solrdocument_sort.phpt" role="test" />
<file md5sum="7ba1f3c9e9f47f3b500844f35a15025e" name="tests/034.solrdocument_deletefield.phpt" role="test" />
<file md5sum="106c14bc06f14f41c976d0fd2cf109b9" name="tests/035.solrdocument_getfieldnames.phpt" role="test" />
<file md5sum="924477cd75abda6930d444485d043963" name="tests/036.solrdocument_array_access.phpt" role="test" />
<file md5sum="16ce64c761f6004a3c3fd9c59be18ff5" name="tests/037.solrdocument_getfield.phpt" role="test" />
<file md5sum="173aa300845ba265923f1ec1a72bebc8" name="tests/040.solrobject_xmlresponse.phpt" role="test" />
<file md5sum="38e6798ecefddf05de8df30afa66eee5" name="tests/041.solrobject_illegal_operation.phpt" role="test" />
<file md5sum="77f54692a11484959ca3fa89c7453220" name="tests/042.solrobject_magic_property.phpt" role="test" />
<file md5sum="6714f9109453199016dd502dab848824" name="tests/043.solrobject_magic_properties.phpt" role="test" />
<file md5sum="ae5d9f1161764f2a99333ab933eab28b" name="tests/044.solrobject_dimension_access_properties.phpt" role="test" />
<file md5sum="5a486170c6fdb3c4f2af8b30dbc0b625" name="tests/045.solrobject_array_access.phpt" role="test" />
<file md5sum="88e7ed30eb2c2d43d9179a9908c4791b" name="tests/046.solrobject_getpropertynames.phpt" role="test" />
<file md5sum="60cca55c08b6aada375c1d88c3881ead" name="tests/047.solrobject_offsetExists.phpt" role="test" />
<file md5sum="4c6142d81ce5ab098d0e9408234f0dc0" name="tests/050.solrinputdocument_addchilddocument_01.phpt" role="test" />
<file md5sum="08c77b80f95e8ead8a252a14a02f7aab" name="tests/050.solrinputdocument_addchilddocument_02_error.phpt" role="test" />
<file md5sum="0576ceb17e882e569d5959b27055da81" name="tests/051.solrinputdocument_getchilddocuments.phpt" role="test" />
<file md5sum="40e1141bca89785f5c9ada6dd340eff5" name="tests/052.solrinputdocument_haschilddocuments.phpt" role="test" />
<file md5sum="8bf0cf24a4f2278b8914d6058a0413ee" name="tests/053.solrinputdocument_getchilddocumentscount.phpt" role="test" />
<file md5sum="ec6f14eb709b93b2c0e5c5c6fcef83c6" name="tests/054.solrinputdocument_addchilddocuments.phpt" role="test" />
<file md5sum="38ade4b75c0782f7967e7297b1b65b77" name="tests/055.solrinputdocument_serialization.phpt" role="test" />
<file md5sum="1d2d1cc4174a86f59b0026dd86b4b7fa" name="tests/056.solrinputdocument_toArray.phpt" role="test" />
<file md5sum="6645f4cf337fdb2f1c391483e2ba1ae2" name="tests/057.solrinputdocument_clone.phpt" role="test" />
<file md5sum="3515347572f456960b6f3982fbe4ea4b" name="tests/058.solrinputdocument_deletefield.phpt" role="test" />
<file md5sum="44d060ddfeb3079204f24ce7ba40cd4c" name="tests/059.solrinputdocument_clear.phpt" role="test" />
<file md5sum="7524efd09b9f693796dd973428e68164" name="tests/059.solrinputdocument_fieldexists.phpt" role="test" />
<file md5sum="f57d492b2e2f397c200ed5e2e5b301bc" name="tests/059.solrinputdocument_getboost.phpt" role="test" />
<file md5sum="14641750e201c66b56d7044caf6edb64" name="tests/059.solrinputdocument_getfieldcount.phpt" role="test" />
<file md5sum="423bd0cdc10bf46962248afc6ef694f1" name="tests/059.solrinputdocument_getfieldnames.phpt" role="test" />
<file md5sum="3f2a04b8d2bc44008d3e756d70dc81b6" name="tests/059.solrinputdocument_getfield.phpt" role="test" />
<file md5sum="ccd4c4f679e25fb8f4fc8aefb08de63c" name="tests/059.solrinputdocument_merge.phpt" role="test" />
<file md5sum="b01873c11c32fad144a0ba6f62ea3fe7" name="tests/059.solrinputdocument_set_getfieldboost.phpt" role="test" />
<file md5sum="d1193aab3f6ec772dc2f4843339c3d97" name="tests/059.solrinputdocument_setversion.phpt" role="test" />
<file md5sum="4454938c63f2720823432de357a3b60f" name="tests/059.solrinputdocument_sort.phpt" role="test" />
<file md5sum="21b57d196474c44300209573555c75c9" name="tests/060.solrquery_comon_query_params.phpt" role="test" />
<file md5sum="cb232a6c37e422357118b21e96dbcc3e" name="tests/061.solrquery_simpleFacetParameters.phpt" role="test" />
<file md5sum="48088ce505cbd1bd4de11748b6894858" name="tests/062.solrquery_date_facet_parameters.phpt" role="test" />
<file md5sum="f3d346263a30795ecd216e4e9ec51199" name="tests/063.solrquery_HighlightingParameters.phpt" role="test" />
<file md5sum="5c34a67764be458b361cd22f72812ae7" name="tests/064.solrquery_StatsComponent.phpt" role="test" />
<file md5sum="84404a9646d1598b5d119100723dcda4" name="tests/065.solrquery_MoreLikeThis.phpt" role="test" />
<file md5sum="527d5a4d90e2d884bd7cf09f945541a6" name="tests/066.solrquery_TermsComponent.phpt" role="test" />
<file md5sum="41efa25f5bb470d8e0e8da7bf47f0618" name="tests/067.solrquery__construct.phpt" role="test" />
<file md5sum="a43bef05545e78e202bb78877e33d347" name="tests/068.solrquery_parameters_error.phpt" role="test" />
<file md5sum="59c50d3a5bff904e34435da6b9a88b5f" name="tests/069.solrquery_GroupParameters.phpt" role="test" />
<file md5sum="05bdd440344c5907bd2f1dffdcbf2f14" name="tests/070.solrquery_collapse.phpt" role="test" />
<file md5sum="97319a7865db7b3d4c91efd0cb0e5dd3" name="tests/071.solrquery_collapse_exception.phpt" role="test" />
<file md5sum="33a06c5d2027f78f0735421dc3beb7ce" name="tests/072.solrquery_expand.phpt" role="test" />
<file md5sum="ebb28a6c2f53368671ff61b378e0ec69" name="tests/080.solrutils_escapequerychars.phpt" role="test" />
<file md5sum="b934c33dc1a70b0d08973aad5afecd6b" name="tests/081.solrutils_digest_json_response.phpt" role="test" />
<file md5sum="e3b341c30838b1189fc205b80abe0d97" name="tests/082.solrutils_getsolrversion.phpt" role="test" />
<file md5sum="f71323a6425435d61deeed514147cfb3" name="tests/083.solrutils_getsolrstats.phpt" role="test" />
<file md5sum="bc7e9771c781f5881b84a513b9006727" name="tests/084.solrutils_queryphrase.phpt" role="test" />
<file md5sum="a8100c78d864c983305fd0d311113c71" name="tests/090.solrserverexception_xml.phpt" role="test" />
<file md5sum="e60161c6695f4c1288b16d05d6f41583" name="tests/091.solrserverexception_json.phpt" role="test" />
<file md5sum="50e04829772ed91b29987d133567b772" name="tests/092.solrserverexception_php.phpt" role="test" />
<file md5sum="33392845ec0f38ad861247e39e3503d1" name="tests/100.solrresponse_json.phpt" role="test" />
<file md5sum="8d37b881a2d3494fb4604d16fb058851" name="tests/101.solrresponse_parseMode.phpt" role="test" />
<file md5sum="922f26137297fd8dd57d704fe1c8eadb" name="tests/102.solrresponse_phps.phpt" role="test" />
<file md5sum="345b859fe1b477b305f22a507457c771" name="tests/103.solrresponse_get_array_response.phpt" role="test" />
<file md5sum="90b5b43d87f16093e03358e8991ed7b4" name="tests/104.solrresponse_get_response_maxscore.phpt" role="test" />
<file md5sum="429404f2827134e00484c0de1738cb49" name="tests/105.solrresponse_child_doc_response.phpt" role="test" />
<file md5sum="134cb101009be348540056a7816c243e" name="tests/106.solrresponse_child_doc_response_solrdoc.phpt" role="test" />
<file md5sum="58ac9717c8fcffb2a560861765045ab6" name="tests/107.solrresponse_getrawresponseheaders.phpt" role="test" />
<file md5sum="d41c4eff01478f01f39cce6f2925622b" name="tests/108.solrresponse_getdigestedresponse.phpt" role="test" />
<file md5sum="d8b4656c3888fc0a1e3bff722b125a8c" name="tests/109.solrresponse_gethttpstatus.phpt" role="test" />
<file md5sum="915341088620654c57d371e7d00f51cb" name="tests/109.solrresponse_getrequesturl.phpt" role="test" />
<file md5sum="00a30cfb8b70ef4a93a126d0e580b3b5" name="tests/109.solrresponse_success.phpt" role="test" />
<file md5sum="d05b9980b53ee0a73a29c35748aab609" name="tests/110.solrdismaxquery.phpt" role="test" />
<file md5sum="fcb66ce379e97368e4617255943c979a" name="tests/111.solrdismaxquery_boostquery.phpt" role="test" />
<file md5sum="9cfa1f27a2acc57e56d4bc20cef768fc" name="tests/112.solrdismaxquery_query_parser.phpt" role="test" />
<file md5sum="e83c319ffd9d2eb0bb35f52ad11a2027" name="tests/113.solrdismaxquery_bigramfields.phpt" role="test" />
<file md5sum="7d40ecee77a3b6a033829bc808ef8ab4" name="tests/114.solrdismaxquery_trigramfields.phpt" role="test" />
<file md5sum="238ac4a68c5e0bae079081de60a8694b" name="tests/115.solrdismaxquery_userfields.phpt" role="test" />
<file md5sum="f1b4abf4ba59e386c52125fac9e977b4" name="tests/116.solrdismaxquery_boostfunction.phpt" role="test" />
<file md5sum="50985fa5d44ebae872de6565861f9162" name="tests/130.parameters_simple_list_separator.phpt" role="test" />
<file md5sum="faaadf25baec8d1001607ec03c8e7f92" name="tests/150.solrcollapsefunction.phpt" role="test" />
<file md5sum="eff43fa9bf0fb1d67de43c099b575b84" name="tests/151.solrcollapsefunction_illegal_operations.phpt" role="test" />
<file md5sum="0cf30ebf8f5c61adc969cb15508af2ec" name="tests/160.solr_update_document_block.phpt" role="test" />
<file md5sum="99dc5ff721e00de25bdfdc54feecb04c" name="tests/180.solrdocumentfield_construct.phpt" role="test" />
<file md5sum="f17674e64a66d0ba2429d1e178afc74b" name="tests/181.solrdocumentfield_write_property.phpt" role="test" />
<file md5sum="436c164ae697a6fc002fb12a03fbc72e" name="tests/182.solrdocumentfield_unset_property.phpt" role="test" />
<file md5sum="ecb9a2b990b6284492d1721a0ddee8f0" name="tests/190.solrparams_setparam.phpt" role="test" />
<file md5sum="a3ce68306ae2050c02536dcc06b61b89" name="tests/191.solrparams_addparam.phpt" role="test" />
<file md5sum="209235271eb85d2bf3ea65fb5ae9a9ce" name="tests/192.solrparams_getparam.phpt" role="test" />
<file md5sum="34c282f873b8aaeaaa4d34477a032e6f" name="tests/193.solrparams_getparams.phpt" role="test" />
<file md5sum="fa1cdf78c7c0c3930a55f73d5c509b36" name="tests/194.solrparams_getpreparedparams.phpt" role="test" />
<file md5sum="cd911b56709b04840a1d4cab20d90381" name="tests/195.solrparams_tostring.phpt" role="test" />
<file md5sum="ce4fa916299cd4f8d3c72331cfe48607" name="tests/196.solrparams_serialize.phpt" role="test" />
<file md5sum="e22df5b626c6a8b43f0ff3347b82cd33" name="tests/196.solrparams_serialize_php81.phpt" role="test" />
<file md5sum="d864bfa1c1da7f971956d16ac67e5f2a" name="tests/197.solrparams_unserialize.phpt" role="test" />
<file md5sum="0e8512dd327c5b6fc3545134c24f9f1e" name="tests/198.solrparams_clone.phpt" role="test" />
<file md5sum="bba65bb425f0fe45134a06538137a973" name="tests/200.solrextractrequest_clone.phpt" role="test" />
<file md5sum="f17e6ebc4560c94b527d0635b81b57ad" name="tests/201.solrextractrequest_serialize.phpt" role="test" />
<file md5sum="5525649cdd0dab474a31796cc7ce148f" name="tests/202.solrdocument_new_serialize.phpt" role="test" />
<file md5sum="aaee6ce3235aa36e2c7d64b696d19751" name="tests/203.solrquery_strict_types.phpt" role="test" />
<file md5sum="6fd42d04bb7d113c777a6bebf59e703a" name="tests/bug_59511_error.phpt" role="test" />
<file md5sum="cc77d3ce66ccdb830b6b0625f5fde10e" name="tests/bug_61836_error.phpt" role="test" />
<file md5sum="f1195ef68119e0586a587cfb41973e91" name="tests/bug_67394.phpt" role="test" />
<file md5sum="1d5e8160792cf9e5950448d0dea72ba2" name="tests/bug_68179.phpt" role="test" />
<file md5sum="b0a13805424bdb24d6028a4482642e02" name="tests/bug_68181.phpt" role="test" />
<file md5sum="69e78936e61b42ca5a0e533d42d94288" name="tests/bug_69156.phpt" role="test" />
<file md5sum="688d221d8bd8184c8ce727d66c15fa9b" name="tests/bug_70482.phpt" role="test" />
<file md5sum="106fad4727af4d9f38dd4821b1d63613" name="tests/bug_70495.phpt" role="test" />
<file md5sum="9c6e8b418aeef2dbd95a92901ce6e2aa" name="tests/bug_70496.phpt" role="test" />
<file md5sum="cc4738f614bc7cbd21143ec88de11a0c" name="tests/bug_72033.phpt" role="test" />
<file md5sum="4c11dd7f15c09fbe60cf90f5860ec620" name="tests/bug_72740.phpt" role="test" />
<file md5sum="4bfdd569b6329b78dd7e51c2ebf3fe1d" name="tests/bug_unknown.phpt" role="test" />
<file md5sum="be57dd1600c35ada95de0c757b3c019a" name="pecl-compat/src/misc.h" role="src" />
<file md5sum="b82300565ca4185a20755697df6c8efb" name="pecl-compat/src/zend_hash.h" role="src" />
<file md5sum="4964d5e75b79e45810cb5e3af061f70c" name="pecl-compat/src/zend_string.h" role="src" />
<file md5sum="666b3821de6a28037f17e8d7e9e8fdc1" name="pecl-compat/compat.h" role="src" />
<file md5sum="605df8f99b8a09e61af3aca50c03eaf4" name="src/php_solr.h" role="src" />
<file md5sum="36576518f758d205d814444566de290f" name="src/php_solr_api.h" role="src" />
<file md5sum="899b09a9a9bde4390f86ee808bf32ec4" name="src/php_solr_version.h" role="src" />
<file md5sum="5d13a8d602f5c74dd4f894aea42e518d" name="src/solr_constants.h" role="src" />
<file md5sum="fca98176e35e6cd3bf625a58de57ffc1" name="src/solr_macros.h" role="src" />
<file md5sum="09342913cb3f8d935f056f015837fa55" name="src/solr_string.h" role="src" />
<file md5sum="471683681feba584bb10812137c5b69f" name="src/solr_types.h" role="src" />
<file md5sum="3af10fa50b0fa80a5d0e751bd941185d" name="src/php_solr.c" role="src" />
<file md5sum="2d543581761620d77da7f3f8be4f75d3" name="src/php_solr_client.c" role="src" />
<file md5sum="4bf10f83172843695145a58cfd34694f" name="src/php_solr_collapse_function.c" role="src" />
<file md5sum="d6a988343fa24b2e0e9bd58f8ad94d7f" name="src/php_solr_document.c" role="src" />
<file md5sum="8079c2af5254a1db963bc0ed2773d43d" name="src/php_solr_exception.c" role="src" />
<file md5sum="46a9a0b170f8a83f3a36e8668362c230" name="src/php_solr_extract.c" role="src" />
<file md5sum="b9b6480d988d2ac1f68e5e67c34c1ae2" name="src/php_solr_input_document.c" role="src" />
<file md5sum="6216911dddae741cc53877f70e5ccf92" name="src/php_solr_object.c" role="src" />
<file md5sum="3de4ce13b58fe949a6c5c98ae334ee07" name="src/php_solr_params.c" role="src" />
<file md5sum="bff1e05fb2140925c46c97c0ce255269" name="src/php_solr_query.c" role="src" />
<file md5sum="0d68029376867d7304bf35da2cbcae7c" name="src/php_solr_response.c" role="src" />
<file md5sum="5e2528d900c4865ceea6d228ee4441f0" name="src/php_solr_utils.c" role="src" />
<file md5sum="8cfc02637190e79265e0e3f80d1641dc" name="src/solr_functions_client.c" role="src" />
<file md5sum="3d8736ae480256f693d8d506b75011aa" name="src/solr_functions_debug.c" role="src" />
<file md5sum="5b2674cde9efcbb088475b7cd84ebcad" name="src/solr_functions_document.c" role="src" />
<file md5sum="f97f8f142734e04131e325bd2569d146" name="src/solr_functions_helpers.c" role="src" />
<file md5sum="0853b3663b447633c710cde6ec25fd5f" name="src/solr_functions_params.c" role="src" />
<file md5sum="9762f34387cdcb1bd150c834e83c3510" name="src/solr_functions_response.c" role="src" />
<file md5sum="14d9e0e0c3555180ff0a747f6e7e6a1a" name="src/solr_string.c" role="src" />
<file md5sum="2374906d87521d368080ab059bb1843f" name="src/php_solr_dismax_query.c" role="src" />
<file md5sum="3b7c4fa96cad4750d29f9ce6e2282820" name="src/php_solr_dismax_query.h" role="src" />
<file md5sum="4bf10f83172843695145a58cfd34694f" name="src/php_solr_collapse_function.c" role="src" />
<file md5sum="f84535c9dce7b347d589566ae5af8cd1" name="CREDITS" role="doc" />
<file md5sum="d87eb3de354dd40265976995837dcd43" name="README.CONTRIBUTORS" role="doc" />
<file md5sum="fd469cce1a919f0cc95bab7afb28d19d" name="LICENSE" role="doc" />
<file md5sum="f188de64946c2fa814dcca932cc0457a" name="README.ABOUT_SOLR_EXTENSION" role="doc" />
<file md5sum="42882106af3f1ebfda82da119de51d66" name="README.INSTALLATION" role="src" />
<file md5sum="63948ce3ed269a212fed27b5a3b226a1" name="README.SUBMITTING_CONTRIBUTIONS" role="doc" />
<file md5sum="f57a4d246340d78dcfd4b97c3eeb6b18" name="README.MEMORY_ALLOCATION" role="doc" />
<file md5sum="6cb77042bc8a75602fa1beb994d921cd" name="TODO" role="doc" />
<file md5sum="818ce8ec4ee16596136eb94bce97f99b" name="docs/documentation.php" role="doc" />
<file md5sum="297e0fd99ac9727023a1ef490289a8ed" name="config.m4" role="src" />
<file md5sum="87b201ff1dde6ae75ad0a0168adb07bc" name="config.w32" role="src" />
<file md5sum="d7709e9eded28bde9c0609f755a0d725" name="solr.dsp" role="src" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>7.4.0</min>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
<extension>
<name>libxml</name>
</extension>
<extension>
<name>curl</name>
</extension>
</required>
</dependencies>
<providesextension>solr</providesextension>
<extsrcrelease />
<changelog>
<release>
<version>
<release>2.8.1</release>
<api>2.8.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2025-04-22</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Fixes:
- Fix return type of SolrUtils::escapeQueryChars() (#83)
</notes>
</release>
<release>
<version>
<release>2.8.0</release>
<api>2.8.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2024-12-30</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Features:
- Support PHP 8.4
Internals:
- improve config.m4 and config.w32 (remicollet and petk)
</notes>
</release>
<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>
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>
- PHP 8.1 compatible
- PHP 8.2 compatible
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>omars@php.net</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>
- 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>omars@php.net</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>
- 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>omars@php.net</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>
- 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>omars@php.net</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>
- 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>omars@php.net</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>
- Fix windows build
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>omars@php.net</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>
- 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>omars@php.net</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>
- 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>omars@php.net</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>
- 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>omars@php.net</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>
- Fix Windows Build
</notes>
</release>
<release>
<lead>
<name>Omar Shaban</name>
<user>omars</user>
<email>omars@php.net</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>
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>omars@php.net</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>
- 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>omars@php.net</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>
- 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>iekpo@php.net</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>
- 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>iekpo@php.net</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>
- 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>iekpo@php.net</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>
- 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>iekpo@php.net</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>
- 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>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.9</release>
<api>0.9.9</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-01-10</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed Bug #17009 Creating two SolrQuery objects leads to wrong query value
- Reset the buffer for the request data from the previous request in SolrClient
- Added new internal static function solr_set_initial_curl_handle_options()
- Moved the intialization of CURL handle options to solr_set_initial_curl_handle_options() function
- Resetting the CURL options on the (CURL *) handle after each request is completed
- Added more explicit error message to indicate that cloning SolrParams objects and its descendants is currently not yet supported
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.8</release>
<api>0.9.8</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-12-04</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed config.w32 for Windows build support (Pierre, Pierrick)
- Fixed Bug #16943 Segmentation Fault from solr_encode_string() during attempt to retrieve solrXmlNode->children->content when solrXmlNode->children is NULL (Israel)
- Disabled Expect header in libcurl (Israel)
- Disabled Memory Debugging when normal debug is enabled (Israel)
- Added list of contributors to the project
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.7</release>
<api>0.9.7</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-11-17</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed bug 16924 AC_MSG_NOTICE() is undefined in autoconf 2.13
- Added new method SolrClient::getDebug()
- Modified SolrClient::__construct() so that port numbers and other integer values for the options can be passed as strings.
- Changed internal string handling mechanism to allow for tracking of memory allocation in debug mode.
- Lowered minimum php version to 5.2.3. Unfortunately, this is the lowest PHP version that will be supported. PHP versions lower than 5.2.3 are not compatible or are causing tests to FAIL.
- Added php stubs for code-completion assists in IDEs and editors.
- Added more examples
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.6</release>
<api>0.9.6</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-11-01</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Reduced minimum php version to 5.2.4
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.5</release>
<api>0.9.5</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-27</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Added support for secure connections to SSL-enabled Solr servers (SSL/HTTPS).
Made connection errors more verbose.
The following options where added to the SolrClient constructor :
- secure (Boolean value indicating whether or not to connect in secure mode)
- timeout (This is maximum time in seconds allowed for the http data transfer operation. Default is 30 seconds)
- ssl_cert (File name to a PEM-formatted file containing the private key + private certificate (concatenated in that order) )
- ssl_key (File name to a PEM-formatted private key file only)
- ssl_keypassword (Password for private key)
- ssl_cainfo (Name of file holding one or more CA certificates to verify peer with)
- ssl_capath (Name of directory holding multiple CA certificates to verify peer with )
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.4</release>
<api>0.9.4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-23</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
Fixed bug 16897 - ap_php_vasprintf not available in 5.2.11
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.3</release>
<api>0.9.3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-19</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Corrected configuration options for automated installation via PECL. Removed extra hyphens.
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.2</release>
<api>0.9.2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-19</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed bug #16874 Added explanation in documentation
- Updated SolrParams::__toString() - modified to return name-value pair list instead of serialized object string
- Added the following methods to SolrParams :
SolrParams::toString()
SolrParams::getParam()
- Created the following aliases in SolrParams :
SolrParams::set()
SolrParams::add()
SolrParams::get()
- Added the following methods to SolrQuery :
SolrQuery::getQuery()
SolrQuery::getStart()
SolrQuery::getRows()
SolrQuery::getFields()
SolrQuery::getSortFields()
SolrQuery::getFilterQueries()
SolrQuery::getTimeAllowed()
SolrQuery::getFacet()
SolrQuery::getFacetFields()
SolrQuery::getFacetQueries()
SolrQuery::getFacetPrefix()
SolrQuery::getFacetSort()
SolrQuery::getFacetLimit()
SolrQuery::getFacetOffset()
SolrQuery::getFacetMinCount()
SolrQuery::getFacetMissing()
SolrQuery::getFacetMethod()
SolrQuery::getFacetDateFields()
SolrQuery::getFacetDateStart()
SolrQuery::getFacetDateEnd()
SolrQuery::getFacetDateGap()
SolrQuery::getFacetDateHardEnd()
SolrQuery::getFacetDateOther()
SolrQuery::getHighlight()
SolrQuery::getHighlightFields()
SolrQuery::getHighlightSnippets()
SolrQuery::getHighlightFragsize()
SolrQuery::getHighlightMergeContiguous()
SolrQuery::getHighlightRequireFieldMatch()
SolrQuery::getHighlightMaxAnalyzedChars()
SolrQuery::getHighlightAlternateField()
SolrQuery::getHighlightMaxAlternateFieldLength()
SolrQuery::getHighlightFormatter()
SolrQuery::getHighlightSimplePre()
SolrQuery::getHighlightSimplePost()
SolrQuery::getHighlightFragmenter()
SolrQuery::getHighlightUsePhraseHighlighter()
SolrQuery::getHighlightHighlightMultiTerm()
SolrQuery::getHighlightRegexSlop()
SolrQuery::getHighlightRegexPattern()
SolrQuery::getHighlightRegexMaxAnalyzedChars()
SolrQuery::getStats()
SolrQuery::getStatsFields()
SolrQuery::getStatsFacets()
SolrQuery::getMlt()
SolrQuery::getMltCount()
SolrQuery::getMltFields()
SolrQuery::getMltQueryFields()
SolrQuery::getMltMinTermFrequency()
SolrQuery::getMltMinDocFrequency()
SolrQuery::getMltMinWordLength()
SolrQuery::getMltMaxWordLength()
SolrQuery::getMltMaxNumTokens()
SolrQuery::getMltMaxNumQueryTerms()
SolrQuery::getMltBoost()
SolrQuery::getTerms()
SolrQuery::getTermsField()
SolrQuery::getTermsLowerBound()
SolrQuery::getTermsUpperBound()
SolrQuery::getTermsIncludeLowerBound()
SolrQuery::getTermsIncludeUpperBound()
SolrQuery::getTermsMinCount()
SolrQuery::getTermsMaxCount()
SolrQuery::getTermsPrefix()
SolrQuery::getTermsLimit()
SolrQuery::getTermsReturnRaw()
SolrQuery::getTermsSort()
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.1</release>
<api>0.9.1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-07</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed bug #16864 (Build failure in Non-ZTS builds)
</notes>
</release>
<release>
<lead>
<name>Israel Ekpo</name>
<user>iekpo</user>
<email>iekpo@php.net</email>
<active>yes</active>
</lead>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-10-05</date>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Initial release after approximately 10 months of development and 3 weeks of testing. This is the beta version. Some of the features may be modified in future releases.
</notes>
</release>
</changelog>
</package>
|