Skip to content

Commit

Permalink
Update API breakage justification
Browse files Browse the repository at this point in the history
  • Loading branch information
cescoffier committed Aug 28, 2024
1 parent d2b25b8 commit cb452ca
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@
<configuration>
<skip>${revapi.skip}</skip>
<checkDependencies>false</checkDependencies>
<oldVersion>2.6.1</oldVersion>
</configuration>
</plugin>
<plugin>
Expand Down
20 changes: 19 additions & 1 deletion test-utils/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,25 @@
"criticality" : "highlight",
"minSeverity" : "POTENTIALLY_BREAKING",
"minCriticality" : "documented",
"differences" : [ ]
"differences" : [

{
"ignore": true,
"code": "java.annotation.removed",
"old": "class io.smallrye.stork.test.TestServiceRegistrarProvider",
"new": "class io.smallrye.stork.test.TestServiceRegistrarProvider",
"annotation": "@io.smallrye.stork.api.config.ServiceDiscoveryAttributes({@io.smallrye.stork.api.config.ServiceDiscoveryAttribute(name = \"one\", description = \"no description\"), @io.smallrye.stork.api.config.ServiceDiscoveryAttribute(name = \"two\", description = \"no description\")})",
"justification": "New registrar API"
},
{
"ignore": true,
"code": "java.annotation.added",
"old": "class io.smallrye.stork.test.TestServiceRegistrarProvider",
"new": "class io.smallrye.stork.test.TestServiceRegistrarProvider",
"annotation": "@io.smallrye.stork.api.config.ServiceRegistrarAttributes({@io.smallrye.stork.api.config.ServiceRegistrarAttribute(name = \"one\", description = \"no description\"), @io.smallrye.stork.api.config.ServiceRegistrarAttribute(name = \"two\", description = \"no description\")})",
"justification": "New registrar API"
}
]
}
}, {
"extension" : "revapi.reporter.json",
Expand Down

0 comments on commit cb452ca

Please sign in to comment.