[JBoss JIRA] (ISPN-12409) Add missing GAV to infinispan-bom
by Pedro Ruivo (Jira)
Pedro Ruivo created ISPN-12409:
----------------------------------
Summary: Add missing GAV to infinispan-bom
Key: ISPN-12409
URL: https://issues.redhat.com/browse/ISPN-12409
Project: Infinispan
Issue Type: Task
Reporter: Pedro Ruivo
Assignee: Pedro Ruivo
Fix For: 12.0.0.Dev05, 11.0.5.Final
The following artifacts are missing:
* infinispan-component-processor
* infinispan-hibernate-commons
The following artifact needs to be removed:
* infinispan-defaults-maven-plugin
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
4 years
[JBoss JIRA] (ISPN-12275) Restore support for @Field(analyzer = ...) and @Field(normalizer = ...)
by Yoann Rodière (Jira)
[ https://issues.redhat.com/browse/ISPN-12275?page=com.atlassian.jira.plugi... ]
Yoann Rodière updated ISPN-12275:
---------------------------------
Git Pull Request: https://github.com/infinispan/infinispan/pull/8757
> Restore support for @Field(analyzer = ...) and @Field(normalizer = ...)
> -----------------------------------------------------------------------
>
> Key: ISPN-12275
> URL: https://issues.redhat.com/browse/ISPN-12275
> Project: Infinispan
> Issue Type: Task
> Components: Embedded Querying
> Reporter: Yoann Rodière
> Priority: Major
> Fix For: 12.0.0.Dev05
>
>
> In Infinispan 11 (Hibernate Search 5.10/5.11), it used to be possible to assign an analyzer or normalizer to a field with the following syntax:
> {code}
> @Field(analyzer = @Analyzer(definition = "myAnalyzer"))
> private String myProperty;
> @Field(analyzer = @Normalizer(definition = "myNormalizer"))
> private String myProperty;
> {code}
> It seems that we made a mistake during the upgrade to Search 6, and support for this syntax was removed. All that's left is the property-scoped syntax, where the analyzer is defined next to the field:
> {code}
> @Field
> @Analyzer(definition = "myAnalyzer")
> private String myProperty;
> {code}
> If we want to provide at least partial backward compatibility in annotations, we should restore support for the former syntax (and keep the latter).
> For the record, analyzer assigned using the former syntax take precedence over analyzers assigned using the latter.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
4 years