This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/maven/netty.version-4.2.13.Final
in repository https://gitbox.apache.org/repos/asf/aries-rsa.git
discard b87fa1ca Bump netty.version from 4.1.121.Final to 4.2.13.Final
add 369f2d43 Bump com.sun.xml.bind:jaxb-osgi from 4.0.7 to 4.0.8 (#101)
add 7bad4935 Bump org.jvnet.jaxb:jaxb-maven-plugin from 4.0.12 to 4.0.13
(#103)
add 13012706 ARIES-2199: Setup maven wrapper
add baf28d36 ARIES-2199: Use script version
add 96489a39 ARIES-2199: Use only-script version
add 37191ba9 ARIES-2212 Refactor ImportRegistrationImpl initialization to
use one-time init instead of setters
add daa69700 ARIES-2207 Re-implement ImportRegistrationImpl more simple,
clear and compliant
add 4bacc480 ARIES-2207 Re-implement ExportRegistrationImpl more simple,
clear and compliant
add d874b29c ARIES-2208 Fix incorrect closing of RSA
factory/core/instance/registrations
add d13e90db ARIES-2209 Merge ExportReferenceImpl into
ExportRegistrationImpl
add 7f4b5a48 Bump org.apache:apache from 37 to 38 (#106)
add 52605cbe Bump org.jvnet.jaxb:jaxb-maven-plugin from 4.0.13 to 4.0.14
(#105)
add c27b38fa ARIES-2211 Add EventListenerBridge for legacy
EndpointListener support
add 0f9b2981 ARIES-2210 Update and run TCK tests 8.1.0
add 63201370 Add detailed note about TCK compliance and the
EventListenerBridge to readme
add 7df47f01 Bump org.slf4j:slf4j-api from 2.0.17 to 2.0.18 (#108)
add 787fe057 Bump netty.version from 4.1.121.Final to 4.2.13.Final
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b87fa1ca)
\
N -- N -- N
refs/heads/dependabot/maven/netty.version-4.2.13.Final (787fe057)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 2 +-
.mvn/wrapper/maven-wrapper.properties | 4 +
Readme.md | 4 +-
itests/pom.xml | 1 +
itests/tck/README.md | 17 +-
itests/tck/install/install-tests.sh | 23 --
itests/tck/pom.xml | 145 ++++++--
itests/tck/runtests | 21 --
itests/tck/tck.bndrun | 114 +++++--
mvnw | 295 ++++++++++++++++
mvnw.cmd | 189 +++++++++++
parent/pom.xml | 19 +-
pom.xml | 2 +-
rsa/Readme.md | 37 +-
.../java/org/apache/aries/rsa/core/Activator.java | 13 +-
.../rsa/core/DistributionProviderTracker.java | 42 ++-
.../apache/aries/rsa/core/EventListenerBridge.java | 375 +++++++++++++++++++++
.../apache/aries/rsa/core/ExportReferenceImpl.java | 77 -----
.../aries/rsa/core/ExportRegistrationImpl.java | 260 ++++++++------
.../aries/rsa/core/ImportRegistrationImpl.java | 324 ++++++++++--------
.../aries/rsa/core/RemoteServiceAdminCore.java | 155 ++-------
.../aries/rsa/core/RemoteServiceAdminFactory.java | 27 +-
.../aries/rsa/core/RemoteServiceAdminInstance.java | 74 ++--
.../rsa/core/DistributionProviderTrackerTest.java | 8 +-
.../aries/rsa/core/ImportRegistrationImplTest.java | 30 +-
.../exporter/ServiceExportsRepository.java | 14 +-
26 files changed, 1621 insertions(+), 651 deletions(-)
create mode 100644 .mvn/wrapper/maven-wrapper.properties
delete mode 100644 itests/tck/install/install-tests.sh
delete mode 100755 itests/tck/runtests
create mode 100755 mvnw
create mode 100644 mvnw.cmd
create mode 100644
rsa/src/main/java/org/apache/aries/rsa/core/EventListenerBridge.java
delete mode 100644
rsa/src/main/java/org/apache/aries/rsa/core/ExportReferenceImpl.java