[PR] KARAF-5014: consider first group role in users.properties and ignore empty roles [karaf]

2024-09-20 Thread via GitHub


stataru8 opened a new pull request, #1863:
URL: https://github.com/apache/karaf/pull/1863

   This issue is quite old and only affects those who directly modify the 
`users` file. I'm not sure if it is still relevant, or if the current behaviour 
should be considered acceptable.
   
   Current behaviour:
   - the first role in a group is ignored
   - when a group is created via `jaas` commands, the role `group` is added by 
default
   
   Proposal:
- consider the first role in a group
- when a group is created using `jaas` commands, add an empty role by 
default
- ignore empty roles in both users and groups
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7854] Upgrade to jackson 2.17.2 [karaf]

2024-07-24 Thread via GitHub


geichelberger opened a new pull request, #1861:
URL: https://github.com/apache/karaf/pull/1861

   Upgrades the following dependencies:
   - snakeyaml from 1.33 to 2.2
   - jackson from 2.14.1 to 2.17.2


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7850] Add karaf-services-maven-plugin doc for command [karaf]

2024-07-16 Thread via GitHub


paulsp opened a new pull request, #1858:
URL: https://github.com/apache/karaf/pull/1858

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7846] Upgrade JAXB 2.3.9 [karaf]

2024-07-12 Thread via GitHub


jbonofre merged PR #1856:
URL: https://github.com/apache/karaf/pull/1856


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7845] Upgrade Spring dependencies - 6.1.6, 6.0.19, 5.3.34 [karaf]

2024-07-12 Thread via GitHub


jbonofre commented on PR #1855:
URL: https://github.com/apache/karaf/pull/1855#issuecomment-2226778156

   I'm preparing the SMX bundles release to be able to upgrade to latest Spring 
versions.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7844: Upgrade to sshd 2.13.1 [karaf]

2024-07-12 Thread via GitHub


jbonofre merged PR #1853:
URL: https://github.com/apache/karaf/pull/1853


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Fix concurrent access to principals Set [karaf-decanter]

2024-07-12 Thread via GitHub


f2par0 opened a new pull request, #338:
URL: https://github.com/apache/karaf-decanter/pull/338

   `subject.getPrincipals()` returns a synchronized SecureSet but the iterator 
in `principals` must be protected by a synchronization on the `Set` otherwise, 
if the Set is  modified during iteration, it can lead to this exception : 
   
   ```
   java.util.ConcurrentModificationException: null
   at 
java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:970) ~[?:?]
   at java.util.LinkedList$ListItr.next(LinkedList.java:892) ~[?:?]
   at javax.security.auth.Subject$SecureSet$1.next(Subject.java:1082) ~[?:?]
   at 
org.apache.karaf.decanter.collector.eventadmin.EventCollector.convertSubject(EventCollector.java:84)
 ~[?:?]
   at 
org.apache.karaf.decanter.collector.eventadmin.EventCollector.handleEvent(EventCollector.java:64)
 ~[?:?]
   at 
org.apache.felix.eventadmin.impl.handler.EventHandlerProxy.sendEvent(EventHandlerProxy.java:432)
 ~[?:?]
   at 
org.apache.felix.eventadmin.impl.tasks.HandlerTask.runWithoutDenylistTiming(HandlerTask.java:82)
 ~[?:?]
   at 
org.apache.felix.eventadmin.impl.tasks.SyncDeliverTasks.execute(SyncDeliverTasks.java:107)
 ~[?:?]
   at 
org.apache.felix.eventadmin.impl.tasks.AsyncDeliverTasks$TaskExecuter.run(AsyncDeliverTasks.java:167)
 ~[?:?]
   at 
java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) ~[?:?]
   at java.util.concurrent.FutureTask.run(FutureTask.java:264) ~[?:?]
   at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) 
~[?:?]
   at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) 
~[?:?]
   at java.lang.Thread.run(Thread.java:829) ~[?:?]
   
   ```
   One way to cause the problem is to activate the event monitoring and 
