Skip to content

Releases: networknt/light-4j

1.1.5

24 Dec 10:30
Compare
Choose a tag to compare

1.1.5 - 2016-12-24

Added

  • Add HashUtil for password used in OAuth2 server light-oauth2
  • Add Status code for OAuth2 server

Changed

1.1.4

13 Dec 03:09
Compare
Choose a tag to compare

1.1.4 - 2016-12-12

Added

  • Switcher is a module to control on/off of certain component during runtime
  • Discovery is a module used by Client to discover services by names from Consul or ZooKeeper
  • Registry is a module used by Server to register itself to Consul or ZooKeeper during server startup

Changed

  • Update service module to support spaces in interface key part.
  • Integrate Google Error-prone for static source code scan
  • Fixed some many warnings from Intellij Idea Inspect

1.1.3

03 Dec 16:03
Compare
Choose a tag to compare

1.1.3 - 2016-12-03

Added

Changed

  • Service config changed to JSON format so that properties can be injected

1.1.2

29 Nov 02:21
Compare
Choose a tag to compare

1.1.2 - 2016-11-28

Added

Changed

  • Add support to one interface to map multiple implementations in singleton service factory
  • Add support to multiple interfaces to map multiple implementations in singleton service factory

1.1.1

27 Nov 04:24
Compare
Choose a tag to compare

1.1.1 - 2016-11-26

Added

  • Add a method to get framework version from /META-INFO/maven/com.networknt/info/pom.properties
  • Add a missing handler error code in status.json
  • Add MDC for correlation id in logging
  • Add service module which is a singleton service factory

Changed

  • Disable metrics by default in metrics module so that it won't try to report to influxdb

1.1.0

07 Nov 00:49
Compare
Choose a tag to compare

1.1.0 - 2016-11-06

Added

  • Traceability handler to set traceabilityId to the response header from request header
  • Correlation handler to generate correlationId if it doesn't exist in the request header
  • Create dump handler but not implemented yet

Changed

  • Update Client to support traceabilityId and correlationId propagation
  • Refactor Audit to split full dump out.
  • Refactor Audit handler to output into audit log
  • Update Swagger Handler to add endpoint into the request header for audit log
  • Update JwtVerifyHandler to put scope_client_id into the request header

1.0.2

04 Nov 02:10
Compare
Choose a tag to compare

1.0.2 - 2016-11-03

Added

Changed

  • Upgrade to json-schema-form 0.1.3
  • Fixes #2 exchange completed already issue.

1.0.1

30 Oct 12:03
Compare
Choose a tag to compare

1.0.1 - 2016-10-30

Added

  • Sanitizer middleware to handle cross site scripting on header and body of request.
  • Health endpoint to indicate if the server is alive by sending OK.

Changed

  • Update body middleware so that it checks content type and parse the application/json to list or map.
  • Update Validator middleware to handle body as object or string
  • Move info to package info instead of audit
  • Upgrade undertow to 1.4.4-Final to address patch issue.
  • Update default server.json to bind to 0.0.0.0 instead of localhost for docker

1.0.0

21 Oct 11:51
Compare
Choose a tag to compare

1.0.0 - 2016-10-21

Added

  • Add startup hook provider to allow API project to initialize resource, loading spring app context etc.
  • Add shutdown hook provider to allow API project to release connection pools or other resources.
  • Add Dockerfile to the root of generated API project.

Changed

  • Rename project to light-java
  • JsonPath configuration is done in a startup hook provider now.

0.1.9

18 Oct 10:14
Compare
Choose a tag to compare

0.1.9 - 2016-10-17

Added

  • Add metrics with Influx DB and Grafana combination.

Changed

  • Move swagger.json from swagger module resources to test resources so that petstore specification won't be included in API project by default.
  • Security scope verification will check swagger object before enabling it.
  • Validator test now has petstore swagger.json in test resources.
  • Update docs