This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/maven/main/pax.url.version-3.0.2
in repository https://gitbox.apache.org/repos/asf/karaf.git
discard 703eaaaae0 Bump pax.url.version from 2.7.0 to 3.0.2
add 5e4167f6ee fix(karaf-maven-plugin): Deal with non-features classifier
in the karaf-maven-plugin (#2521)
add 58a492414b build(deps): bump bouncycastle.version from 1.83 to 1.84
(#2539)
add d5ccaf39ff build(deps): bump pax.logging.version from 2.3.2 to 2.3.3
(#2542)
add 35d28b653e build(deps): bump maven.version from 3.9.14 to 3.9.15
(#2547)
add 7c05b4864f Fix 'occured' -> 'occurred' typos in user-visible log
messages (#2545)
add cbdabc4d43 Add @Config annotation for shell command configuration
injection (#2517)
add 5f88de252b Bump felix.framework.version from 5.6.10 to 7.0.5 (#2366)
add 2fd05bc77a Bump jakarta.mail:jakarta.mail-api from 1.6.8 to 2.1.5
(#2356)
add 53ece91f17 [KARAF-2195] Fix assembly resolution failure when feature
requires wrap protocol (#2551)
add 7c0003b50b Add tx-control JDBC provider reference implementations to
transaction feature (#2553)
add 2d3c002685 build(deps): bump com.google.code.gson:gson from 2.13.2 to
2.14.0 (#2575)
add 69f0e7c51f build(deps): bump org.hibernate.orm:hibernate-core (#2558)
add c98092e3f2 fix(karaf-maven-plugin): handle KAR files in
features-generate-descriptor (#2578)
add 1b509b21e9 build(deps): bump commons-io:commons-io from 2.21.0 to
2.22.0 (#2571)
add 6184e7883d build(deps): bump com.graphql-java:graphql-java from 22.3
to 26.0 (#2573)
add b7a96c088e build(deps): bump pax.url.version from 2.7.0 to 3.0.2
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 (703eaaaae0)
\
N -- N -- N
refs/heads/dependabot/maven/main/pax.url.version-3.0.2 (b7a96c088e)
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:
.../enterprise/src/main/feature/feature.xml | 2 +
assemblies/features/standard/pom.xml | 5 +
.../features/standard/src/main/feature/feature.xml | 1 +
bom/pom.xml | 10 +
.../karaf-graphql-example-api/pom.xml | 2 +-
.../karaf-graphql-example-commands/pom.xml | 2 +-
.../karaf-graphql-example-core/pom.xml | 2 +-
.../karaf-graphql-example-scr-servlet/pom.xml | 2 +-
.../karaf-redis-example-service/pom.xml | 2 +-
main/pom.xml | 2 +-
.../apache/karaf/main/lock/DefaultJDBCLock.java | 6 +-
pom.xml | 12 +-
.../lifecycle/{Reference.java => Config.java} | 29 ++-
.../shell/impl/action/command/ManagerImpl.java | 44 ++++
.../shell/impl/action/osgi/CommandExtension.java | 9 +
.../impl/action/command/ManagerImplConfigTest.java | 235 +++++++++++++++++++++
.../tooling/features/GenerateDescriptorMojo.java | 66 +++++-
.../karaf/tooling/utils/Dependency31Helper.java | 32 ++-
.../karaf/wrapper/internal/service/Main.java | 2 +-
19 files changed, 430 insertions(+), 35 deletions(-)
copy
shell/core/src/main/java/org/apache/karaf/shell/api/action/lifecycle/{Reference.java
=> Config.java} (62%)
create mode 100644
shell/core/src/test/java/org/apache/karaf/shell/impl/action/command/ManagerImplConfigTest.java