Friboo Versions Save

Utility library for writing microservices in Clojure, with support for Swagger and OAuth

1.5.0

8 years ago

#36 Allows to lookup the team of a service user

1.3.0

8 years ago
  • Add caching for token info (2 minutes) and teams per user (5 minutes)

1.2.0

8 years ago

Added a convenience function to redirect to the Swagger UI.

paths:
  '/':
    get:
      summary: Application root
      operationId: org.zalando.stups.friboo.system.http/redirect-to-swagger-ui
      responses:
        default:
          description: "Redirects to /ui/"

1.0.0

8 years ago

Migration from 0.X.X to 1.X.X

These non-backward compatible changes have been made with version 1.0.0:

Initializing the HTTP component

The http component does now have a lot of dependencies. For convenience you can use org.zalando.stups.friboo.system/http-system-map to build your system map.

Audit logging

The audit logger moved from http namespace to its own component. It has also got its own config namespace :audit_log. Please change your environment configuration accordingly:

HTTP_AUDIT_LOGS_BUCKET=my-bucket-name becomes AUDIT_LOG_BUCKET

Important dependency updates

  • [org.clojure/clojure "1.7.0"]
  • [ring "1.4.0"], includes [org.eclipse.jetty/jetty "9.2.10.v20150310"]