webconsole and call repeatedly the webconsole
   
   ```
   for i in {1..100}; do (curl -u karaf:karaf 
http://localhost:8040/system/console/bundles ) && (curl -u tadmin:tadmin 
http://localhost:8040/system/console/bundles ) done 
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7847] Upgrade to eclipselink 2.7.15 [karaf]

2024-07-10 Thread via GitHub


jbonofre merged PR #1857:
URL: https://github.com/apache/karaf/pull/1857


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7847] Upgrade to eclipselink 2.7.15 [karaf]

2024-07-10 Thread via GitHub


geichelberger opened a new pull request, #1857:
URL: https://github.com/apache/karaf/pull/1857

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7846] Upgrade JAXB 2.3.9 [karaf]

2024-07-09 Thread via GitHub


mattrpav opened a new pull request, #1856:
URL: https://github.com/apache/karaf/pull/1856

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7845] Upgrade Spring dependencies - 6.1.6, 6.0.19, 5.3.34 [karaf]

2024-07-09 Thread via GitHub


mattrpav opened a new pull request, #1855:
URL: https://github.com/apache/karaf/pull/1855

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Ecf http fix [karaf]

2024-07-07 Thread via GitHub


jbonofre merged PR #1854:
URL: https://github.com/apache/karaf/pull/1854


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Ecf http fix [karaf]

2024-07-07 Thread via GitHub


scottslewis opened a new pull request, #1854:
URL: https://github.com/apache/karaf/pull/1854

   Currently the ecf repo url in Karaf distributions is listed as:
   
   ecf=http://download.eclipse.org/rt/ecf/RELEASE/site.p2/karaf-features.xml
   
   as the Eclipse foundation has removed support for download via http in favor 
of https, this should be changed to
   
   ecf=https://download.eclipse.org/rt/ecf/RELEASE/site.p2/karaf-features.xml
   
   This pull request implements this change in 4 locations within this repo 
(cfg files, docs, etc)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7829 Override org.slf4j to 2.0.12 [karaf]

2024-07-05 Thread via GitHub


jbonofre commented on PR #1851:
URL: https://github.com/apache/karaf/pull/1851#issuecomment-2210571169

   Just a note: this PR doesn't actually fix the problem described in 
KARAF-7829.
   For Karaf client slf4j issue, it's coming of the client packaging slf4j 
logger/binder from slf4j 1.x. I will create another PR to upgrade the client to 
slf4j 2.x (using `Provider` instead of `Binder`).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7844: Upgrade to sshd 2.13.1 [karaf]

2024-07-05 Thread via GitHub


jbonofre commented on PR #1853:
URL: https://github.com/apache/karaf/pull/1853#issuecomment-2210417055

   @stsiano yes, I'm fixing that (expected issue). Thanks for the reminder 😄 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7829 Override org.slf4j to 2.0.12 [karaf]

2024-07-03 Thread via GitHub


PeterSuna closed pull request #1851: KARAF-7829 Override org.slf4j to 2.0.12
URL: https://github.com/apache/karaf/pull/1851


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7829 Override org.slf4j to 2.0.12 [karaf]

2024-07-03 Thread via GitHub


PeterSuna opened a new pull request, #1851:
URL: https://github.com/apache/karaf/pull/1851

   Override transitive dependency version for `org.slf4j` from **1.7.32** and 
**1.7.35**  to **2.0.12** as defined in Karaf BOM project.
   
   This issue arose after bumping slf4j to 2.0.12 in this commit:
   
https://github.com/apache/karaf/pull/1831/commits/03354d2635441d19ff762e217348f798a19cc983#diff-9c5fb3d1b7e3b0f54bc5c4182965c4fe1f9023d449017cece3005d3f90e8e4d8R324
   
   However, some transitive dependencies still remain at version 1.7.32 and 
1.7.35. See the `mvn dependency:tree` output:
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ `manual` ---
   [INFO] org.apache.karaf:manual:bundle:4.5.0-SNAPSHOT
   [INFO] +- 
org.apache.karaf.subsystem:org.apache.karaf.subsystem.core:jar:4.5.0-SNAPSHOT:provided
   [INFO] |  +- 
org.apache.karaf.features:org.apache.karaf.features.core:jar:4.5.0-SNAPSHOT:provided
   [INFO] |  |  +- org.ops4j.pax.url:pax-url-aether:jar:2.6.14:provided
   [INFO] |  |  |  \- `org.slf4j:jcl-over-slf4j:jar:1.7.32:provided`
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ 
`karaf-graphql-example-commands` ---
   [INFO] 
org.apache.karaf.examples:karaf-graphql-example-commands:bundle:4.5.0-SNAPSHOT
   [INFO] +- 
org.apache.karaf.shell:org.apache.karaf.shell.core:jar:4.5.0-SNAPSHOT:compile
   [INFO] |  +- org.jline:jline:jar:3.21.0:compile
   [INFO] |  +- 
org.apache.karaf.jaas:org.apache.karaf.jaas.boot:jar:4.5.0-SNAPSHOT:compile
   [INFO] |  \- org.apache.sshd:sshd-osgi:jar:2.12.1:compile
   [INFO] | \- `org.slf4j:jcl-over-slf4j:jar:1.7.32:compile`
   [INFO] +- com.graphql-java:graphql-java:jar:19.2:compile
   [INFO] |  +- com.graphql-java:java-dataloader:jar:3.2.0:compile
   [INFO] |  +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
   [INFO] |  \- `org.slf4j:slf4j-api:jar:1.7.35:compile`
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ `karaf-graphql-example-api` 
---
   [INFO] 
org.apache.karaf.examples:karaf-graphql-example-api:bundle:4.5.0-SNAPSHOT
   [INFO] +- com.graphql-java:graphql-java:jar:19.2:compile
   [INFO] |  +- com.graphql-java:java-dataloader:jar:3.2.0:compile
   [INFO] |  +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
   [INFO] |  \- `org.slf4j:slf4j-api:jar:1.7.35:compile`
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ 
`karaf-graphql-example-scr-servlet` ---
   [INFO] 
org.apache.karaf.examples:karaf-graphql-example-scr-servlet:bundle:4.5.0-SNAPSHOT
   [INFO] +- org.osgi:org.osgi.service.component.annotations:jar:1.4.0:provided
   [INFO] +- com.graphql-java:graphql-java:jar:19.2:compile
   [INFO] |  +- com.graphql-java:java-dataloader:jar:3.2.0:compile
   [INFO] |  +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
   [INFO] |  \- `org.slf4j:slf4j-api:jar:1.7.35:compile`
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ 
`karaf-graphql-example-core` ---
   [INFO] 
org.apache.karaf.examples:karaf-graphql-example-core:bundle:4.5.0-SNAPSHOT
   [INFO] +- 
org.apache.karaf.examples:karaf-graphql-example-api:jar:4.5.0-SNAPSHOT:compile
   [INFO] +- org.osgi:org.osgi.service.component.annotations:jar:1.4.0:provided
   [INFO] +- com.graphql-java:graphql-java:jar:19.2:compile
   [INFO] |  +- com.graphql-java:java-dataloader:jar:3.2.0:compile
   [INFO] |  +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
   [INFO] |  \- `org.slf4j:slf4j-api:jar:1.7.35:compile`
   
   [INFO] --- dependency:3.6.1:tree (default-cli) @ 
`karaf-graphql-example-websocket` ---
   [INFO] 
org.apache.karaf.examples:karaf-graphql-example-websocket:bundle:4.5.0-SNAPSHOT
   [INFO] +- 
org.eclipse.jetty.websocket:websocket-servlet:jar:9.4.54.v20240208:provided
   [INFO] |  +- 
org.eclipse.jetty.websocket:websocket-api:jar:9.4.54.v20240208:provided
   [INFO] |  \- javax.servlet:javax.servlet-api:jar:3.1.0:provided
   [INFO] +- 
org.apache.karaf.examples:karaf-graphql-example-api:jar:4.5.0-SNAPSHOT:compile
   [INFO] |  \- com.graphql-java:graphql-java:jar:19.2:compile
   [INFO] | +- com.graphql-java:java-dataloader:jar:3.2.0:compile
   [INFO] | +- org.reactivestreams:reactive-streams:jar:1.0.3:compile
   [INFO] | \- `org.slf4j:slf4j-api:jar:1.7.35:compile`
   
   
   This can be fixed by specifying the correct version in dependency management.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7844: Upgrade to sshd 2.13.1 [karaf]

2024-07-02 Thread via GitHub


stsiano commented on PR #1853:
URL: https://github.com/apache/karaf/pull/1853#issuecomment-2205137346

   [INFO] Building Apache Karaf :: Shell :: SSH 4.5.0-SNAPSHOT
[43/248]
   ...
   [ERROR] org.apache.karaf.shell.ssh.SshUtilsTest.testCiphersDefault -- Time 
elapsed: 0.530 s <<< FAILURE!
   java.lang.AssertionError: Configured default cipher 'aes128-cbc' cannot be 
resolved
   
   The failing test is caused by
   
https://github.com/apache/mina-sshd/blob/master/docs/changes/2.13.0.md#aes-cbc-ciphers-removed-from-servers-defaults
   
   I would propose to change the test (and keep it removed), but it is also 
possible to re-enable the default cipher programmatically.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7844: Upgrade to sshd 2.13.1 [karaf]

2024-07-02 Thread via GitHub


jbonofre opened a new pull request, #1853:
URL: https://github.com/apache/karaf/pull/1853

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7841] Use Prometheus labels and create 1 event per metric in t… [karaf-decanter]

2024-06-17 Thread via GitHub


fpapon opened a new pull request, #337:
URL: https://github.com/apache/karaf-decanter/pull/337

   …he Prometheus-Collector


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7833: Upgrade to commons-logging 1.3.2 [karaf]

2024-06-17 Thread via GitHub


jbonofre merged PR #1847:
URL: https://github.com/apache/karaf/pull/1847


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.apache.derby:derby from 10.14.2.0 to 10.17.1.0 in /jaas/modules [karaf]

2024-06-17 Thread via GitHub


dependabot[bot] commented on PR #1850:
URL: https://github.com/apache/karaf/pull/1850#issuecomment-2172498980

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. If you'd rather skip all updates until the next 
major or minor version, let me know by commenting `@dependabot ignore this 
major version` or `@dependabot ignore this minor version`.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump org.apache.derby:derby from 10.14.2.0 to 10.17.1.0 in /jaas/modules [karaf]

2024-06-17 Thread via GitHub


jbonofre closed pull request #1850: Bump org.apache.derby:derby from 10.14.2.0 
to 10.17.1.0 in /jaas/modules
URL: https://github.com/apache/karaf/pull/1850


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7831: Upgrade to easymock 5.3.0 [karaf]

2024-06-17 Thread via GitHub


jbonofre merged PR #1849:
URL: https://github.com/apache/karaf/pull/1849


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump org.apache.derby:derby from 10.14.2.0 to 10.17.1.0 in /jaas/modules [karaf]

2024-06-17 Thread via GitHub


dependabot[bot] opened a new pull request, #1850:
URL: https://github.com/apache/karaf/pull/1850

   Bumps org.apache.derby:derby from 10.14.2.0 to 10.17.1.0.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.derby:derby&package-manager=maven&previous-version=10.14.2.0&new-version=10.17.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/karaf/network/alerts).
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7832: Upgrade to commons-io 2.16.1 [karaf]

2024-06-17 Thread via GitHub


jbonofre merged PR #1848:
URL: https://github.com/apache/karaf/pull/1848


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7834: Upgrade to commons-compress 1.26.2 [karaf]

2024-06-17 Thread via GitHub


jbonofre merged PR #1846:
URL: https://github.com/apache/karaf/pull/1846


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7831: Upgrade to easymock 5.3.0 [karaf]

2024-06-15 Thread via GitHub


jbonofre opened a new pull request, #1849:
URL: https://github.com/apache/karaf/pull/1849

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7832: Upgrade to commons-io 2.16.1 [karaf]

2024-06-15 Thread via GitHub


jbonofre opened a new pull request, #1848:
URL: https://github.com/apache/karaf/pull/1848

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7833: Upgrade to commons-logging 1.3.2 [karaf]

2024-06-15 Thread via GitHub


jbonofre opened a new pull request, #1847:
URL: https://github.com/apache/karaf/pull/1847

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7834: Upgrade to commons-compress 1.26.2 [karaf]

2024-06-15 Thread via GitHub


jbonofre opened a new pull request, #1846:
URL: https://github.com/apache/karaf/pull/1846

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7838: Upgrade to xbean 4.25 [karaf]

2024-06-15 Thread via GitHub


jbonofre opened a new pull request, #1845:
URL: https://github.com/apache/karaf/pull/1845

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7325] Support custom properties to simplify adjustment of assemblies [karaf]

2024-04-18 Thread via GitHub


splatch commented on PR #1484:
URL: https://github.com/apache/karaf/pull/1484#issuecomment-2064203875

   Dang, its quite aged PR, indeed it deserves a push. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7325] Support custom properties to simplify adjustment of assemblies [karaf]

2024-04-18 Thread via GitHub


RangerRick commented on PR #1484:
URL: https://github.com/apache/karaf/pull/1484#issuecomment-2064121512

   Ooh, I realize this is languishing in PRs, but it would be really handy if 
it could be included.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] allow using `overrides.properties` while generating repositories [karaf]

2024-04-18 Thread via GitHub


RangerRick closed pull request #1821: allow using `overrides.properties` while 
generating repositories
URL: https://github.com/apache/karaf/pull/1821


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Update Maven plugins and update release plugin configuration [karaf]

2024-04-08 Thread via GitHub


jbonofre merged PR #1844:
URL: https://github.com/apache/karaf/pull/1844


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Update Maven plugins and update release plugin configuration [karaf]

2024-04-08 Thread via GitHub


jbonofre opened a new pull request, #1844:
URL: https://github.com/apache/karaf/pull/1844

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7747: Provide Spring 6.1.x/6.0.x features [karaf]

2024-04-07 Thread via GitHub


jbonofre merged PR #1840:
URL: https://github.com/apache/karaf/pull/1840


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] TPRUN-7838 Spring security update for CVE-2024-22257 [karaf]

2024-04-04 Thread via GitHub


andreasmattes closed pull request #1843: TPRUN-7838 Spring security update for 
CVE-2024-22257
URL: https://github.com/apache/karaf/pull/1843


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] TPRUN-7838 Spring security update for CVE-2024-22257 [karaf]

2024-04-04 Thread via GitHub


andreasmattes commented on PR #1843:
URL: https://github.com/apache/karaf/pull/1843#issuecomment-2036856553

   Erraneous...


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7817: Upgrade Spring Security features to 5.7.12/5.5.3/5.1.6 [karaf]

2024-04-03 Thread via GitHub


jbonofre merged PR #1829:
URL: https://github.com/apache/karaf/pull/1829


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7820: Upgrade to Spring 5.3.33 [karaf]

2024-04-03 Thread via GitHub


jbonofre merged PR #1842:
URL: https://github.com/apache/karaf/pull/1842


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7820: Upgrade to Spring 5.3.33 [karaf]

2024-04-03 Thread via GitHub


jbonofre opened a new pull request, #1842:
URL: https://github.com/apache/karaf/pull/1842

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7802: Add javax.annotation.sql and javax.annotation.security packages to etc/jre.properties [karaf]

2024-04-03 Thread via GitHub


jbonofre merged PR #1841:
URL: https://github.com/apache/karaf/pull/1841


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7802: Add javax.annotation.sql and javax.annotation.security packages to etc/jre.properties [karaf]

2024-04-03 Thread via GitHub


jbonofre opened a new pull request, #1841:
URL: https://github.com/apache/karaf/pull/1841

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7747: Provide Spring 6.1.x/6.0.x features [karaf]

2024-04-02 Thread via GitHub


jbonofre opened a new pull request, #1840:
URL: https://github.com/apache/karaf/pull/1840

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7813: Upgrade to ASM 9.7 [karaf]

2024-03-31 Thread via GitHub


holgerfriedrich commented on PR #1832:
URL: https://github.com/apache/karaf/pull/1832#issuecomment-2029262743

   Hi @jbonofre! Thanks for doing all the updates towards 4.4.6 to replace 
Jetty with a version not affected by CVE-2024-22201.
   Did you consider to postpone the this update of the ASM package on the 4.4.x 
branch for now to ease replacing 4.4.5 by 4.4.6?
   Or is there a specific problem/dependency which requires ASM 9.7?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7812: Upgrade to Maven Wagon 3.5.3 [karaf]

2024-03-30 Thread via GitHub


jbonofre merged PR #1835:
URL: https://github.com/apache/karaf/pull/1835


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7811: Upgrade to commons-compress 1.26.1 [karaf]

2024-03-30 Thread via GitHub


jbonofre merged PR #1836:
URL: https://github.com/apache/karaf/pull/1836


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7810: Upgrade to commons-logging 1.3.1 [karaf]

2024-03-30 Thread via GitHub


jbonofre merged PR #1837:
URL: https://github.com/apache/karaf/pull/1837


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7809: Upgrade to bouncycastle 1.77 [karaf]

2024-03-30 Thread via GitHub


jbonofre merged PR #1838:
URL: https://github.com/apache/karaf/pull/1838


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7801: Upgrade to sshd 2.12.1 [karaf]

2024-03-30 Thread via GitHub


jbonofre merged PR #1839:
URL: https://github.com/apache/karaf/pull/1839


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7801: Upgrade to sshd 2.12.1 [karaf]

2024-03-29 Thread via GitHub


jbonofre opened a new pull request, #1839:
URL: https://github.com/apache/karaf/pull/1839

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7809: Upgrade to bouncycastle 1.77 [karaf]

2024-03-29 Thread via GitHub


jbonofre opened a new pull request, #1838:
URL: https://github.com/apache/karaf/pull/1838

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7810: Upgrade to commons-logging 1.3.1 [karaf]

2024-03-29 Thread via GitHub


jbonofre opened a new pull request, #1837:
URL: https://github.com/apache/karaf/pull/1837

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7811: Upgrade to commons-compress 1.26.1 [karaf]

2024-03-29 Thread via GitHub


jbonofre opened a new pull request, #1836:
URL: https://github.com/apache/karaf/pull/1836

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7814: Upgrade to Pax Web 8.0.27/Jetty 9.4.54.v20240208 [karaf]

2024-03-29 Thread via GitHub


jbonofre merged PR #1833:
URL: https://github.com/apache/karaf/pull/1833


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7813: Upgrade to ASM 9.7 [karaf]

2024-03-29 Thread via GitHub


jbonofre merged PR #1832:
URL: https://github.com/apache/karaf/pull/1832


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7815: Upgrade to Pax Logging 2.2.7/slf4j 2.0.12/log4j 2.23.1 [karaf]

2024-03-29 Thread via GitHub


jbonofre merged PR #1831:
URL: https://github.com/apache/karaf/pull/1831


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7816: Upgrade to Pax JDBC 1.5.7 [karaf]

2024-03-29 Thread via GitHub


jbonofre merged PR #1830:
URL: https://github.com/apache/karaf/pull/1830


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7819: Upgrade to Spring 5.2.25_1 feature [karaf]

2024-03-29 Thread via GitHub


jbonofre merged PR #1828:
URL: https://github.com/apache/karaf/pull/1828


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7822: Upgrade to Apache POM 31 [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1834:
URL: https://github.com/apache/karaf/pull/1834


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7822: Upgrade to Apache POM 31 [karaf]

2024-03-28 Thread via GitHub


jbonofre opened a new pull request, #1834:
URL: https://github.com/apache/karaf/pull/1834

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7813: Upgrade to ASM 9.7 [karaf]

2024-03-28 Thread via GitHub


jbonofre opened a new pull request, #1832:
URL: https://github.com/apache/karaf/pull/1832

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7814: Upgrade to Pax Web 8.0.27/Jetty 9.4.54.v20240208 [karaf]

2024-03-28 Thread via GitHub


jbonofre opened a new pull request, #1833:
URL: https://github.com/apache/karaf/pull/1833

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7816: Upgrade to Pax JDBC 1.5.7 [karaf]

2024-03-28 Thread via GitHub


jbonofre opened a new pull request, #1830:
URL: https://github.com/apache/karaf/pull/1830

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7819: Upgrade to Spring 5.2.25_1 feature [karaf]

2024-03-28 Thread via GitHub


jbonofre opened a new pull request, #1828:
URL: https://github.com/apache/karaf/pull/1828

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7682] Changed handling of the TCP connection to send the stop command [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1717:
URL: https://github.com/apache/karaf/pull/1717


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Check for annotation in ActionCommand constructor [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1826:
URL: https://github.com/apache/karaf/pull/1826


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7691 Prevent SocketException on status check [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1827:
URL: https://github.com/apache/karaf/pull/1827


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7799] Allow merging of org.apache.karaf.features.xml definitions [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1817:
URL: https://github.com/apache/karaf/pull/1817


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7799] Allow merging of org.apache.karaf.features.xml definitions [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1818:
URL: https://github.com/apache/karaf/pull/1818


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7763] Bump slf4j to 2.0.9 [karaf]

2024-03-28 Thread via GitHub


jbonofre closed pull request #1780: [KARAF-7763] Bump slf4j to 2.0.9
URL: https://github.com/apache/karaf/pull/1780


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7763] Bump slf4j to 2.0.9 [karaf]

2024-03-28 Thread via GitHub


jbonofre commented on PR #1780:
URL: https://github.com/apache/karaf/pull/1780#issuecomment-2025227935

   I will superseed with an updated PR.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7773] Upgrade to Pax Web 8.0.24 & Jetty 9.4.53.v20231009 [karaf]

2024-03-28 Thread via GitHub


jbonofre commented on PR #1788:
URL: https://github.com/apache/karaf/pull/1788#issuecomment-2025225559

   I will supersed with an updated PR. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7773] Upgrade to Pax Web 8.0.24 & Jetty 9.4.53.v20231009 [karaf]

2024-03-28 Thread via GitHub


jbonofre closed pull request #1788: [KARAF-7773] Upgrade to Pax Web 8.0.24 & 
Jetty 9.4.53.v20231009
URL: https://github.com/apache/karaf/pull/1788


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7804 - provide unique servlet-name when registering http proxy servlets [karaf]

2024-03-28 Thread via GitHub


jbonofre merged PR #1822:
URL: https://github.com/apache/karaf/pull/1822


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7691 Prevent SocketException on status check [karaf]

2024-03-19 Thread via GitHub


i-thiemann opened a new pull request, #1827:
URL: https://github.com/apache/karaf/pull/1827

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Check for annotation in ActionCommand constructor [karaf]

2024-03-18 Thread via GitHub


pingpingy1 opened a new pull request, #1826:
URL: https://github.com/apache/karaf/pull/1826

   The `ActionCommand` class takes an `actionClass` parameter for its 
constructor, whose `@Command` annotation accessed in the other methods. Thus, 
if the provided `actionClass` has no such annotations, then it will throw an 
NPE at a later, unspecified time. This commit implements a fail-fast guard 
against this scenarios.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] add feature whitelist definition [karaf]

2024-03-03 Thread via GitHub


mhus closed pull request #1077: add feature whitelist definition
URL: https://github.com/apache/karaf/pull/1077


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Add null guard to MavenDownloadTask [karaf]

2024-02-14 Thread via GitHub


jbonofre merged PR #1825:
URL: https://github.com/apache/karaf/pull/1825


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Add null guard to MavenDownloadTask [karaf]

2024-02-13 Thread via GitHub


pingpingy1 opened a new pull request, #1825:
URL: https://github.com/apache/karaf/pull/1825

   `resolver` is a private property of the class `MavenDownloadTask` that has 
no corresponding setter method.
   As such, if `null` is provided as the `resolver` to the constructor, it 
cannot be changed elsewhere and is bound to throw a NullPointerException at a 
later time.
   For debugging purposes, however, a fail-fast guard is preferable, which this 
commit implements.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] WIP: [KARAF-7780] Draft feature for Jakarta specs using capability/requirement [karaf]

2024-02-08 Thread via GitHub


jbonofre commented on PR #1795:
URL: https://github.com/apache/karaf/pull/1795#issuecomment-1935447503

   I have it, testing it on camel-karaf (on my `REFACTORE` branch). I will have 
the PR soon, validated with camel-karaf (Camel 4.x using Jakarta namespace 
only). Give me a couple of days.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] WIP: [KARAF-7780] Draft feature for Jakarta specs using capability/requirement [karaf]

2024-02-08 Thread via GitHub


mattrpav commented on PR #1795:
URL: https://github.com/apache/karaf/pull/1795#issuecomment-1935280467

   @jbonofre any update on jakarta spec support? I think this PR is close and 
provides the benefit of separating spec api from impl. Thoughts?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Fix typo in README.md [karaf-decanter]

2024-02-08 Thread via GitHub


fpapon merged PR #336:
URL: https://github.com/apache/karaf-decanter/pull/336


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Fix typo in README.md [karaf-decanter]

2024-02-08 Thread via GitHub


GutZuFusss opened a new pull request, #336:
URL: https://github.com/apache/karaf-decanter/pull/336

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Support Java 21 in Builder.JavaVersion [karaf]

2024-01-26 Thread via GitHub


rovarga merged PR #1824:
URL: https://github.com/apache/karaf/pull/1824


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Support Java 21 in Builder.JavaVersion [karaf]

2024-01-26 Thread via GitHub


rovarga commented on PR #1824:
URL: https://github.com/apache/karaf/pull/1824#issuecomment-1912815341

   This should fix this splat observed with maven.compiler.release=21:
   
   ```
   [ERROR] Failed to execute goal 
