Skip to content
Snippets Groups Projects
Commit b6a9fabe authored by Vincent Massol's avatar Vincent Massol
Browse files

[release] Removed revapi ignores from the previous version

parent 4d9e0540
No related branches found
No related tags found
No related merge requests found
......@@ -152,81 +152,6 @@
},
"ignore" : [
// Add more ignores below...
{
"code": "java.class.nonFinalClassInheritsFromNewClass",
"old": "class org.xwiki.rendering.macro.rss.RssMacroParameters",
"new": "class org.xwiki.rendering.macro.rss.RssMacroParameters",
"superClass": "org.xwiki.rendering.macro.box.BoxMacroParameters",
"justification": "As RssMacro now inherits from AbstractBoxMacro, its parameter class needs to
inherits from BoxMacroParameters. This could only break compatibility if a class inheriting from
RssMacroParameters defines a method with same name and parameters than in BoxMacroParameters but
different return type. We consider this risk as acceptable since the chances are very low and in
case it occurs, the fix for the user would be easy."
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::deleteFilterPreference(java.lang.String) throws org.xwiki.notifications.NotificationException",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::deleteFilterPreference(org.xwiki.model.reference.DocumentReference, java.lang.String) throws org.xwiki.notifications.NotificationException",
"justification": "Bad design at fist attempt"
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::saveFilterPreferences(java.util.Set<org.xwiki.notifications.filters.NotificationFilterPreference>)",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::saveFilterPreferences(org.xwiki.model.reference.DocumentReference, java.util.Set<org.xwiki.notifications.filters.NotificationFilterPreference>)",
"justification": "Bad design at fist attempt"
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::setFilterPreferenceEnabled(java.lang.String, boolean) throws org.xwiki.notifications.NotificationException",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceManager::setFilterPreferenceEnabled(org.xwiki.model.reference.DocumentReference, java.lang.String, boolean) throws org.xwiki.notifications.NotificationException",
"justification": "Bad design at fist attempt"
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::deleteFilterPreference(java.lang.String) throws org.xwiki.notifications.NotificationException",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::deleteFilterPreference(org.xwiki.model.reference.DocumentReference, java.lang.String) throws org.xwiki.notifications.NotificationException",
"justification": "Bad design at fist attempt"
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::saveFilterPreferences(java.util.Set<org.xwiki.notifications.filters.NotificationFilterPreference>) throws org.xwiki.notifications.NotificationException",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::saveFilterPreferences(org.xwiki.model.reference.DocumentReference, java.util.Set<org.xwiki.notifications.filters.NotificationFilterPreference>) throws org.xwiki.notifications.NotificationException",
"justification": "Bad design at fist attempt"
},
{
"code": "java.method.numberOfParametersChanged",
"old": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::setFilterPreferenceEnabled(java.lang.String, boolean) throws org.xwiki.notifications.NotificationException",
"new": "method void org.xwiki.notifications.filters.NotificationFilterPreferenceProvider::setFilterPreferenceEnabled(org.xwiki.model.reference.DocumentReference, java.lang.String, boolean) throws org.xwiki.notifications.NotificationException",
"justification": "Bad design at fist attempt"
},
{
"code": "java.annotation.added",
"old": "method org.xwiki.model.EntityType org.xwiki.rendering.macro.include.IncludeMacroParameters::getType()",
"new": "method org.xwiki.model.EntityType org.xwiki.rendering.macro.include.IncludeMacroParameters::getType()",
"annotation": "@org.xwiki.properties.annotation.PropertyGroup({\"stringReference\"})",
"justification": "Handles conflicting macro parameters. This change is backward compatible."
},
{
"code": "java.annotation.added",
"old": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setPage(java.lang.String)",
"new": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setPage(java.lang.String)",
"annotation": "@org.xwiki.properties.annotation.PropertyFeature(\"reference\")",
"justification": "Handles conflicting macro parameters. This change is backward compatible."
},
{
"code": "java.annotation.added",
"old": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setReference(java.lang.String)",
"new": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setReference(java.lang.String)",
"annotation": "@org.xwiki.properties.annotation.PropertyFeature(\"reference\")",
"justification": "Handles conflicting macro parameters. This change is backward compatible."
},
{
"code": "java.annotation.added",
"old": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setReference(java.lang.String)",
"new": "method void org.xwiki.rendering.macro.include.IncludeMacroParameters::setReference(java.lang.String)",
"annotation": "@org.xwiki.properties.annotation.PropertyGroup({\"stringReference\"})",
"justification": "Handles conflicting macro parameters. This change is backward compatible."
}
]
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment