Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Changelog for 1.3.0 (#20)
Browse files Browse the repository at this point in the history
Changelog for 1.3.0
  • Loading branch information
refs authored Jan 20, 2020
2 parents 5e5def3 + 7f9c8e4 commit 2a6bd47
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 8 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
# Changelog for unreleased
# Changelog for 1.3.0

The following sections list the changes for unreleased.
The following sections list the changes for 1.3.0.

## Summary

* Fix #14: Fix serving static assets
* Chg #19: Add TLS support for http services
* Enh #8: Introduce OpenID Connect middleware

## Details

* Bugfix #14: Fix serving static assets

Ocis-hello used "/" as root. adding another / caused the static middleware to always fail
stripping that prefix. All requests will return 404. setting root to "" in the `ocis-hello`
flag does not work because chi reports that routes need to start with a /.
`path.Clean(root+"/")` would yield "" for root="/"

https://github.com/owncloud/ocis-pkg/pull/14

* Change #19: Add TLS support for http services

`ocis-pkg` http services support TLS. The idea behind is setting the issuer on phoenix's
`config.json` to `https`. Or in other words, use https to access the Kopano extension, and
authenticate using an SSL certificate.

https://github.com/owncloud/ocis-pkg/issues/19

* Enhancement #8: Introduce OpenID Connect middleware

Added an openid connect middleware that will try to authenticate users using OpenID Connect.
Expand Down
8 changes: 8 additions & 0 deletions changelog/1.3.0_2020-01-20/fix-serving-static-issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Bugfix: Fix serving static assets

ocis-hello used "/" as root. adding another / caused the static middleware to
always fail stripping that prefix. All requests will return 404. Setting root
to `""` in the `ocis-hello` flag does not work because Chi reports that routes
need to start with `/`. `path.Clean(root+"/")` would yield `""` for `root="/"`.

https://github.com/owncloud/ocis-pkg/pull/14
6 changes: 6 additions & 0 deletions changelog/1.3.0_2020-01-20/issue-8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Enhancement: Introduce OpenID Connect middleware

Added an openid connect middleware that will try to authenticate users using
OpenID Connect. The claims will be added to the context of the request.

https://github.com/owncloud/ocis-pkg/issues/8
7 changes: 7 additions & 0 deletions changelog/1.3.0_2020-01-20/tls-support-for-http-services.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Change: Add TLS support for http services

`ocis-pkg` http services support TLS. The idea behind is setting the issuer on
phoenix's `config.json` to `https`. Or in other words, use https to access the
Kopano extension, and authenticate using an SSL certificate.

https://github.com/owncloud/ocis-pkg/issues/19
4 changes: 4 additions & 0 deletions changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ We are using [calens](https://github.com/restic/calens) to properly generate a
changelog before we are tagging a new release. To get an idea how this could
look like <https://github.com/restic/restic/tree/master/changelog> would be the
best reference.

We're using kebab case for naming the changelog files:

`kebab-case-looks-like-this`
6 changes: 0 additions & 6 deletions changelog/unreleased/issue-8.md

This file was deleted.

0 comments on commit 2a6bd47

Please sign in to comment.