org.apache.karaf.tooling:karaf-maven-plugin:4.4.5:assembly (process-resources) 
on project karaf-dist-static: Unable to build assembly: Java version "21" is 
not supported -> [Help 
1]org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute 
goal org.apache.karaf.tooling:karaf-maven-plugin:4.4.5:assembly 
(process-resources) on project karaf-dist-static: Unable to build assembly
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 
(MojoExecutor.java:333)
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute 
(MojoExecutor.java:316)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:212)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:174)
   at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 
(MojoExecutor.java:75)
   at org.apache.maven.lifecycle.internal.MojoExecutor$1.run 
(MojoExecutor.java:162)
   at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute 
(DefaultMojosExecutionStrategy.java:39)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:159)
   at 
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:105)
   at io.takari.maven.builder.smart.SmartBuilderImpl.buildProject 
(SmartBuilderImpl.java:209)
   at io.takari.maven.builder.smart.SmartBuilderImpl$ProjectBuildTask.run 
(SmartBuilderImpl.java:81)
   at java.util.concurrent.Executors$RunnableAdapter.call 
(Executors.java:572)
   at java.util.concurrent.FutureTask.run (FutureTask.java:317)
   at java.util.concurrent.ThreadPoolExecutor.runWorker 
(ThreadPoolExecutor.java:1144)
   at java.util.concurrent.ThreadPoolExecutor$Worker.run 
