release 2.7.0

This commit is contained in:
Tao Bror Bojlén 2019-08-18 18:14:58 +02:00
parent 34d4f58ff7
commit 617e2f43ee
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
4 changed files with 17 additions and 11 deletions

View File

@ -11,16 +11,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Cleaned up ElasticSearch configuration in backend.
### Deprecated
### Removed
- Remove color-coding by activity per user.
### Fixed
## [2.7.0 - 2018-08-18]
### Added
- Add Friendica crawler (only supports peers; there's no timeline API endpoint.)
- Color more server types on the map -- Hubzilla, Plume, Pixelfed, and Wordpress.
### Changed
- Cleaned up ElasticSearch configuration in backend.
### Removed
- Remove color-coding by activity per user. The vast majority of instances had the exact same color so this wasn't very useful.
## [2.6.1 - 2019-08-10]
### Changed

View File

@ -20,11 +20,6 @@ config :backend, BackendWeb.Endpoint,
config :backend, Backend.Repo, queue_target: 5000
instances_config_path =
if System.get_env("MIX_ENV") == "prod",
do: "lib/backend-2.6.1/priv/elasticsearch/instances.json",
else: "priv/elasticsearch/instances.json"
config :backend, Backend.Elasticsearch.Cluster,
url: "http://localhost:9200",
api: Elasticsearch.API.HTTP,

View File

@ -4,7 +4,7 @@ defmodule Backend.MixProject do
def project do
[
app: :backend,
version: "2.6.1",
version: "2.7.0",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),

View File

@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "2.6.1",
"version": "2.7.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",