transfer all changelogs from the extensions to the root

This commit is contained in:
Michael Barz
2020-10-07 12:54:48 +02:00
parent 66df806e45
commit 6c9840f9df
294 changed files with 371 additions and 5159 deletions
-66
View File
@@ -1,66 +0,0 @@
# Changelog for 0.1.1
The following sections list the changes for 0.1.1.
## Summary
* Fix #22: Build docker images with alpine:latest instead of alpine:edge
* Chg #20: Change status not found on missing thumbnail
## Details
* Bugfix #22: Build docker images with alpine:latest instead of alpine:edge
ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.
https://github.com/owncloud/ocis/webdav/pull/22
* Change #20: Change status not found on missing thumbnail
The service returned a bad request when no thumbnail was generated. It is now changed to not
found.
https://github.com/owncloud/ocis/webdav/issues/20
https://github.com/owncloud/ocis/webdav/pull/21
# Changelog for 0.1.0
The following sections list the changes for 0.1.0.
## Summary
* Chg #1: Initial release of basic version
* Chg #16: Update ocis-pkg to version 2.2.0
* Enh #14: Configuration
* Enh #13: Implement preview API
## Details
* Change #1: Initial release of basic version
Just prepared an initial basic version to serve webdav for the ownCloud Infinite Scale
project. It just provides a minimal viable product to demonstrate the microservice pattern.
https://github.com/owncloud/ocis/webdav/issues/1
* Change #16: Update ocis-pkg to version 2.2.0
Updated ocis-pkg to include the cors header changes.
https://github.com/owncloud/ocis/webdav/issues/16
* Enhancement #14: Configuration
Extensions should be responsible of configuring themselves. We use Viper for config loading
from default paths. Environment variables **WILL** take precedence over config files.
https://github.com/owncloud/ocis/webdav/pull/14
* Enhancement #13: Implement preview API
Added the API endpoint for file previews.
https://github.com/owncloud/ocis/webdav/pull/13
@@ -1,5 +0,0 @@
Enhancement: Configuration
Extensions should be responsible of configuring themselves. We use Viper for config loading from default paths. Environment variables **WILL** take precedence over config files.
https://github.com/owncloud/ocis/webdav/pull/14
@@ -1,7 +0,0 @@
Change: Initial release of basic version
Just prepared an initial basic version to serve webdav for the ownCloud
Infinite Scale project. It just provides a minimal viable product to
demonstrate the microservice pattern.
https://github.com/owncloud/ocis/webdav/issues/1
@@ -1,5 +0,0 @@
Enhancement: implement preview API
Added the API endpoint for file previews.
https://github.com/owncloud/ocis/webdav/pull/13
@@ -1,5 +0,0 @@
Change: update ocis-pkg to version 2.2.0
Updated ocis-pkg to include the cors header changes.
https://github.com/owncloud/ocis/webdav/issues/16
@@ -1,7 +0,0 @@
Change: change status not found on missing thumbnail
The service returned a bad request when no thumbnail was generated.
It is now changed to not found.
https://github.com/owncloud/ocis/webdav/issues/20
https://github.com/owncloud/ocis/webdav/pull/21
@@ -1,5 +0,0 @@
Bugfix: build docker images with alpine:latest instead of alpine:edge
ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.
https://github.com/owncloud/ocis/webdav/pull/22
-28
View File
@@ -1,28 +0,0 @@
{{- range $changes := . }}{{ with $changes -}}
# Changelog for {{ .Version }}
The following sections list the changes for {{ .Version }}.
## Summary
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .TypeShort }} #{{ .PrimaryID }}: {{ .Title }}
{{- end }}{{ end }}
## Details
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .Type }} #{{ .PrimaryID }}: {{ .Title }}
{{ range $par := .Paragraphs }}
{{ wrapIndent $par 80 3 }}
{{ end -}}
{{ range $url := .IssueURLs }}
{{ $url -}}
{{ end -}}
{{ range $url := .PRURLs }}
{{ $url -}}
{{ end -}}
{{ range $url := .OtherURLs }}
{{ $url -}}
{{ end }}
{{ end }}{{ end }}
{{ end }}{{ end -}}
-6
View File
@@ -1,6 +0,0 @@
# Changelog
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.
-11
View File
@@ -1,11 +0,0 @@
Bugfix: Fix behavior for foobar (in present tense)
We've fixed the behavior for foobar, a long-standing annoyance for users. The
text should be wrapped at 80 characters length.
The text in the paragraphs is written in past tense. The last section is a list
of issue URLs, PR URLs and other URLs. The first issue ID (or the first PR ID,
in case there aren't any issue links) is used as the primary ID.
https://github.com/owncloud/ocis/webdav/issues/1234
https://github.com/owncloud/ocis/webdav/pull/55555
View File
@@ -1,6 +0,0 @@
Enhancement: Add version command
Added a command to list the currently running services with their respective version.
Also added a metrics entry for build information which includes the service version.
https://github.com/owncloud/product/issues/226