(ThreadPoolExecutor.java:642)
   at java.lang.Thread.run (Thread.java:1583)
   Caused by: org.apache.maven.plugin.MojoExecutionException: Unable to build 
assembly
   at org.apache.karaf.tooling.AssemblyMojo.execute (AssemblyMojo.java:497)
   at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
(DefaultBuildPluginManager.java:126)
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 
(MojoExecutor.java:328)
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute 
(MojoExecutor.java:316)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:212)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:174)
   at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 
(MojoExecutor.java:75)
   at org.apache.maven.lifecycle.internal.MojoExecutor$1.run 
(MojoExecutor.java:162)
   at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute 
(DefaultMojosExecutionStrategy.java:39)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:159)
   at 
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject 
(LifecycleModuleBuilder.java:105)
   at io.takari.maven.builder.smart.SmartBuilderImpl.buildProject 
(SmartBuilderImpl.java:209)
   at io.takari.maven.builder.smart.SmartBuilderImpl$ProjectBuildTask.run 
(SmartBuilderImpl.java:81)
   at java.util.concurrent.Executors$RunnableAdapter.call 
(Executors.java:572)
   at java.util.concurrent.FutureTask.run (FutureTask.java:317)
   at java.util.concurrent.ThreadPoolExecutor.runWorker 
