Skip to content

Commit

Permalink
Dependencies Upgrade (#1911)
Browse files Browse the repository at this point in the history
* Bump org.eclipse.jetty:jetty-servlets from 11.0.15 to 11.0.16 in /client (#1909)

Bumps [org.eclipse.jetty:jetty-servlets](https://github.com/eclipse/jetty.project) from 11.0.15 to 11.0.16.
- [Release notes](https://github.com/eclipse/jetty.project/releases)
- [Commits](jetty/jetty.project@jetty-11.0.15...jetty-11.0.16)

---
updated-dependencies:
- dependency-name: org.eclipse.jetty:jetty-servlets
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 67325d3)

* Bump org.apache.tomcat.embed:tomcat-embed-core in /client (#1910)

Bumps org.apache.tomcat.embed:tomcat-embed-core from 10.1.8 to 10.1.13.

---
updated-dependencies:
- dependency-name: org.apache.tomcat.embed:tomcat-embed-core
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 2d1b227)

* Dependencies Upgrade

---------

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
hyperxpro and dependabot[bot] authored Oct 25, 2023
1 parent 2d1b227 commit d73630e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static void ntlmProxyChallenge(String authenticateHeader, HttpHeaders re
future.setInProxyAuth(false);
} else {
String serverChallenge = authenticateHeader.substring("NTLM ".length()).trim();
String challengeHeader = NtlmEngine.INSTANCE.generateType3Msg(proxyRealm.getPrincipal(), proxyRealm.getPassword(), proxyRealm.getNtlmDomain(),
String challengeHeader = NtlmEngine.generateType3Msg(proxyRealm.getPrincipal(), proxyRealm.getPassword(), proxyRealm.getNtlmDomain(),
proxyRealm.getNtlmHost(), serverChallenge);
// FIXME we might want to filter current NTLM and add (leave other
// Authorization headers untouched)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private static void ntlmChallenge(String authenticateHeader,

} else {
String serverChallenge = authenticateHeader.substring("NTLM ".length()).trim();
String challengeHeader = NtlmEngine.INSTANCE.generateType3Msg(realm.getPrincipal(), realm.getPassword(),
String challengeHeader = NtlmEngine.generateType3Msg(realm.getPrincipal(), realm.getPassword(),
realm.getNtlmDomain(), realm.getNtlmHost(), serverChallenge);
// FIXME we might want to filter current NTLM and add (leave other
// Authorization headers untouched)
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<netty.version>4.1.94.Final</netty.version>
<netty.iouring>0.0.20.Final</netty.iouring>
<slf4j.version>2.0.5</slf4j.version>
<netty.version>4.1.100.Final</netty.version>
<netty.iouring>0.0.23.Final</netty.iouring>
<slf4j.version>2.0.9</slf4j.version>
<activation.version>2.0.1</activation.version>
<logback.version>1.4.5</logback.version>
<logback.version>1.4.11</logback.version>
<jetbrains-annotations.version>24.0.1</jetbrains-annotations.version>
</properties>

Expand Down

0 comments on commit d73630e

Please sign in to comment.