Skip to content

Releases: networknt/light-4j

2.3.4

Choose a tag to compare

@stevehu stevehu released this 05 May 23:26

2.3.4 (2026-05-05)

Merged pull requests:

2.3.3

Choose a tag to compare

@stevehu stevehu released this 20 Feb 02:28

2.3.3 (2026-02-19)

Merged pull requests:

Upgrade Guide:
For this release, we have removed some deprecated methods from Http2Client in the client module to reduce the risk of connection leakage. If you are using Http2Client, please migrate to the SimpleConnectionPool. The following are some reference documents for this migration. If you are using any coding agent, you can use the attached skill simplepool-migration.md

2.3.2

Choose a tag to compare

@stevehu stevehu released this 03 Feb 00:13

2.3.2 (2026-02-02)

Merged pull requests:

2.3.1

Choose a tag to compare

@stevehu stevehu released this 20 Sep 01:27

2.3.1 (2025-09-19)

Merged pull requests:

2.3.0

Choose a tag to compare

@stevehu stevehu released this 25 Jun 20:16

2.3.0 (2025-06-25)

Merged pull requests:

Upgrade Guideline:

  • This release is built with Java 21.

2.2.2

Choose a tag to compare

@stevehu stevehu released this 06 Jun 13:59

2.2.2 (2025-06-05)

Merged pull requests:

2.2.1

Choose a tag to compare

@stevehu stevehu released this 22 Mar 16:33

2.2.1 (2025-03-22)

Merged pull requests:

2.2.0

Choose a tag to compare

@stevehu stevehu released this 12 Feb 14:50

2.2.0 (2025-02-12)

Merged pull requests:

2.1.38

Choose a tag to compare

@stevehu stevehu released this 30 Nov 16:57

2.1.38 (2024-11-30)

Merged pull requests:

2.1.37

Choose a tag to compare

@stevehu stevehu released this 20 Sep 21:06

2.1.37 (2024-09-20)

Merged pull requests:

  • fixes #2345 Fix the transformer matching with encoding #2346 (stevehu)
  • fixes #2343 Trim the encoding for req res tranformer interceptors #2344 (stevehu)
  • fixes #2341 Dynamic loading jwk with kid is not working if multiple s… #2342 (stevehu)
  • fixes #2339 allow the req or res body encoding to be customized per p… #2340 (stevehu)
  • fixes #2337 update req/res transformer interceptor to handle the erro… #2338 (stevehu)
  • fixes #2334 make convertEnvVars configurable to work with lower case … #2335 (stevehu)

Upgrade Guide

For this release, we have deprecated openapi-security.yml, graphql-security.yml, and hybrid-security.yml. Going forward, all JWT and SWT-related configurations should be centralized in a single security.yml file.

Important Changes for Users with Framework-Specific Security Configurations

If you have framework-specific security properties defined in values.yml, you’ll need to update these properties by removing the framework prefix (openapi-, graphql-, or hybrid-) and using only security as the prefix.

For example, if you previously had the following property in your values.yml file:

openapi-security.enableVerifyJwt: false

You should update it to:

security.enableVerifyJwt: false

This update simplifies configuration management by unifying security settings under a single security.yml file.