(ThreadPoolExecutor.java:1144)
   at java.util.concurrent.ThreadPoolExecutor$Worker.run 
(ThreadPoolExecutor.java:642)
   at java.lang.Thread.run (Thread.java:1583)
   Caused by: java.lang.IllegalArgumentException: Java version "21" is not 
supported
   at org.apache.karaf.profile.assembly.Builder$JavaVersion.from 
(Builder.java:215)
   at org.apache.karaf.profile.assembly.Builder.javase (Builder.java:547)
   at org.apache.karaf.tooling.AssemblyMojo.doExecute 
(AssemblyMojo.java:518)
   at org.apache.karaf.tooling.AssemblyMojo.execute (AssemblyMojo.java:493)
   at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo 
(DefaultBuildPluginManager.java:126)
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute2 
(MojoExecutor.java:328)
   at org.apache.maven.lifecycle.internal.MojoExecutor.doExecute 
(MojoExecutor.java:316)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:212)
   at org.apache.maven.lifecycle.internal.MojoExecutor.execute 
(MojoExecutor.java:174)
   at org.apache.maven.lifecycle.internal.MojoExecutor.access$000 
(MojoExecutor.java:75)
   at org.apache.maven.lifecycle.internal.MojoExecutor$1.run 
(MojoExecutor.java:162)
   at org.apache.maven.plugin.DefaultMojosExecutionStrategy.execute 
