forked from hibernate/hibernate-search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.txt
4373 lines (3643 loc) · 246 KB
/
changelog.txt
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
Hibernate Search Changelog
==========================
6.0.0.Final (10-12-2020)
-------------------------
** Improvement
* HSEARCH-4120 Upgrade to Hibernate ORM 5.4.25.Final
** Task
* HSEARCH-4118 Fix formatting in Elasticsearch layout strategy documentation
* HSEARCH-3527 Add proper SPIs for the Quarkus integration
6.0.0.CR2 (23-11-2020)
-------------------------
** Bug
* HSEARCH-4114 java.lang.reflect.InaccessibleObjectException when declaring dependencies to private fields from non-open modules in a bridge
* HSEARCH-4112 Hibernate Search + Spring-JTA fails because of closed entity manager
* HSEARCH-4108 Search.session() does not work with session proxies
* HSEARCH-4107 Session cast fails when creating a FullTextSession with Spring 2.4.0
* HSEARCH-4100 Query/request logs should use the TRACE level
* HSEARCH-4096 Spring Boot hangs while trying to retrieve (built-in) beans for Hibernate Search
** Improvement
* HSEARCH-4116 Ignore empty, blank or null configuration properties when detecting unused properties
* HSEARCH-4104 Upgrade to Elasticsearch 7.10.0
* HSEARCH-4102 Alias-free IndexLayoutStrategy
* HSEARCH-4101 Change default required status for Elasticsearch indexes to "yellow"
* HSEARCH-4098 Upgrade to Lucene 8.7.0
* HSEARCH-4074 Clarify how to pick a bridge type in the documentation
* HSEARCH-4069 Measure time more precisely when computing execution time of Lucene queries
** New Feature
* HSEARCH-4099 Allow option for setting Elasticsearch connection information via full URIs.
** Task
* HSEARCH-4115 Fix transient failure in ElasticsearchClientFactoryImplIT
* HSEARCH-4113 Document that serializing the indexing plan is not supported
* HSEARCH-4111 Upgrade to Hibernate ORM 5.4.24.Final
* HSEARCH-4106 Force tests to execute with JUnit 4
* HSEARCH-4097 Disable maven-surefire-plugin's trimStackTrace by default
* HSEARCH-4095 Fix some legacy package names in Batch JSR 352
* HSEARCH-4094 JSR-352 documentation should mention that an additional dependency is necessary
* HSEARCH-4093 Fix incorrect assertions in tests detected by Sonar
* HSEARCH-4089 Fix warnings related to templates in Elasticsearch integration tests
* HSEARCH-4088 Type safe PropertyBridge/TypeBridge
* HSEARCH-4072 Move from Travis to GitHub actions
* HSEARCH-4067 Remove "(default)"/"(no default)" from configuration examples in the documentation
* HSEARCH-4043 Remove Byteman from RestartChunkIT
* HSEARCH-3821 Improve test coverage for Elasticsearch schema validation
* HSEARCH-3479 Migrate Search 5 CDI and Spring integration tests to Search 6
6.0.0.CR1 (03-11-2020)
-------------------------
** Bug
* HSEARCH-4080 Lucene total hit count is wrongly considered exact on timeout
* HSEARCH-4079 Search query always times out when timeout is lower than 1ms
* HSEARCH-4070 Lucene scroll ignores totalHitCountThreshold
* HSEARCH-4048 Relative precedence of object field templates vs. value field templates is not always taken into account
* HSEARCH-3905 exists() predicate ignores dynamic fields among children of the targeted object field with the Lucene backend
* HSEARCH-2836 Timeouts start when the request is submitted to the client, leading to systematic timeout when client is under heavy load
** Improvement
* HSEARCH-4068 Skip non-competitive hits when running a MatchAllDocsQuery with descending score sort with Lucene
* HSEARCH-4047 More explicit error messages when attempting to use features specific to value fields on an object field
* HSEARCH-4040 Upgrade to Elasticsearch 7.9.2
* HSEARCH-4023 Expose the total hit count in scroll results
* HSEARCH-4006 More explicit failure message when two types target the same index
* HSEARCH-4000 @IndexingDependency, @AssociationInverseSide should be repeatable
* HSEARCH-3990 Optimize the retrieval of topDocs in very long Lucene scrolls
** New Feature
* HSEARCH-4056 Expose the index size from LuceneIndexManager
* HSEARCH-4046 Expose a map of static children by name in the metamodel of object fields
* HSEARCH-2584 Introduce some commonly used Analyzer definitions by default
** Remove Feature
* HSEARCH-4041 Remove deprecated interfaces/methods introduced during the Alphas/Betas of 6.0.0
** Task
* HSEARCH-4092 Remove incorrect documentation related to sharding
* HSEARCH-4091 Remove the "preview" status from Hibernate Search 6
* HSEARCH-4090 Mention in the migration guide that the migration helper is only for Lucene-based applications
* HSEARCH-4087 Upgrade to Hibernate ORM 5.4.23.Final
* HSEARCH-4086 Test Hibernate Search against Elasticsearch 7.8 on AWS
* HSEARCH-4085 Upgrade to HCANN 5.1.2.Final
* HSEARCH-4084 Add a mvnw executable to the repository
* HSEARCH-4083 JQassistant does not collect any information from modules
* HSEARCH-4082 Suppress warnings from Forbiddenapis about classes not found in the classpath
* HSEARCH-4081 Update copyright.txt
* HSEARCH-4078 Fix transient failure in LibraryShowcaseMassIndexingIT
* HSEARCH-4077 Avoid extra logging when using ExpectedLog4jLog
* HSEARCH-4076 Document loggers
* HSEARCH-4075 Upgrade to Hibernate Annotations 5.1.1.Final
* HSEARCH-4073 Fix code smells detected by Sonar - 2020-10
* HSEARCH-4071 Remove deprecated configuration properties
* HSEARCH-4064 Add warnings in the documentation about concurrent updates to the same entity in a clustered application
* HSEARCH-4063 Upgrade all publicly exposed dependencies to their latest available version
* HSEARCH-4061 Clean up a few obsolete entries in the POM
* HSEARCH-4060 Investigate unusually long execution of integration tests with AWS Elasticsearch Service 7.7
* HSEARCH-4058 Remove any anchor link from legacy documentation referencing Batch JSR-351 documentation
* HSEARCH-4055 Add the mapper-pojo-base module to the javadoc
* HSEARCH-4054 Upgrade to JUnit 4.13.1
* HSEARCH-4053 Remove the "legacy" directory from the codebase
* HSEARCH-4052 Add missing properties such as "directory_provider" to HibernateSearch5Properties
* HSEARCH-4051 Restore support for configuring a path prefix for Elasticsearch backend
* HSEARCH-4049 Test the JSR-352 module with JBeret
* HSEARCH-4045 Infer tools.jar location (for Byteman) correctly even when a different JVM is used for Maven and Surefire/Failsafe
* HSEARCH-4044 Rename JSR-352 artifacts and move them to reflect their ties to the ORM mapper
* HSEARCH-4024 Upgrade integration tests to the latest version of Spring Boot
* HSEARCH-4021 Move the tests to log4j2
* HSEARCH-3996 Double check all Log file offsets
* HSEARCH-3402 Apply recommendations from Async/reactive development experts for our async APIs
6.0.0.Beta11 (08-10-2020)
-------------------------
** Bug
* HSEARCH-4028 Elasticsearch's SearchResultTotal incorrectly reports an exact count after a timeout
* HSEARCH-4027 ScrollResult.timedOut() sometimes returns false even though a timeout occurred with Lucene
* HSEARCH-4011 Hibernate Search ScrollableResults should throw a JPA QueryTimeoutException instead of SearchTimeoutException
* HSEARCH-4009 PropertyBridge on property marked with @IndexingDependency(derivedFrom = ...) leads to bootstrap failure
* HSEARCH-4008 Hibernate Search ScrollableResults.getRowNumber() returns Integer.MAX_VALUE instead of -1 when after the last element
* HSEARCH-3999 Deletion of contained entity whose elementCollection is indexed-embedded in the containing entity leads to LazyInitializationException
* HSEARCH-3998 Mass indexing a (non-abstract) parent class in a type hierarchy with a subclass annotated with @Indexed(enabled = false) still indexes that subclass
* HSEARCH-3997 Mapping arrays of primitive types (int[]/float[]/etc.) leads to ClassCastException upon indexing
* HSEARCH-3864 java.lang.Error thrown during mass indexing are swallowed and not reported to the user
* HSEARCH-3655 AWS signing fails when using multiple routing keys
** Improvement
* HSEARCH-4030 Upgrade to Hibernate ORM 5.4.22.Final
* HSEARCH-4020 Add the entity reference to the message of exceptions occurring during automatic indexing
* HSEARCH-4019 Avoid adding a TotalHitCountCollector to Lucene queries unless absolutely necessary
* HSEARCH-4018 Avoid filtering out nested documents in Lucene queries when we know there are none
* HSEARCH-4016 Avoid call to loader.loadBlocking(<empty list>) when there are no entities to load
* HSEARCH-4007 Throw an exception when the document ID turns out to be non-unique when loading entities during a search query
* HSEARCH-4005 Test Hibernate Search against Elasticsearch 7.7 on AWS
* HSEARCH-4004 Expose an eventContext from MappingAnnotationProcessorContext
* HSEARCH-4003 Automatically expand repeatable annotations in MappingAnnotatedElement
* HSEARCH-3947 Avoid creating huge arrays for collectors when a query does not have an upper bound limit
* HSEARCH-3917 Use TopScoreDocCollector when a descending score sort is requested explicitly
** New Feature
* HSEARCH-4002 Expose the type of a property for a given ContainerExtractorPath in MappingAnnotatedProperty
* HSEARCH-4001 Trigger reindexing when a property is modified, but not when the targeted entity is modified
* HSEARCH-3994 Expose metadata about the targeted types from SearchScope
* HSEARCH-3992 Add support for a default analyzer configured at the analysis configurer level
* HSEARCH-3560 Elasticsearch AWS should support AWS Credential Providers for authentication
** Task
* HSEARCH-4042 Restore the retry() steps in the Jenkinsfile
* HSEARCH-4039 Upgrade to maven-surefire-plugin/maven-failsafe-plugin 3.0.0-M5
* HSEARCH-4038 Assign more memory to the JVM used to run Elasticsearch locally in tests
* HSEARCH-4037 Stop adding -Dcom.sun.xml.bind.v2.bytecode.ClassTailor.noOptimize=true to JVM system properties when testing
* HSEARCH-4036 Upgrade to ForbiddenApis 3.1
* HSEARCH-4035 Use static imports for all assertions
* HSEARCH-4034 Add a multi-tenancy test to mapper ORM integration tests
* HSEARCH-4032 Use "surefire.rerunFailingTestsCount"/"failsafe.rerunFailingTestsCount" to re-run failing tests when testing on AWS Elasticsearch
* HSEARCH-4031 Move from Easymock to Mockito
* HSEARCH-4026 Raise timeout for reaching yellow status when testing on AWS Elasticsearch Service
* HSEARCH-4025 Support indexing entities with @IdClass if they have an explicit @DocumentId
* HSEARCH-4017 Don't scan index leaves that don't contain topdocs when applying projections
* HSEARCH-4015 Remove some legacy dependencies from the parent pom
* HSEARCH-4014 Document support for Character, Byte, Boolean, Float, Double as document identifiers
* HSEARCH-4013 Add framework-specific bits to the getting started guide
* HSEARCH-4012 Run tests in more environments for pull requests
* HSEARCH-3995 Add Lucene/Elasticsearch versions to the "Compatibility" section of the documentation
* HSEARCH-3991 Upgrade to Lucene 8.6.2
* HSEARCH-3986 Test that Hibernate Search releases all file handles on close
* HSEARCH-3985 Test Hibernate Search 6 indexing when hibernate.use_identifier_rollback=true
* HSEARCH-3785 Test soft timeout ( limiting fetching ) on Elasticsearch
* HSEARCH-3419 Remove --add-opens java.base/java.lang=ALL-UNNAMED from the JVM arguments used in our JDK11 integration tests
* HSEARCH-3282 Provide a "compatibility layer" module to help users migrate from Search 5 to Search 6
* HSEARCH-3243 Search 6 groundwork - Implement safer type checking for bridge type parameters
6.0.0.Beta10 (04-09-2020)
-------------------------
** Bug
* HSEARCH-3988 Using search(...).select(...) drops the type of loading options and prevents their definition
** Improvement
* HSEARCH-3787 Support hard timeout on Hibernate ORM entity loading
* HSEARCH-3774 Improve the timeout implementation for Elasticsearch
* HSEARCH-3517 Optimize the computation of total hit count
* HSEARCH-3309 Allow per-index analyzer definitions in Elasticsearch
** New Feature
* HSEARCH-3993 Add default identifier bridges for types character, boolean, byte, float, double
* HSEARCH-3974 Backend-specific extensions for scroll
* HSEARCH-3613 Allow field access to property with the JavaBean mapper
** Task
* HSEARCH-3989 Upgrade to Hibernate ORM 5.4.21.Final
* HSEARCH-3987 Remove dead code related to "*Expectations" classes in the backend TCK
* HSEARCH-3984 Upgrade to Elasticsearch 7.9.0
* HSEARCH-3983 Upgrade to Lucene 8.6.1
* HSEARCH-3981 Upgrade to Hibernate ORM 5.4.20.Final
* HSEARCH-3980 Expose multiValuedInRoot in the metamodel
* HSEARCH-3979 Rename @IndexedEmbedded.maxDepth to includeDepth
* HSEARCH-3975 Expose scrolling operations through JPA/ORM queries
* HSEARCH-3973 Re-enable SearchQueryEntityLoadingGraphIT.lazy_fetch
* HSEARCH-3108 Search 6 groundwork - Restore support for indexing event interceptors
* HSEARCH-2505 Lower the default read timeout with Elasticsearch
6.0.0.Beta9 (31-07-2020)
-------------------------
** Bug
* HSEARCH-3977 Scroll always targets all indexes
* HSEARCH-3941 ClassCastException: org.hibernate.search.backend.elasticsearch.types.sort.impl.ElasticsearchGeoPointFieldSortBuilderFactory cannot be cast to org.hibernate.search.backend.elasticsearch.types.sort.impl.ElasticsearchStandardFieldSortBuilderFactory
* HSEARCH-3938 HibernateOrmIntegrationBooterImpl confuses the startup event for a shutdown event, and vice-versa
* HSEARCH-3937 Error messages on boot/shutdown are hidden or unclear when using an EnvironmentSynchronizer
* HSEARCH-1895 Projection over embedded collection returns only the first element
** Improvement
* HSEARCH-3972 Upgrade to ORM 5.4.19.Final
* HSEARCH-3967 Specify defaults for index-level configuration properties at the backend level
* HSEARCH-3965 Upgrade to Lucene 8.6.0
* HSEARCH-3960 Validation failure messages should mention that they are related to Elasticsearch schema validation
* HSEARCH-3957 Upgrade to Hibernate ORM 5.4.18.Final
* HSEARCH-3956 Upgrade to Elasticsearch 7.8
* HSEARCH-3950 Simpler configuration syntax for single-backend applications
* HSEARCH-3936 Projectable fields in the Elasticsearch schema should have "store = false"
* HSEARCH-3506 Implement and test boosts on matchAll, matchId, boolean, nested predicates
* HSEARCH-3476 Make re-use of predicate/sort/fieldtype easier and safer
* HSEARCH-3307 Take into account how the field is being used when determining cross-index field compatibility
* HSEARCH-3102 Simpler configuration when only one backend type is available
** New Feature
* HSEARCH-3944 Distance projection on multi-valued fields
* HSEARCH-3391 Projection on multi-valued field values
** Remove Feature
* HSEARCH-3055 Remove support for the @Factory annotation and document the migration path
** Sub-task
* HSEARCH-3962 Document possible architectures
* HSEARCH-3710 Document declaration of dependencies in bridges
* HSEARCH-3709 Document routing key bridges
* HSEARCH-3680 Document the programmatic mapping
* HSEARCH-3668 Document the aggregation DSL in details
* HSEARCH-3600 Document the projection DSL in details
* HSEARCH-3599 Document the sort DSL in details
* HSEARCH-3598 Document the predicate DSL in details
** Task
* HSEARCH-3976 Document scrolling
* HSEARCH-3970 Clean up timing-related code
* HSEARCH-3964 Build and run tests against JDK16
* HSEARCH-3961 Test the default sort
* HSEARCH-3958 Factorize tests applied to various predicates
* HSEARCH-3954 Move the technical documentation to a separate document
* HSEARCH-3953 Document that zero-downtime reindexing is only doable if the schema did not change (for now)
* HSEARCH-3951 Upgrade to Elasticsearch 6.8 for AWS tests
* HSEARCH-3949 Remove OSGi and Wildfly support and integration tests from legacy code
* HSEARCH-3948 Rename ObjectFieldStorage to ObjectStructure and move it to a more appropriate package
* HSEARCH-3946 Remove the reference to SearchContext in reusable builders
* HSEARCH-3945 Refactor ElasticsearchScopedIndexFieldComponent / LuceneScopedIndexFieldComponent
* HSEARCH-3942 Stop testing Elasticsearch 6.2 in periodic CI builds
* HSEARCH-3940 Restore sort by distance on (nested) field in the Library showcase
* HSEARCH-3939 Use a single field for GeoPoint storage in Lucene
* HSEARCH-3935 Upgrade to Elasticsearch 6.8.9
* HSEARCH-3929 Use JDK11 by default when building Hibernate Search
* HSEARCH-3899 Change the explain API so that the entity id is used, instead of document id
* HSEARCH-3891 Allow POJO mapper implementations to pass explicit routing keys when indexing
* HSEARCH-3882 Test explicit and implicit nesting for all relevant predicates
* HSEARCH-3677 Complete all missing sections of the documentation
* HSEARCH-3636 Restore the ability to configure Lucene directories on a per-index or per-shard basis
6.0.0.Beta8 (02-06-2020)
-------------------------
** Bug
* HSEARCH-3913 @FullTextField.aggregable doesn't do anything
* HSEARCH-962 HibernateOrmCriteriaEntityLoader needs to execute multiple queries in cases where the underlying database has a limit on the total amount of query parameters
* HSEARCH-551 Using Programmatic API, getters are not inherited
* HSEARCH-550 Using Programmatic API, the document ID is not inherited
** Improvement
* HSEARCH-3932 Upgrade to Hibernate ORM 5.4.17.Final
* HSEARCH-3930 Upgrade to Lucene Lucene 8.5.2
* HSEARCH-3772 Allow mapping the document id to non-entity-id properties for ORM's dynamic-map entity types
* HSEARCH-3584 Support ORM bytecode enhancement when embeddables, mapped superclasses or entity hierarchies are involved
* HSEARCH-1344 Offer compiler or runtime error if range types are incompatible in range faceting
* HSEARCH-1301 Trigger/Set analyzer in classbridge
* HSEARCH-1086 Have more user friendly messages upon incorrect types in query DSLs
* HSEARCH-661 Improve documentation around query dsl options like ignoreAnalyzer and ignoreFieldBridge
** New Feature
* HSEARCH-3628 Finer loading options in search queries (fetch graph, ...)
* HSEARCH-1865 Extend public meta-data API to provide information on embedded properties/fields
** Task
* HSEARCH-3933 Fix reset expectations and verify expectations met for the stub backend
* HSEARCH-3931 Fix the dataset used in performance tests
* HSEARCH-3928 Rename PropertyMappingIndexedEmbeddedStep#extractors() (no parameters) to "noExtractors"
* HSEARCH-3925 Move away from session.byId for entity loading
* HSEARCH-3924 Hide obvious getters and setters from the documentation examples
* HSEARCH-3923 Upgrade to Hibernate ORM 5.4.16.Final
* HSEARCH-3922 Remove "get"/"set" prefixes from API methods
* HSEARCH-3921 Fix a typo in the index layout documentation
* HSEARCH-3920 Update tests to take advantage of the latest changes to test utils
* HSEARCH-3919 Add test configuration to test AWS Elasticsearch Service 7.4
* HSEARCH-3918 Upgrade to Elasticsearch 7.7.0
* HSEARCH-3916 DynamicTemplateJsonAdapterFactory should be public
* HSEARCH-3915 Upgrade to the Ubuntu Bionic environment in .travis.yml
* HSEARCH-3912 Increase the amount of RAM assigned to Elasticsearch in integration tests
* HSEARCH-3902 Expose addOrUpdate/delete/purge on IndexIndexer/PojoIndexer
* HSEARCH-3855 Improve formatting of logged indexing processors and reindexing resolvers
* HSEARCH-3842 Expose a global option to use ReindexOnUpdate.NO as a default
* HSEARCH-3275 Search 6 groundwork - Move to a stable implementation of Lucene spatial support
* HSEARCH-3097 Search 6 groundwork - Deprecate the IndexedEmbedded "prefix" feature
* HSEARCH-3072 Search 6 groundwork - Restore support for @IndexedEmbedded.targetElement (now targetType)
* HSEARCH-1853 Expose facet metadata in public metadata API
* HSEARCH-1807 Provide SPIs required by ISPN query
* HSEARCH-1231 Inherit @Indexed annotations by default
6.0.0.Beta7 (07-05-2020)
-------------------------
** Bug
* HSEARCH-3897 explain() fails for indexes with a custom name
* HSEARCH-3894 Lucene text aggregations count nested documents twice when they include the same term multiple times
* HSEARCH-3893 Elasticsearch aggregations return the count of nested (leaf) documents
* HSEARCH-3883 NullPointerException when building a SimpleQueryString predicate
* HSEARCH-1929 @Facet on multi value field breaks indexing (be it for discrete or range faceting)
* HSEARCH-1927 Range faceting on multiple numeric values does not work
** Improvement
* HSEARCH-3911 Allow to extract native Lucene ScoreDoc data
* HSEARCH-3901 Expose metadata about the annotated type in the context passed to PropertyMappingAnnotationProcessor/TypeMappingAnnotationProcessor
* HSEARCH-3886 Missing values should be last by default in field sorts
* HSEARCH-3885 Throw exceptions when attempting to use predicate with incompatible nested path hierarchy in a nested predicate
* HSEARCH-3879 Clarify documentation of thread pool and indexing settings
* HSEARCH-2461 API/SPI overhaul in HS 6.0
** New Feature
* HSEARCH-3914 Expose the Lucene Sort in LuceneSearchQuery
* HSEARCH-3892 Aggregations on fields in nested documents
* HSEARCH-3881 Filtering for aggregations on multi-valued fields in nested documents
* HSEARCH-3846 Filtering for sorts on multi-valued fields in nested documents
* HSEARCH-3273 Dynamic fields
** Task
* HSEARCH-3907 Upgrade to Hibernate ORM 5.4.15.Final
* HSEARCH-3898 Change the explain API so that the type name is used, instead of index name
* HSEARCH-3896 Verify multiple loading with the DefaultProjectionHitMapper on the same query instance
* HSEARCH-3890 Upgrade to Hibernate ORM 5.4.14.Final
* HSEARCH-3887 Update documentation about routing in the Search DSL
* HSEARCH-3877 Upgrade test dependencies to the latest available version
* HSEARCH-3777 Restore configuration of the Similarity in the Lucene backend
* HSEARCH-3776 Restore advanced configuration options of the Lucene Writer
* HSEARCH-3589 Search 6 groundwork - Restore support for index metadata lookup
6.0.0.Beta6 (31-03-2020)
-------------------------
** Bug
* HSEARCH-3874 @IdClass, even not @Indexed, leads to NPE on bootstrap
* HSEARCH-3869 java.lang.IndexOutOfBoundsException when an Elasticsearch bulk work fails
* HSEARCH-3861 Elasticsearch search queries fetch the whole document source by default
* HSEARCH-3859 .desc().missing().last() / .asc().missing().first() places documents around 0 instead of last/first
* HSEARCH-3857 ConcurrentModificationException in very specific scenarios when indexing multiple entities with addOrUpdate which contains @IndexEmbedded dependencies
* HSEARCH-3852 Failure to index reports the wrong document ID with Elasticsearch discriminator multi-tenancy
* HSEARCH-3851 Entities whose indexing failed are not reported when even just one document ID cannot be converted
* HSEARCH-3848 Dynamic entities are ignored when creating a scope targeting Object.class
* HSEARCH-3845 Prefix query in SimpleQueryString predicate is case sensitive
* HSEARCH-3844 NullPointerException when using simpleQueryString() on non-analyzed, non-normalized fields
* HSEARCH-2859 Current implementation of SpatialBridge prevents multi-valued locations
** Improvement
* HSEARCH-3873 Upgrade to Hibernate ORM 5.4.13.Final
* HSEARCH-3872 Simplify and improve ordering and parallelism of Elasticsearch indexing
* HSEARCH-3871 Always enable delayed commits in the Lucene backend
* HSEARCH-3870 Upgrade to Elasticsearch 7.6.1
* HSEARCH-3867 Upgrade to Lucene 8.5.0
* HSEARCH-3850 Expose a tool to build property keys
* HSEARCH-3849 Create-or-validate schema management by default
* HSEARCH-3796 @IndexedEmbedded should be repeatable
* HSEARCH-3752 Implicit nested predicates
* HSEARCH-3719 Support a "degraded mode" where failure to contact Elasticsearch or index documents does not affect the whole application
* HSEARCH-3575 Add configuration options for the size and number of indexing queues, and the max size of Elasticsearch bulks
** New Feature
* HSEARCH-3847 Customize enabled syntax elements in simple query strings
* HSEARCH-3841 Offline startup of the Elasticsearch backend
* HSEARCH-3759 Initialization options and APIs
* HSEARCH-3751 dropAndCreateSchema() as an alternative to purge() in the MassIndexer
* HSEARCH-3103 Sorts on multi-valued fields
** Task
* HSEARCH-3876 Fix random failures in ElasticsearchClientFactoryImplIT
* HSEARCH-3868 Fix SearchQueryResultLoadingOrTransformingIT failures caused by incorrectly expecting ordered hits
* HSEARCH-3866 Stop testing against JDK13 in the CI build
* HSEARCH-3865 Clean up any change to the permission of index files during tests
* HSEARCH-3860 Refactor FieldSearchSortIT to enable testing more complex cases
* HSEARCH-3858 upgrade maven-checkstyle-plugin to 3.1.1
* HSEARCH-3854 Remove the unnecessary generic type parameter for DocumentElement
* HSEARCH-3843 Test Hibernate Search with JDK15 regularly
* HSEARCH-3822 Restore support for concurrent Lucene work execution - at least during mass indexing
* HSEARCH-3814 Mark experimental APIs/SPIs with an @Incubating annotation
6.0.0.Beta5 (21-02-2020)
-------------------------
** Bug
* HSEARCH-3834 Nested documents are never deleted
* HSEARCH-3833 Writing on different local-heap indexes will provoke LockObtainFailedException
* HSEARCH-3825 Purging a document from the POJO mapper will lead to NPE
* HSEARCH-3801 Hibernate Search blocks loading of non hibernate batch jobs
** Improvement
* HSEARCH-3835 Remove the unused "__HSEARCH_root_index_name" and "__HSEARCH_root_id" fields from nested documents
* HSEARCH-3831 Allow setting the automatic indexing sync strategy to a custom bean in configuration
* HSEARCH-3824 Automatically filter search results based on provided routing keys
* HSEARCH-3808 Rename and clarify automatic indexing synchronization strategies
* HSEARCH-3807 Use more generic wording in the query DSL
* HSEARCH-3460 Remove the confusion between flush and refresh
** New Feature
* HSEARCH-3836 Allow explicit routing for purges
* HSEARCH-3791 Configurable alias-based reads/writes for Elasticsearch indexes
** Remove Feature
* HSEARCH-3826 Drop support for non-exclusive index use
* HSEARCH-3779 Remove automatic index optimization
* HSEARCH-3778 Remove "index_metadata_complete" configuration property
** Task
* HSEARCH-3837 Fix dependency convergence error caused by the ES client dependency
* HSEARCH-3830 Upgrade to Hibernate ORM 5.4.12.Final
* HSEARCH-3829 Upgrade to Elasticsearch 7.6
* HSEARCH-3828 Change the format of the version logged on boot
* HSEARCH-3827 Restore simple backend performance tests
* HSEARCH-3823 Make the build independent from linked javadoc websites
* HSEARCH-3820 Refactor ElasticsearchSchemaValidator to ease maintenance
* HSEARCH-3819 JsonSyntaxException when validating or migrating an Elasticsearch schema with a geo_point field with null_value
* HSEARCH-3818 Upgrade to checkstyle 8.29
* HSEARCH-3817 Upgrade to Elasticsearch 7.5.2
* HSEARCH-3815 Stop publishing the mapper-javabean module
* HSEARCH-3799 Upgrade to Lucene 8.4.1
* HSEARCH-3775 Restore advanced Reader/Writer handling in the Lucene backend
* HSEARCH-3838 Use an explicit format for docvalue projections on ES 6.6
6.0.0.Beta4 (22-01-2020)
-------------------------
** Bug
* HSEARCH-3802 query.fetchTotalHitCounts always fails when setting a timeout with Elasticsearch
** Improvement
* HSEARCH-3812 Be more consistent with timeout messages in search queries across backends (Lucene/ES)
* HSEARCH-3810 Rework JBoss logging formatters: execute computationally intensive operations in toString rather than the constructor
* HSEARCH-3803 Support IdentifierBridge with provided IDs
* HSEARCH-3797 Two-phase projections in the Lucene backend
* HSEARCH-3793 Document usage of the "exists" predicate on object fields
* HSEARCH-3786 Lucene projections on fields in nested documents should limit children collection to the top docs
* HSEARCH-3729 Give more information about failures to MassIndexer users
* HSEARCH-3629 Move search query loading options to a better place in the search query DSL
* HSEARCH-3461 Do not optimize the indexes by default after mass indexing and document the drawbacks
* HSEARCH-3418 Document that Instants are truncated to the millisecond when indexed
* HSEARCH-1828 Clarify documentation about ways to disable Hibernate Search
** Task
* HSEARCH-3813 Automatically skip Elasticsearch instance creation when skipping tests
* HSEARCH-3811 Various attempts at improving bootstrap performance
* HSEARCH-3805 Override repositories in Karaf/Paxexam config
* HSEARCH-3804 Upgrade to Arquillian 1.5/Shrinkwrap 3.1.3
* HSEARCH-3800 Add experimental tests with Hibernate Search with JDK15
* HSEARCH-3798 Test sorting on numeric fields without specifying missing value behavior
* HSEARCH-3795 Get rid of Version.logVersion()
* HSEARCH-3794 Break down large files in the documentation source into multiple, smaller files
* HSEARCH-3792 Fix warnings issued when starting Elasticsearch in integration tests
* HSEARCH-3790 Upgrade to Elasticsearch 5.6.16
* HSEARCH-3773 Simplify how HibernateOrmMappingContext/HibernateOrmSessionContext are implemented
* HSEARCH-3746 IndexWorkspacePurgeIT fails on windows
* HSEARCH-3171 Test using CDI beans referenced by their name
6.0.0.Beta3 (13-12-2019)
-------------------------
** Bug
* HSEARCH-3783 query.explain() with the Elasticsearch backend fails when using projections or multi-tenancy
* HSEARCH-3755 Configuration property checking displays the wrong name for the property controlling its behavior
* HSEARCH-1799 FullTextQueryImpl raises java.sql.QueryTimeoutException
** Improvement
* HSEARCH-3788 Use a simpler prefix for metadata fields in Elasticsearch
* HSEARCH-3784 Avoid storing the index name in the index for each document
* HSEARCH-3766 Provide simple annotations for applying binders to types/properties
* HSEARCH-3764 Allow disabling conversion in the ID predicate
* HSEARCH-3761 Use GSON rather than strings to pass JSON objects around in Elasticsearch APIs
* HSEARCH-3758 Upgrade to Lucene 8.3.0
* HSEARCH-3757 Configure the protocol used to contact Elasticsearch separately
* HSEARCH-3756 Use commas instead of blanks as separators for multi-valued properties
* HSEARCH-3712 Simplify the definition of DSL converters and projection converters
* HSEARCH-3657 Switch to docvalues instead of stored fields for Hibernate Search metadata in Lucene/ES documents
* HSEARCH-3634 Clarify the error message when a @Transient property is missing a @IndexingDependency annotation
* HSEARCH-3456 Expose meta-information about the query execution (execution time, timeout, ...)
* HSEARCH-2389 Support "exists" predicate for @IndexedEmbedded
** New Feature
* HSEARCH-3765 Add minimal support for Index Aliases
* HSEARCH-3662 Define aggregations from JSON with Elasticsearch
* HSEARCH-3496 Customization of Elasticsearch search requests
* HSEARCH-3135 Allow the definition of domain specific annotations for ValueBridges
* HSEARCH-2399 Implement timeouts for the Elasticsearch backend
* HSEARCH-1401 Allow integrators to declare entities whose structure is defined programmatically ("free-form")
** Sub-task
* HSEARCH-3711 Document index field type DSL extension
** Task
* HSEARCH-3782 Upgrade to Elasticsearch 7.5.0
* HSEARCH-3781 Upgrade to Hibernate ORM 5.4.10.Final
* HSEARCH-3780 Fix random failures in ElasticsearchClientFactoryImplIT
* HSEARCH-3770 Upgrade to elasticsearch-maven-plugin 6.15
* HSEARCH-3763 Upgrade to Hibernate ORM 5.4.9.Final
* HSEARCH-3754 Upgrade to Hibernate ORM 5.4.8.Final
* HSEARCH-3753 Mark the ContainerExtractor API as experimental
* HSEARCH-3750 Use auto-expanding entries in the documentation TOC
* HSEARCH-3748 Remove the bridge-based programmatic mapping APIs for TypeBridge, PropertyBridge and RoutingKeyBridge
* HSEARCH-3737 Test against AWS-hosted ES 7.1
* HSEARCH-3732 Add a timeout to the Jenkins build configuration
* HSEARCH-3717 Allow the use of native field types in ValueBridge
* HSEARCH-3716 Mitigate test failures caused by automatic snapshots of AWS-managed Elasticsearch service
* HSEARCH-3693 Search 6 groundwork Restore missing log messages from Search 5 in Search 6
* HSEARCH-3352 Search 6 groundwork - Restore support for search query timeouts
6.0.0.Beta2 (25-10-2019)
-------------------------
** Bug
* HSEARCH-3736 Lucene startup creates an unnecessary IndexWriter
* HSEARCH-3734 Configuration property hibernate.search.reflection.strategy is ignored
* HSEARCH-3733 BatchExecutor sometimes forgets to schedule the processor since HSEARCH-3084
* HSEARCH-3727 Elasticsearch orchestrators do not wait for single-work worksets to finish with ElasticsearchParallelWorkProcessor
* HSEARCH-3726 Exceptions are not propagated from the Elasticsearch backend to the mapper when using IndexingPlan or automatic indexing
* HSEARCH-3725 IllegalStateException thrown by Gson while encoding Elasticsearch requests
* HSEARCH-3684 @IndexedEmbedded.includePaths includes fields one level too deep in some cases
* HSEARCH-1108 programmatic API doesn't work correctly for entities with @MappedSuperclass parent
* HSEARCH-3740 ValueReadHandle fails to report exceptions if the call to entity.toString() fails
** Improvement
* HSEARCH-3741 Expose the index name in IndexFailureContext
* HSEARCH-3735 Report failures in work executions only once, at the mapper level
* HSEARCH-3730 Upgrade to Hibernate ORM 5.4.6
* HSEARCH-3728 All background operations should propagate exceptions from the mapper to the user thread
* HSEARCH-3724 Upgrade to Jackson 2.9.10
* HSEARCH-3723 Upgrade to Elasticsearch 7.4.0
* HSEARCH-3720 Rename the mapper-pojo artifact to make it clearer that it's just an abstract base
* HSEARCH-3694 Support distance sorts on single-valued fields in nested documents
* HSEARCH-3640 Expose backends/indexes through the ORM mapper APIs
* HSEARCH-3193 Search 6 groundwork - Contribute descending sort support for Lucene's LatLonPointSortField
** New Feature
* HSEARCH-3042 Allow the definition of one "search" analyzer per field as part of the mapping
** Sub-task
* HSEARCH-1375 Improve design of ErrorHandler
* HSEARCH-1353 Document the expected behaviour of ErrorHandler
** Task
* HSEARCH-3745 Fix test failures on AWS related to PUT /_cluster/settings
* HSEARCH-3744 Upgrade integration tests to Spring 2.2.0
* HSEARCH-3743 Generate Java 13/14 bytecode for tests when building with JDK13/14
* HSEARCH-3742 Upgrade to Hibernate ORM 5.4.7.Final
* HSEARCH-3739 Test MassIndexer interruption/cancellation and fix it if necessary
* HSEARCH-3722 Fix the artifact ID of the ORM mapper integration tests module
* HSEARCH-3721 Remove deprecated methods that were already present in 6.0.0.Beta1
* HSEARCH-3653 Run Elasticsearch in JDK11 by default in the Jenkinsfile
* HSEARCH-3486 Upgrade to forbiddenApis 2.7 and configure JDK12/13 signatures
* HSEARCH-3110 Search 6 groundwork - Restore support for ErrorHandler
* HSEARCH-3084 Initialize and close index managers / backends in parallel
6.0.0.Beta1 (23-09-2019)
-------------------------
** Bug
* HSEARCH-3670 Cannot index java.util.Date property when the value is a java.sql.Date
* HSEARCH-2224 Indexing of collection of basic types not documented
** Improvement
* HSEARCH-3708 Simplify the syntax of the range predicate DSL by leveraging the Range class
* HSEARCH-3707 Swap the limit and offset parameters in SearchQuery.fetch(Integer, Integer)
* HSEARCH-3706 Upgrade to Hibernate ORM 5.4.5.Final
* HSEARCH-3705 Use the entity name instead of the class name as default index name
* HSEARCH-3671 Make SearchScope session-independent
* HSEARCH-3669 Rename fetch()/fetchHits() methods in Query APIs to fetchAll/fetchAllHits
* HSEARCH-3667 Make Hibernate Search be compatible with Envers
* HSEARCH-3659 Manage the version of Jackson to the latest available version
* HSEARCH-3623 Harmonize the syntax of analysis definition DSLs
* HSEARCH-3606 Revisit the names of "SearchWriter" and "SearchSessionWritePlan"
* HSEARCH-3564 Refactoring to update code to make use of Java 8 features (and other..)
* HSEARCH-2254 Support (single-valued) sorts on fields within nested fields
* HSEARCH-1347 Apply package naming rules consistently
** Remove Feature
* HSEARCH-3691 Remove the ability to use @GeoPointBinding on properties of type GeoPoint
** Sub-task
* HSEARCH-3692 Document custom bridges
* HSEARCH-3681 Document the MassIndexer
* HSEARCH-3679 Document container value extractors
* HSEARCH-3676 Document mapping in details
* HSEARCH-3675 Document core concepts
* HSEARCH-3674 Document analysis
* HSEARCH-3673 Document @IndexedEmbedded
* HSEARCH-3649 Add initial support for simple aggregations (count by value, count by range)
* HSEARCH-3615 Document the query DSL in details
* HSEARCH-2954 Faceting for the Java 8 date/time types
* HSEARCH-2472 Change facet mapping to allow for broader encoding selection
* HSEARCH-2446 Allow Numeric Faceting from FieldBridge
* HSEARCH-2111 FacetRange and RangeFacet need some love
* HSEARCH-1748 Validate preconditions of a field to allow a FacetingRequest
* HSEARCH-1372 Normalize names in faceting API
** Task
* HSEARCH-3715 Restore support for custom mass indexing monitors
* HSEARCH-3714 Restore temporary, SPI-only support for error handlers
* HSEARCH-3713 Upgrade maven-checkstyle-plugin to 3.1.0
* HSEARCH-3704 Use less alarming wording in warnings about 6 being work in progress
* HSEARCH-3702 Upgrade to JBoss logging 3.4.0.Final
* HSEARCH-3697 Test Hibernate Search on JDK13 regularly on the CI
* HSEARCH-3690 Add a default identifier bridge for type String
* HSEARCH-3687 Add self types to DSL interfaces to make overrides by backends easier
* HSEARCH-3686 Upgrade to a staging version of ECJ 3.19.0 to work around Eclipse compiler bugs in 3.18.0
* HSEARCH-3685 Always include -Infinity/+Infinity in Range.of
* HSEARCH-3665 Use the method AutoFlushEvent#isFlushRequired to filter auto flush events
* HSEARCH-3441 Search 6 groundwork - Improve naming consistency of DSL/builder methods
* HSEARCH-3271 Search 6 groundwork - Restore support for faceting
* HSEARCH-3270 Search 6 groundwork - Document the main features of Hibernate Search 6
* HSEARCH-859 Review names and composition of configuration properties
6.0.0.Alpha9 (23-08-2019)
-------------------------
** Bug
* HSEARCH-3644 ORM warning on bootstrap: HHH000450: Encountered request for Service by non-primary service role
* HSEARCH-3643 Entities should be unproxied before getting field values when indexing
* HSEARCH-3551 Hibernate Search doesn't boot when declared as a dependency in a module-info.java
* HSEARCH-1350 Sequence of flush(); clear(); commit(); can lead to LazyInitializationException
** Improvement
* HSEARCH-3660 Upgrade to Elasticsearch 7.3.0
* HSEARCH-3651 Do not specify a type in Elasticsearch _explain requests
* HSEARCH-3648 Upgrade to Hibernate ORM 5.4.4
* HSEARCH-3646 Upgrade to Lucene 8.2
* HSEARCH-3642 Merge the DslConverter and ProjectionConverter enums into one
* HSEARCH-3612 Normalize the terms to match in wildcard/prefix predicates
* HSEARCH-3447 Replace uses of deprecated Hibernate criteria with JPA criteria
* HSEARCH-3360 Correctly handle the flush() and clear() events in the ORM integration
* HSEARCH-1270 Clear the pending indexing tasks at Session.clear()
* HSEARCH-899 Check for illegal usage of @IndexedEmbedded
** Task
* HSEARCH-3658 Upgrade to AWS Elasticsearch Service 6.7 in the Jenkinsfile
* HSEARCH-3656 Update mapper ORM documentation chapter: writeplan API process is no longer necessary
* HSEARCH-3652 Refresh Jenkinsfiles to match the new CI environment
* HSEARCH-3314 Search 6 groundwork - Restore support for (static) sharding
* HSEARCH-3075 Search 6 groundwork - Release WorkPlan resources when a transaction is rolled back
* HSEARCH-3068 Search 6 groundwork - Restore support for "simulated" transaction using a Flush listener
* HSEARCH-3062 Search 6 groundwork - Support (single-valued) projections on fields within nested object fields
6.0.0.Alpha8 (19-07-2019)
-------------------------
** Bug
* HSEARCH-3641 Some attributes for native Elasticsearch fields are restricted to values known by Hibernate Search
** Improvement
* HSEARCH-3637 Upgrade to Lucene 8.1.1
* HSEARCH-3627 Upgrade to Elasticsearch 6.8.1
* HSEARCH-3625 Upgrade to Elasticsearch 7.2.0
* HSEARCH-3607 Allow using @GenericField on GeoPoint properties instead of @GeoPointBinding (previously @Spatial)
* HSEARCH-3602 Use the "Step" suffix instead of the "Context" suffix in DSLs
** Task
* HSEARCH-3638 Improve test utils (SearchSetupHelper, OrmSetupHelper, ...) to allow sharding tests
* HSEARCH-3626 Fix order requirements in various backend integration tests
* HSEARCH-3624 Move ConfigurationPropertySource to SPI
* HSEARCH-3621 Clarify the error message when the Elasticsearch cluster cannot be reached upon startup
* HSEARCH-3609 Search 6 groundwork - Replace bridge builders with *binders*
* HSEARCH-3440 Search 6 groundwork - Finalize the lucene DirectoryProvider SPI
* HSEARCH-3349 Search 6 groundwork - Restore ORM object loading with the same feature coverage as Search 5
6.0.0.Alpha7 (21-06-2019)
-------------------------
** Bug
* HSEARCH-3618 Distance projection may lead to missing hits in the Lucene and Elasticsearch backends
* HSEARCH-1467 indexEmbedded depth parameter shared across class
** Improvement
* HSEARCH-3616 Accept Collection<?> instead of Collection<Object> in the ID predicate
* HSEARCH-3614 Allow integrators to opt out of using MethodHandles completely
* HSEARCH-3611 Add support for Elasticsearch 6.8
* HSEARCH-3605 Use a consistent strategy to decide on the package hosting each annotation
* HSEARCH-3604 Replace PojoReference with mapper-specific types
* HSEARCH-3595 Upgrade to Hibernate ORM 5.4.3.Final
* HSEARCH-3591 Expect a function as parameter for SearchQueryContext#sort
* HSEARCH-3255 Handle .onMissingValue().use() properly for date fields in Elasticsearch
* HSEARCH-3254 Handle .onMissingValue().use() properly for string fields in Lucene
* HSEARCH-2539 Return a CompletableFuture instead of a Future from MassIndexer.start()
** New Feature
* HSEARCH-3592 Upgrade to Elasticsearch 7.1
** Sub-task
* HSEARCH-3601 Fix a few typos and quirks in the documentation
* HSEARCH-3597 Document all available predicates/sorts/projections and query DSL basics
* HSEARCH-3373 Search 6 groundwork - Add javadoc to backend-specific APIs
* HSEARCH-3372 Search 6 groundwork - Add javadoc to remaining POJO mapper APIs
* HSEARCH-3371 Search 6 groundwork - Add javadoc to the ORM mapper APIs
* HSEARCH-3370 Search 6 groundwork - Add javadoc to the remaining engine APIs
* HSEARCH-3369 Search 6 groundwork - Add javadoc to the POJO bridge APIs
** Task
* HSEARCH-3620 Add experimental build environments for JDK14
* HSEARCH-3619 Clean up the code in org.hibernate.search.mapper.pojo.mapping.impl
* HSEARCH-3617 Search 6 groundwork - Remove the by(SearchSort) method from the sort DSL
* HSEARCH-3610 Search 6 groundwork - Rename Search.getSearchSession(Session) to Search.session(Session)
* HSEARCH-3603 Swap the names of BeanResolver and BeanProvider
* HSEARCH-3588 Clean up TODOs in the code
* HSEARCH-3587 Rename MarkerMapping#builder to MarkerMapping#marker
* HSEARCH-3586 Document the BigInteger and BigDecimal field types in the documentation of the Lucene and Elasticsearch backends
* HSEARCH-3367 Search 6 groundwork - Restore the javadoc on all APIs
* HSEARCH-3230 Search 6 groundwork - Clarify the behavior of Lucene GeoPoint field codecs with respect to searchable/sortable/projectable
* HSEARCH-3203 Search 6 groundwork - Restore support for non-@Id document IDs in the ORM integration
* HSEARCH-3192 Allow "caching" predicates/sorts/projections for re-use
* HSEARCH-3077 Search 6 groundwork - Check that Marker/Bridge builders instances are suitable for the annotation before initializing them
* HSEARCH-3076 Search 6 groundwork - Check that IdentifierBridges are suitable for the property type before applying them
* HSEARCH-3074 Search 6 groundwork - Avoid depending on internal Hibernate ORM types
* HSEARCH-3067 Search 6 groundwork - Remove the notion of explicit initialization of lazy collection/map/array initialization
* HSEARCH-3049 Search 6 groundwork - Implement the missing work types compared to Search 5 (except DeleteByQuery)
* HSEARCH-3048 Search 6 groundwork - Add the missing common field type options compared to Search 5
* HSEARCH-3046 Search 6 groundwork - Avoid the use of java.beans.Introspector in the mapper-javabean module
* HSEARCH-2473 Get test naming practices straight
6.0.0.Alpha6 (24-05-2019)
-------------------------
** Bug
* HSEARCH-3581 Indexing entities whose bytecode was enhanced by Hibernate ORM fails to load lazy properties
* HSEARCH-3579 Failing to boot the ORM integration no longer throws an exception
* HSEARCH-3571 Extra type name parameters trigger warnings in ES6.7+
* HSEARCH-3539 LuceneDistanceToFieldProjection is not thread safe
* HSEARCH-3213 @Spatial bridge set at type level are applied regardless of @IndexedEmbedded.includePaths
* HSEARCH-2663 Null handling for elements in container bridges isn't consistent with non-container bridges
** Improvement
* HSEARCH-3578 Make the call to asXXX() (asEntity, asReference) optional in the Search DSL
* HSEARCH-3574 Rename ElasticsearchJsonStringIndexFieldTypeContext to ElasticsearchNativeIndexFieldTypeContext
* HSEARCH-3573 Use consistent naming for hits and projections
* HSEARCH-3572 Add fetch methods to terminal steps of the query DSL
* HSEARCH-3536 Use Analyzer.normalize instead of our own code for normalization
* HSEARCH-3475 Make automatic indexing configuration properties clearer
* HSEARCH-3463 Make APIs clearer about the fact automatic extractor resolution is an "all or nothing"
* HSEARCH-1857 Throw exceptions on usage of a FullTextSession whose underlying Session is closed
* HSEARCH-1667 Create an optimised IndexManager meant for asynchronous processing of remote index updates
* HSEARCH-1214 Review SearchFactory initialization
** New Feature
* HSEARCH-3487 Support java.math.BigDecimal and java.math.BigInteger as field types
* HSEARCH-3316 Allow to configure whether indexing in the ORM mapper should be synchronous or asynchronous
** Remove Feature
* HSEARCH-3577 Remove support for longs when specifying the limit/offset of a Search query
* HSEARCH-1645 Drop @ProvidedId annotation
** Task
* HSEARCH-3585 Upgrade AWS-Elasticsearch tests to ES 6.5
* HSEARCH-3582 Ensure the code is compatible with the Eclipse compiler as part of integration tests
* HSEARCH-3570 Switch to XML format for JaCoCo reports
* HSEARCH-3569 Adapt the build to JDK11.0.3
* HSEARCH-3544 Allow extensions at the top level of the query DSL
* HSEARCH-3353 Search 6 groundwork - Restore support for search hit explanation
* HSEARCH-3324 Keep track of which field may be multi-valued and force bridges to declare fields as such
* HSEARCH-3118 Search 6 groundwork - Restore the full orchestration (queues, threadpools) from Search 5 and remove the explicit commits in LuceneIndexWorker
* HSEARCH-1777 Clarify the documentation on automatic indexing
6.0.0.Alpha5 (30-04-2019)
-------------------------
** Bug
* HSEARCH-3566 Reindexing is not triggered when an association mentioned in an IndexingDependency.derivedFrom is updated
* HSEARCH-3561 "transpositions" setting is ignored for FuzzyQuery in the Elasticsearch integration
* HSEARCH-3559 Obsolete hibernate.search.indexes.<index name> syntax for property keys in the documentation
* HSEARCH-3552 Field type compatibility checks ignore the analyzer
* HSEARCH-3535 Parameters are inverted in minimumShouldMatch error message
* HSEARCH-3534 Default value for "minimumShouldMatch" is different between Elasticsearch and Lucene
** Improvement
* HSEARCH-3563 Simpler dialect configuration
* HSEARCH-3541 Upgrade to Elasticsearch 7.0.0 (release)
* HSEARCH-3518 Add support for Elasticsearch 6.7
* HSEARCH-2941 MassIndexerProgressMonitor should consitently use long types
** New Feature
* HSEARCH-3297 Add an API to declare reindexing conditions in bridges
* HSEARCH-1656 Recognize annotations from implemented interfaces
** Remove Feature
* HSEARCH-3553 Remove support for "default" null tokens
* HSEARCH-2465 Drop support for @IndexedEmbedded.indexNullAs
** Task
* HSEARCH-3568 Upgrade to Elasticsearch 6.7.1
* HSEARCH-3547 Use different times for LocalDateTime and OffsetDateTime values used in backend TCK
* HSEARCH-3467 Add tests for all the attributes validated by the Elasticsearch schema validator
* HSEARCH-3298 Search 6 groundwork - Mark the accessor-based entity access API and explicit reindexing declaration API in bridges as experimental
* HSEARCH-3099 Search 6 groundwork - Restore support for "indexNullAs" in @Field
* HSEARCH-3058 Search 6 groundwork - Add generic type parameters to PropertyHandle
6.0.0.Alpha4 (04-04-2019)
-------------------------
** Bug
* HSEARCH-3557 ZonedDateTime at later offset during DST change gets parsed incorrectly
* HSEARCH-3554 The Elasticsearch backend defaults to a 10 element hit limit
* HSEARCH-3549 Indexing MonthDay.of( 2, 29 ) fails on Elasticsearch
* HSEARCH-3548 ZonedDateTime with zone = ZoneOffset.UTC fails when indexing in Elasticsearch 5.6
* HSEARCH-3546 SearchException is missing from the javadoc
* HSEARCH-3540 The NONE Elasticsearch index lifecycle strategy throws an AssertionFailure
* HSEARCH-3538 Disabling projection converters in projections is ignored when checking compatibility
* HSEARCH-2423 Projecting an unstored field should raise an exception with Elasticsearch
* HSEARCH-2185 Phrase query with the DSL does not consider the `ignoreAnalyzer()` options
** Improvement
* HSEARCH-3555 Document the range of years supported by each backend for date/time types
* HSEARCH-3543 Allow to set GeoPointBridges as sortable to enable distance sorts
* HSEARCH-3521 Move index-specific configuration properties below the hibernate.search.backends.<backend name>.indexes property
* HSEARCH-3510 Change the syntax of predicates/sorts on raw fields from onRawField(...).matching() to onField(...).matchingRaw()?
* HSEARCH-3507 Improve consistency of naming for methods related to native Elasticsearch/Lucene features (fromJsonString, etc.)
* HSEARCH-2757 Allow usage of FieldSelectors when using Spatial indexing
** New Feature
* HSEARCH-3312 Allow analyzer/normalizer overrides on a per-predicate basis
* HSEARCH-2534 Allow using query-only analyzer definitions with Elasticsearch
* HSEARCH-2518 Allow to assign a name to an analyzer class/instance
* HSEARCH-2464 Add support for "missing"/"exists" predicates
** Task
* HSEARCH-3550 Fix the many problems of java module integration tests
* HSEARCH-3542 Fix transient failures in OrmLibraryShowcaseIT#searchAroundMe_spatial
* HSEARCH-3533 Upgrade to Hibernate ORM 5.4.2
* HSEARCH-3532 Fix the java module name for hibernate-search-util-common
* HSEARCH-3531 Upgrade to Lucene 8.0.0
* HSEARCH-3530 Update the date formats in the reference documentation
* HSEARCH-3375 Fail the build on javadoc warnings
* HSEARCH-3070 Remove the concept of ServiceManager
* HSEARCH-3051 Search 6 groundwork - Restore the Elasticsearch AWS integration
6.0.0.Alpha3 (21-03-2019)
-------------------------
** Bug
* HSEARCH-3529 MassIndexer fails for entities with primitive ID type
* HSEARCH-3477 Wrong incompatible types error when query a full text field across different indexes on Lucene backend
* HSEARCH-2908 Incorrect mapping for 'java.lang.Short and java.lang.Byte' fields with Elasticsearch.
* HSEARCH-1640 boolean field should never be analyzed
** Improvement
* HSEARCH-3511 Make the entry points to the Search API more intuitive
* HSEARCH-3509 Document the limitations of the date/time conversion in the Pojo mapper for java.util.Calendar and java.util.Date
* HSEARCH-3503 Add dedicated default value bridges for java.sql.Timestamp, java.sql.Date and java.sql.Time
* HSEARCH-3498 Move optional predicate DSL parameters to the terminal contexts
* HSEARCH-3444 Reduce the verbosity of the predicate/projection/sort DSLs and index schema DSL
* HSEARCH-3251 Avoid "fuzzy" query in Elasticsearch and prefer "match" query with "fuzziness" parameter
* HSEARCH-2658 Support @Inject in most (if not all?) non-service customizable classes
* HSEARCH-2088 Take advantage of ORM's capability of MultiLoading by list of IDs
** New Feature
* HSEARCH-3526 Allow to specify the Elasticsearch dialect to use explicitly
* HSEARCH-3523 Allow integrators to pre-build Hibernate Search from Metadata + service registry, without a SessionFactory
* HSEARCH-3257 Allow to bypass bridges in projections
** Remove Feature
* HSEARCH-3403 Remove the inheritance from FullTextQuery/FullTextSession to the corresponding Hibernate ORM types
* HSEARCH-2248 Remove deprecated threshold method for fuzzy queries from the DSL
** Task
* HSEARCH-3525 Allow Quarkus to switch our ProperyHandles to using java.lang.reflect instead of MethodHandles
* HSEARCH-3524 Avoid the use of Hibernate ORM's Metamodel object during boot (use Metadata instead)
* HSEARCH-3520 Upgrade to Elasticseearch 6.6.2
* HSEARCH-3515 Upgrade to checkstyle 8.18 and maven-checkstyle-plugin 3.0.0
* HSEARCH-3514 Search 6 groundwork - add automatic Java module names and test them
* HSEARCH-3494 Allow to build the javadoc with JDK12
* HSEARCH-3493 Test compatibility with JDK13
* HSEARCH-3490 Add experimental support for Elasticsearch 7.0.0.beta1
* HSEARCH-3489 Improve the error message when the inverse side of an association cannot be found by Hibernate Search
* HSEARCH-3485 Test compatibility with JDK12
* HSEARCH-3484 Use Maven 3.6.0 in the Jenkinsfile
* HSEARCH-3483 Upgrade to Lucene 7.7.0
* HSEARCH-3482 Adjust some configuration property names in the Elasticsearch backend
* HSEARCH-3481 Change max_connections_per_route default value to 10
* HSEARCH-3480 Rename fromExternalRepresentation() to of() for enums used in the configuration
* HSEARCH-3478 Fix bugs, vulnerabilities and code smells detected by Sonar - 20190206
* HSEARCH-3474 Do not deploy the distribution module to Maven
* HSEARCH-3473 Search 6 groundwork - Document the configuration options in Search 6
* HSEARCH-3468 Restore the ability for the Elasticsearch schema validation to report errors across multiple indexes
* HSEARCH-3445 Search 6 groundwork - Restore support for query result caching
* HSEARCH-3425 Clean up Java compiler warnings inherited from the Search 6 prototype
* HSEARCH-3424 Clean up the showcases to turn it into a full-stack ORM integration test suite
* HSEARCH-3315 Search 6 groundwork - Move publicly exposed util types to a dedicated module
* HSEARCH-3295 Search 6 groundwork - Invert the syntax of accessors
* HSEARCH-3256 Search 6 groundwork - Restore support for bypassing bridges in the predicate/sort DSL
* HSEARCH-3091 Search 6 groundwork - Add to the predicate DSL the missing per-predicate options compared to Search 5
* HSEARCH-3089 Search 6 groundwork - Add to the DSL the missing query predicates (excluding spatial, faceting, moreLikeThis) compared to Search 5
* HSEARCH-3080 Search 6 groundwork - Find out how to use type names in the Elasticsearch mapping
* HSEARCH-3054 Search 6 groundwork - Restore the Elasticsearch dialect support
* HSEARCH-3047 Search 6 groundwork - Implement the missing field types and default bridges compared to Search 5
6.0.0.Alpha2 (31-01-2019)
-------------------------
** Bug
* HSEARCH-3462 SimpleIndexingProgressMonitor stops logging as soon as the number of indexed document stops being a multiple of the logging period
** Improvement
* HSEARCH-3466 Add the number of objects in the payload in the Elasticsearch request log
* HSEARCH-3464 Use consistent naming for *Settings class with respect to Maven modules
* HSEARCH-3454 Upgrade to Lucene 7.6.0
* HSEARCH-3453 Execute blocking search result processing in another thread than the one used for HTTP requests
* HSEARCH-3451 Make the index defaults backend-scoped
* HSEARCH-3429 Add a lambda-based syntax to the projection DSL
* HSEARCH-3421 Support for ID predicates when multi-tenancy is enabled
* HSEARCH-3416 Use ID bridges from the mapper when building ID predicates
* HSEARCH-3174 Allow non-String values in environment configuration
** Task
* HSEARCH-3472 Upgrade to Elasticsearch 6.6.0
* HSEARCH-3470 Upgrade Hibernate ORM to 5.4.1.Final
* HSEARCH-3455 Add a way to test the JSON sent to the Elasticsearch cluster
* HSEARCH-3450 Search 6 groundwork - Use a consistent naming scheme for the configuration properties added in Search 6 so far
* HSEARCH-3449 Fix random test failures caused by improper mocking of ObjectLoader
* HSEARCH-3448 Move all classes related to test configuration/utils/etc to "testsupport" packages
* HSEARCH-3446 Search 6 groundwork - Clean up and factorize code around converters and type-specific features in backends
* HSEARCH-3442 Search 6 groundwork - Properly handle missing backend / backend type in configuration properties
* HSEARCH-3438 Make references to value bridges and container value extractors in the mapping cleaner and simpler
* HSEARCH-3433 Upgrade to Hibernate ORM 5.4.0.Final
* HSEARCH-3410 Upgrade to ORM 5.4.0.CR2 + HCANN 5.1.0.Final
* HSEARCH-3386 Search 6 groundwork - Make bean references easier to use in configuration properties
* HSEARCH-3376 Remove the explicit dependency to JAXB/javax.xml.bind from the ORM modules when building with JDK9+
* HSEARCH-3374 Search 6 groundwork - Restore the Search 5 syntax for including/excluding bounds in range predicates
* HSEARCH-3351 Search 6 groundwork - Restore support for FullTextQuery.getResultSize()
* HSEARCH-3291 Search 6 groundwork - Split the field definition API in two: encoding definition and field definition
* HSEARCH-3268 Search 6 groundwork - Restore support for the massindexer
* HSEARCH-3170 Implement CDI/Spring bean releasing more cleanly
* HSEARCH-3101 Search 6 groundwork - Support aliases for backend factories
* HSEARCH-3086 Search 6 groundwork - Add the missing non-field projections compared to Search 5
* HSEARCH-3053 Search 6 groundwork - Restore the full Elasticsearch work factory/orchestrators from Search 5
* HSEARCH-3052 Search 6 groundwork - Restore the Elasticsearch index schema management strategies (validation, ...)
6.0.0.Alpha1 (28-11-2018)
-------------------------
** Bug
* HSEARCH-3389 Fix bugs in the Lucene backend when maxResults is set to 0
* HSEARCH-3267 Restore option to run WildFly integration tests against manually prepared distribution
* HSEARCH-3216 Deprecated API usage in example Implementing a class bridge
* HSEARCH-3215 Reference guide typos
* HSEARCH-3212 Class bridges are applied regardless of @IndexedEmbedded.includePaths
* HSEARCH-3167 Exceptions may not be reported in the right order when internals use Closer.split
* HSEARCH-3163 On bootstrap failure the SessionFactory is closed without propagating the root cause
* HSEARCH-3148 Search 6 groundwork - Lucene - Support bool() predicate with only mustNot() predicates
* HSEARCH-2554 Using array/iterable/map field bridges requires the @IndexedEmbedded annotation (second attempt)
* HSEARCH-2552 @IndexedEmbedded.includePaths should not allow to pick paths that were excluded from the embedded entity
* HSEARCH-2490 SortedMap is not supported for MapFieldBridge and IndexedEmbeddeds
* HSEARCH-2328 Code examples in the documentations are not automatically checked for correctness
* HSEARCH-2194 Handling of @IndexedEmbedded not working correctly for multi-level hierarchies
* HSEARCH-1710 Child collection being unnecessarily initialized through @ContainedIn
* HSEARCH-1394 SPI shouldn't expose impl types
* HSEARCH-1357 Remove LuceneOptions from the FieldBridge#set(String, Object, Document, LuceneOptions ) signature
* HSEARCH-383 Hibernate Search does not respect the @AccessType annotation in respect to @Id fields.
** Improvement
* HSEARCH-3401 Merge the two "Search" classes into one
* HSEARCH-3395 Make the .reference() and .object() projections type-safe in the Projection DSL
* HSEARCH-3310 Split the @Field annotation into multiple, type-specific annotations
* HSEARCH-3287 Change the syntax of index configuration properties from h.s.index.myIndex.someProperty to h.s.indexes.myIndex.someProperty
* HSEARCH-3234 Upgrade to ORM 5.3.3
* HSEARCH-3233 Overriding an analyzer in the queryBuilder with an unknown analyzer should lead to a proper SearchException
* HSEARCH-3227 Upgrade to Elasticsearch 6
* HSEARCH-3211 Upgrade to ORM 5.3.2
* HSEARCH-3210 Upgrade to HCANN 5.0.4.Final
* HSEARCH-3208 Add advanced, conditional syntax to set the minimum number of should clauses required to match for boolean predicates in the DSL
* HSEARCH-3197 Allow to set the minimum number of should clauses required to match for boolean predicates in the DSL
* HSEARCH-3182 Sort Hibernate ORM metadata before processing it
* HSEARCH-3168 JBoss Modules should not use the deprecated module of Hibernate ORM
* HSEARCH-3164 Search 6 groundwork - Do not create unnecessary identifier/routingKey bridges for @IndexedEmbeddeds
* HSEARCH-3145 Rename the all() predicate to matchAll()
* HSEARCH-3139 Avoid SPIs leaking into APIs
* HSEARCH-2847 Comply with Hibernate ORM's access mode in @Spatial bridges
* HSEARCH-2765 Rename the SearchFactory API
* HSEARCH-2759 Handle private/protected field access for @Spatial fields
* HSEARCH-2756 Improve naming schemes of Elasticsearch configuration properties