From 475a0a11f1ed92df2f20a6d8009fec9f3e628a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 8 Jun 2020 08:13:58 +0000 Subject: [PATCH] Automated changelog update [skip ci] --- CHANGELOG.md | 20 ++++++++++++++++++++ go.mod | 8 -------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc5610939..a112e5bc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ * Change - Integrate import command from ocis-migration: [#249](https://github.com/owncloud/ocis/pull/249) * Change - Initial release of basic version: [#2](https://github.com/owncloud/ocis/issues/2) * Change - Start ocis-accounts with the ocis server command: [#25](https://github.com/owncloud/product/issues/25) +* Change - Switch over to a new custom-built runtime: [#287](https://github.com/owncloud/ocis/pull/287) +* Change - Make ocis-settings available: [#287](https://github.com/owncloud/ocis/pull/287) * Change - Start ocis-proxy with the ocis server command: [#119](https://github.com/owncloud/ocis/issues/119) * Enhancement - Document how to run OCIS on top of EOS: [#172](https://github.com/owncloud/ocis/pull/172) * Enhancement - Update extensions: [#180](https://github.com/owncloud/ocis/pull/180) @@ -48,6 +50,24 @@ https://github.com/owncloud/ocis/pull/239/files +* Change - Switch over to a new custom-built runtime: [#287](https://github.com/owncloud/ocis/pull/287) + + We moved away from using the go-micro runtime and are now using [our own + runtime](https://github.com/refs/pman). This allows us to spawn service processes even + when they are using different versions of go-micro. On top of that we now have the commands `ocis + list`, `ocis kill` and `ocis run` available for service runtime management. + + https://github.com/owncloud/ocis/pull/287 + + +* Change - Make ocis-settings available: [#287](https://github.com/owncloud/ocis/pull/287) + + This version delivers `settings` as a new service. It is part of the array of services in the + `server` command. + + https://github.com/owncloud/ocis/pull/287 + + * Change - Start ocis-proxy with the ocis server command: [#119](https://github.com/owncloud/ocis/issues/119) Starts the proxy in single binary mode (./ocis server) on port 9200. The proxy serves as a diff --git a/go.mod b/go.mod index 74f3029ad..f6106d314 100644 --- a/go.mod +++ b/go.mod @@ -8,22 +8,17 @@ require ( contrib.go.opencensus.io/exporter/zipkin v0.1.1 github.com/UnnoTed/fileb0x v1.1.4 github.com/bmatcuk/doublestar v1.3.0 // indirect - github.com/chzyer/logex v1.1.10 // indirect - github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect github.com/coreos/etcd v3.3.21+incompatible // indirect github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect github.com/fsnotify/fsnotify v1.4.9 // indirect github.com/go-log/log v0.2.0 // indirect - github.com/gogo/protobuf v1.3.1 // indirect github.com/karrick/godirwalk v1.15.6 // indirect github.com/labstack/echo v3.3.10+incompatible // indirect github.com/labstack/gommon v0.3.0 // indirect github.com/mattn/go-colorable v0.1.6 // indirect - github.com/mattn/go-runewidth v0.0.9 // indirect github.com/micro/cli/v2 v2.1.2 github.com/micro/go-micro/v2 v2.8.0 github.com/micro/micro/v2 v2.8.0 - github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect github.com/nsf/termbox-go v0.0.0-20200418040025-38ba6e5628f1 // indirect github.com/openzipkin/zipkin-go v0.2.2 github.com/owncloud/flaex v0.2.0 @@ -48,9 +43,6 @@ require ( go.opencensus.io v0.22.3 go.uber.org/atomic v1.5.1 // indirect go.uber.org/multierr v1.4.0 // indirect - golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 // indirect - golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 // indirect - golang.org/x/sys v0.0.0-20200523222454-059865788121 // indirect gopkg.in/yaml.v2 v2.3.0 // indirect )