transfer all changelogs from the extensions to the root

This commit is contained in:
Michael Barz
2020-10-07 16:33:01 +02:00
parent 66df806e45
commit 6c9840f9df
294 changed files with 371 additions and 5159 deletions
-51
View File
@@ -1,51 +0,0 @@
# Changelog for [0.1.1] (2020-08-17)
The following sections list the changes in ocis-store 0.1.1.
[0.1.1]: https://github.com/owncloud/ocis/store/compare/v0.1.0...v0.1.1
## Summary
* Bugfix - Removed code from other service: [#7](https://github.com/owncloud/ocis/store/pull/7)
## Details
* Bugfix - Removed code from other service: [#7](https://github.com/owncloud/ocis/store/pull/7)
We had code copied over from another repository which doesn't belong in here and now removed it
again.
https://github.com/owncloud/ocis/store/pull/7
# Changelog for [0.1.0] (2020-07-23)
The following sections list the changes in ocis-store 0.1.0.
[0.1.0]: https://github.com/owncloud/ocis/store/compare/a57983ac33e65bcd73702eb1d74f56d36a94ef6c...v0.1.0
## Summary
* Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#5](https://github.com/owncloud/ocis/store/pull/5)
* Change - Initial release of basic version: [#1](https://github.com/owncloud/ocis/store/pull/1)
## Details
* Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#5](https://github.com/owncloud/ocis/store/pull/5)
ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.
https://github.com/owncloud/ocis/store/pull/5
* Change - Initial release of basic version: [#1](https://github.com/owncloud/ocis/store/pull/1)
We have built a new service which implements go micro's [store
interface](https://github.com/micro/development/blob/master/design/framework/store.md),
so that we can provide a key-value-store through GRPC for our services. The underlying
implementation stores data as json files on disk and maintains an index using
[bleve](https://github.com/blevesearch/bleve).
https://github.com/owncloud/ocis/store/pull/1
https://github.com/owncloud/ocis/store/pull/2
-}}
@@ -1,8 +0,0 @@
Change: Initial release of basic version
We have built a new service which implements go micro's [store interface](https://github.com/micro/development/blob/master/design/framework/store.md),
so that we can provide a key-value-store through GRPC for our services. The underlying implementation stores data as json
files on disk and maintains an index using [bleve](https://github.com/blevesearch/bleve).
https://github.com/owncloud/ocis/store/pull/1
https://github.com/owncloud/ocis/store/pull/2
@@ -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/store/pull/5
@@ -1,6 +0,0 @@
Bugfix: Removed code from other service
We had code copied over from another repository which doesn't belong in here and now removed it again.
https://github.com/owncloud/ocis/store/pull/7
-54
View File
@@ -1,54 +0,0 @@
{{ $allVersions := . }}
{{- range $index, $changes := . }}{{ with $changes -}}
{{ if gt (len $allVersions) 1 -}}
# Changelog for [{{ .Version }}] ({{ .Date }})
The following sections list the changes in ocis-store {{ .Version }}.
{{/* creating version compare links */ -}}
{{ $next := add1 $index -}}
{{ if ne (len $allVersions) $next -}}
{{ $previousVersion := (index $allVersions $next).Version -}}
{{ if eq .Version "unreleased" -}}
[{{ .Version }}]: https://github.com/owncloud/ocis/store/compare/v{{ $previousVersion }}...master
{{ else -}}
[{{ .Version }}]: https://github.com/owncloud/ocis/store/compare/v{{ $previousVersion }}...v{{ .Version }}
{{ end -}}
{{ end -}}
{{- /* last version managed by calens, end of the loop */ -}}
{{ if eq .Version "0.1.0" -}}
[{{ .Version }}]: https://github.com/owncloud/ocis/store/compare/a57983ac33e65bcd73702eb1d74f56d36a94ef6c...v{{ .Version }}
{{ end -}}
{{ else -}}
# Changes in {{ .Version }}
{{ end -}}
## Summary
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .Type }} - {{ .Title }}: [#{{ .PrimaryID }}]({{ .PrimaryURL }})
{{- end }}{{ end }}
## Details
{{ range $entry := .Entries }}{{ with $entry }}
* {{ .Type }} - {{ .Title }}: [#{{ .PrimaryID }}]({{ .PrimaryURL }})
{{ 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.
-12
View File
@@ -1,12 +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/store/issues/1234
https://github.com/owncloud/ocis/store/pull/55555
5
View File
@@ -1,6 +0,0 @@
Enhancement: Add version command
Added a command to print the versions of all running ocis-store service instances.
Also added a field in the metrics showing some build information.
https://github.com/owncloud/product/issues/226