Skip to content

Bump jetty.version from 12.1.9 to 12.1.10#166

Merged
carryel merged 1 commit into
masterfrom
dependabot/maven/jetty.version-12.1.10
Jun 10, 2026
Merged

Bump jetty.version from 12.1.9 to 12.1.10#166
carryel merged 1 commit into
masterfrom
dependabot/maven/jetty.version-12.1.10

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Copy link
Copy Markdown
Contributor

Bumps jetty.version from 12.1.9 to 12.1.10.
Updates org.eclipse.jetty:jetty-server from 12.1.9 to 12.1.10

Updates org.eclipse.jetty.ee11.websocket:jetty-ee11-websocket-jetty-server from 12.1.9 to 12.1.10

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jun 2, 2026
@pzygielo

pzygielo commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

@dependabot rebase

@dependabot dependabot Bot force-pushed the dependabot/maven/jetty.version-12.1.10 branch from 8b593c5 to 54a43b3 Compare June 9, 2026 06:26
@pzygielo

pzygielo commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

@dependabot rebase

@dependabot dependabot Bot force-pushed the dependabot/maven/jetty.version-12.1.10 branch from 54a43b3 to 8e303ff Compare June 9, 2026 06:43
@carryel

carryel commented Jun 9, 2026

Copy link
Copy Markdown
Contributor
2026-06-09T06:49:33.9243707Z [INFO] Results:
2026-06-09T06:49:33.9244349Z [INFO] 
2026-06-09T06:49:33.9251072Z [ERROR] Failures: 
2026-06-09T06:49:33.9252741Z [ERROR]   GrizzlyBasicAuthTest>BasicAuthTest.redirectAndBasicAuthTest:289 » Execution java.lang.UnsupportedOperationException: Digest algorithm not supported: SHA-256
2026-06-09T06:49:33.9257239Z [ERROR]   GrizzlyDigestAuthTest>DigestAuthTest.digestAuthNegativeTest:131 » Execution java.lang.UnsupportedOperationException: Digest algorithm not supported: SHA-256
2026-06-09T06:49:33.9259464Z [ERROR]   GrizzlyDigestAuthTest>DigestAuthTest.digestAuthTest:105 » Execution java.lang.UnsupportedOperationException: Digest algorithm not supported: SHA-256
2026-06-09T06:49:33.9261361Z [ERROR]   GrizzlyDigestAuthTest>DigestAuthTest.digestAuthTestWithoutScheme:118 » Execution java.lang.UnsupportedOperationException: Digest algorithm not supported: SHA-256
2026-06-09T06:49:33.9262439Z [INFO] 
2026-06-09T06:49:33.9262838Z [ERROR] Tests run: 354, Failures: 4, Errors: 0, Skipped: 0

I will take a look.

@carryel

carryel commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

It appears that starting with Jetty 12.1.10, the default digest authentication has changed from MD5 to SHA-256.

The error occurred because glassfish-grizzly-ahc only supports MD5.

We can either force MD5 during testing or ensure glassfish-grizzly-ahc supports SHA-256. I am considering applying a patch to support this additional feature.

carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 9, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
@pzygielo

pzygielo commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

It appears that starting with Jetty 12.1.10, the default digest authentication has changed from MD5 to SHA-256.

Strange for Jetty to do that in point release, but there is indeed something like

in 12.1.10.

@carryel

carryel commented Jun 10, 2026

Copy link
Copy Markdown
Contributor

First, I will fix the digest algorithm to MD5 to ensure there is no impact from the test server version.

After that, it would be better to incorporate support for other extended digest algorithms in Grizzly AHC.

@carryel

carryel commented Jun 10, 2026

Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps `jetty.version` from 12.1.9 to 12.1.10.

Updates `org.eclipse.jetty:jetty-server` from 12.1.9 to 12.1.10

Updates `org.eclipse.jetty.ee11.websocket:jetty-ee11-websocket-jetty-server` from 12.1.9 to 12.1.10

---
updated-dependencies:
- dependency-name: org.eclipse.jetty.ee11.websocket:jetty-ee11-websocket-jetty-server
  dependency-version: 12.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty:jetty-server
  dependency-version: 12.1.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/maven/jetty.version-12.1.10 branch from 8e303ff to cb2efc0 Compare June 10, 2026 03:04
@carryel carryel merged commit 334c92b into master Jun 10, 2026
2 checks passed
@dependabot dependabot Bot deleted the dependabot/maven/jetty.version-12.1.10 branch June 10, 2026 04:07
carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 10, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 11, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
- Applied feedback from eclipse-ee4j#169 (comment)
- Added test cases for algorithms other than MD5.
carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 15, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
- Added test cases for algorithms other than MD5.
- Applied OndroMih’s feedback:
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 16, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
- Added test cases for algorithms other than MD5.
- Applied OndroMih’s feedback:
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
carryel added a commit to carryel/glassfish-grizzly-ahc that referenced this pull request Jun 16, 2026
… MD5

- See eclipse-ee4j#166 (comment).
- Safely reset the digest after it has been used.
- Added test cases for algorithms other than MD5.
- Applied OndroMih’s feedback:
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
  - eclipse-ee4j#169 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants