From 937a07f2c65c81ae9228a11d19e56d303dfdf553 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Thu, 4 Feb 2021 11:58:50 +0100 Subject: [PATCH] add changelog --- changelog/unreleased/port-ocis-graph.md | 7 +++++ graph/changelog/CHANGELOG.tmpl | 28 ------------------- graph/changelog/README.md | 6 ---- graph/changelog/TEMPLATE | 11 -------- graph/changelog/unreleased/.keep | 0 .../changelog/unreleased/config-management.md | 5 ---- graph/changelog/unreleased/initial-release.md | 6 ---- .../remove-incompatible-dependency.md | 5 ---- .../changelog/unreleased/use-alpine-latest.md | 5 ---- 9 files changed, 7 insertions(+), 66 deletions(-) create mode 100644 changelog/unreleased/port-ocis-graph.md delete mode 100644 graph/changelog/CHANGELOG.tmpl delete mode 100644 graph/changelog/README.md delete mode 100644 graph/changelog/TEMPLATE delete mode 100644 graph/changelog/unreleased/.keep delete mode 100644 graph/changelog/unreleased/config-management.md delete mode 100644 graph/changelog/unreleased/initial-release.md delete mode 100644 graph/changelog/unreleased/remove-incompatible-dependency.md delete mode 100644 graph/changelog/unreleased/use-alpine-latest.md diff --git a/changelog/unreleased/port-ocis-graph.md b/changelog/unreleased/port-ocis-graph.md new file mode 100644 index 000000000..533d6f73f --- /dev/null +++ b/changelog/unreleased/port-ocis-graph.md @@ -0,0 +1,7 @@ +Enhancement: Migrate ocis-graph to ocis monorepo + +Tags: ocis, ocis-graph + +Ocis-graph was not migrated during the monorepo conversion. + +https://github.com/owncloud/ocis/pull/1594 diff --git a/graph/changelog/CHANGELOG.tmpl b/graph/changelog/CHANGELOG.tmpl deleted file mode 100644 index 3fee89481..000000000 --- a/graph/changelog/CHANGELOG.tmpl +++ /dev/null @@ -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 }} - {{ wrap $par 80 3 }} -{{ end -}} -{{ range $url := .IssueURLs }} - {{ $url -}} -{{ end -}} -{{ range $url := .PRURLs }} - {{ $url -}} -{{ end -}} -{{ range $url := .OtherURLs }} - {{ $url -}} -{{ end }} -{{ end }}{{ end }} - -{{ end }}{{ end -}} diff --git a/graph/changelog/README.md b/graph/changelog/README.md deleted file mode 100644 index 0ae5d5b3e..000000000 --- a/graph/changelog/README.md +++ /dev/null @@ -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 would be the -best reference. diff --git a/graph/changelog/TEMPLATE b/graph/changelog/TEMPLATE deleted file mode 100644 index a28466866..000000000 --- a/graph/changelog/TEMPLATE +++ /dev/null @@ -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-graph/issues/1234 -https://github.com/owncloud/ocis-graph/pull/55555 diff --git a/graph/changelog/unreleased/.keep b/graph/changelog/unreleased/.keep deleted file mode 100644 index e69de29bb..000000000 diff --git a/graph/changelog/unreleased/config-management.md b/graph/changelog/unreleased/config-management.md deleted file mode 100644 index 903a0420d..000000000 --- a/graph/changelog/unreleased/config-management.md +++ /dev/null @@ -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-graph/pull/27 diff --git a/graph/changelog/unreleased/initial-release.md b/graph/changelog/unreleased/initial-release.md deleted file mode 100644 index e744c86a3..000000000 --- a/graph/changelog/unreleased/initial-release.md +++ /dev/null @@ -1,6 +0,0 @@ -Change: Initial release of basic version - -Just prepare an initial basic version to serve a graph world API that can be -used by Phoenix or other extensions. - -https://github.com/owncloud/ocis-graph/issues/7 diff --git a/graph/changelog/unreleased/remove-incompatible-dependency.md b/graph/changelog/unreleased/remove-incompatible-dependency.md deleted file mode 100644 index 54fd21aaa..000000000 --- a/graph/changelog/unreleased/remove-incompatible-dependency.md +++ /dev/null @@ -1,5 +0,0 @@ -Bugfix: remove redigo 2.0.0+incompatible dependency - -get rid of redigo v2.0.0 - -https://github.com/owncloud/ocis-graph/pull/33 diff --git a/graph/changelog/unreleased/use-alpine-latest.md b/graph/changelog/unreleased/use-alpine-latest.md deleted file mode 100644 index 56ba6cbfa..000000000 --- a/graph/changelog/unreleased/use-alpine-latest.md +++ /dev/null @@ -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-graph/pull/32