(D

[PR] Support Java 21 in Builder.JavaVersion [karaf]

2024-01-26 Thread via GitHub


rovarga opened a new pull request, #1824:
URL: https://github.com/apache/karaf/pull/1824

   We have jre-21 defined in jre.properties, but the Builder would not
   recognize them. Update the enumeration and eliminate manuall-maintained
   ordinal, deferring to Enum.compareTo() instead.
   
   Signed-off-by: Robert Varga 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Backport Java 21 support [karaf]

2024-01-26 Thread via GitHub


rovarga closed pull request #1823: Backport Java 21 support
URL: https://github.com/apache/karaf/pull/1823


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Backport Java 21 support [karaf]

2024-01-26 Thread via GitHub


rovarga opened a new pull request, #1823:
URL: https://github.com/apache/karaf/pull/1823

   - [KARAF-7761] Upgrade maven-resources-plugin to 3.3.1
   - [KARAF-7760] Upgrade maven-source-plugin to 3.3.0
   - [KARAF-7759] Upgrade maven-remote-resources-plugin to 3.1.0
   - [KARAF-7758]: Upgrade maven-surefire-plugin to 3.1.2
   - [KARAF-7757] Upgrade maven-enforcer-plugin to 3.4.1
   - [KARAF-7755]: Upgrade maven-compiler-plugin to 3.11.0
   - [KARAF-7773] Upgrade to Pax Web 8.0.24 & Jetty 9.4.53.v20231009
   - [KARAF-7779] Fix deployment scenario where feature has a fragment for 
existing bundle
   - Update MainLockingTest.java
   - avoid long evaluation chain for JRE property
   - [KARAF-7751] upgrade plugins to solve RB issues
   - [KARAF-6606] Fixed felix.fileinstall.filename property availability via 
ConfigMBean (getConfig method)
   - KARAF-7790: Upgrade to jansi 2.4.1
   - KARAF-7789: Upgrade to xbean 4.24
   - KARAF-7788: Upgrade to commons-lang3 3.14.0
   - KARAF-7787: Upgrade to commons-compress 1.25.0
   - KARAF-7786: Upgrade to Aries SpiFly 1.3.7
   - KARAF-7785: Upgrade to Aries Proxy 1.1.14
   - KARAF-7784: Upgrade to JNA 5.14.0
   - KARAF-7771: Upgrade to asm 9.6
   - [KARAF-7762] Upgrade build-helper-maven-plugin to 3.4.0
   - KARAF-7772: Upgrade to sshd 2.11.0
   - KARAF-7782: Upgrade to commons-io 2.15.1
   - KARAF-7781: Upgrade to maven-plugin-annotations 3.10.2
   - KARAF-7783: Upgrade to commons-logging 1.3.0
   - KARAF-7727: Fix org.osgi.util.promise version and use properties
   - KARAF-7769: Upgrade to Felix WebConsole 4.8.12
   - KARAF-7793: Upgrade to PAX Logging 2.2.6
   - KARAF-7775: Move config shell commands in a dedicated bundle
   - Update RELEASE-NOTES.md in preparation for 4.4.5 release
   - [maven-release-plugin] prepare release karaf-4.4.5
   - [maven-release-plugin] prepare for next development iteration
   - KARAF-7795 Fix handling of custom info providers in shell:info command.
   - [KARAF-7800] Upgrade asciidoctor-maven-plugin to 2.2.5
   - Support Java 21 in Builder.JavaVersion
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] KARAF-7804 - provide unique servlet-name when registering http proxy servlets [karaf]

