Skip to content

panoptes 0.2.7

Compare
Choose a tag to compare
@hohonuuli hohonuuli released this 30 Nov 23:18
· 19 commits to master since this release

This release upgrades from Java 11 to Java 17 (the latest LTS release)

There's also a new health endpoint.

/health

Demo setup

docker run -p 8080:8080 -e BASICJWT_CLIENT_SECRET=foo -e BASICJWT_SIGNING_SECRET=bar mbari/panoptes

Request

GET http://localhost:8080/v1/health

Response

HTTP/1.1 200 OK
Connection: close
Date: Tue, 30 Nov 2021 22:31:04 GMT
Content-Type: text/plain;charset=utf-8
Content-Length: 151

{
  "jdkVersion": "17.0.1+12-39",
  "availableProcessors": 6,
  "freeMemory": 20544424,
  "maxMemory": 4294967296,
  "totalMemory": 46137344,
  "application": "vampire-squid"
}

Full Changelog: 0.2.5...0.2.7