2024-01-26 Thread via GitHub


awrb commented on PR #1822:
URL: https://github.com/apache/karaf/pull/1822#issuecomment-1912064664

   In the Jira ticket I explain the rationale behind this. For the servlet-name 
I think simply the proxy URL could be used (without slash), e.g. when proxying 
to `/external-api` the unique proxy servlet name is `external-api`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] KARAF-7804 - provide unique servlet-name when registering http proxy servlets [karaf]

2024-01-26 Thread via GitHub


awrb opened a new pull request, #1822:
URL: https://github.com/apache/karaf/pull/1822

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] allow using `overrides.properties` while generating repositories [karaf]

2024-01-18 Thread via GitHub


RangerRick opened a new pull request, #1821:
URL: https://github.com/apache/karaf/pull/1821

   This PR adds support for using `overrides.properties` when using the 
`features-add-to-repository` mojo. This allows you to generate a repository 
that doesn't contain extraneous bundles that won't be used anyway.
   
   I have provided test coverage for the different cases I ran into while 
working on this, it should be fairly complete. That said, I'd appreciate 
feedback on anything I can change or improve.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7758] Remove forkMode parameter [karaf]

2024-01-15 Thread via GitHub


jbonofre merged PR #1819:
URL: https://github.com/apache/karaf/pull/1819


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7800] Upgrade asciidoctor-maven-plugin to 2.2.5 [karaf]

2024-01-15 Thread via GitHub


jbonofre merged PR #1820:
URL: https://github.com/apache/karaf/pull/1820


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7799] Allow merging of org.apache.karaf.features.xml definitions [karaf]

2024-01-15 Thread via GitHub


grgrzybek opened a new pull request, #1818:
URL: https://github.com/apache/karaf/pull/1818

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7799] Allow merging of org.apache.karaf.features.xml definitions [karaf]

2024-01-15 Thread via GitHub


grgrzybek opened a new pull request, #1817:
URL: https://github.com/apache/karaf/pull/1817

   (no comment)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] [KARAF-7768] Remove org/apache/karaf/specs [karaf]

2024-01-13 Thread via GitHub


rovarga opened a new pull request, #1816:
URL: https://github.com/apache/karaf/pull/1816

   specs.locator and related logic just dances around the need to integrate 
with ServiceLoader. In OSGi world that's properly done with adding the 
appropriate metadata and therefore this magic should not be used.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] [KARAF-7768]: Provide SPI Fly from framework [karaf]

2024-01-13 Thread via GitHub


rovarga commented on PR #1784:
URL: https://github.com/apache/karaf/pull/1784#issuecomment-1890765848

   This PR does the wrong thing, I will raise another one.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@karaf.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



  1   2   3   4   5   >