release 2.7.0
This commit is contained in:
parent
34d4f58ff7
commit
617e2f43ee
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -11,16 +11,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Cleaned up ElasticSearch configuration in backend.
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
- Remove color-coding by activity per user.
|
|
||||||
|
|
||||||
### Fixed
|
### 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]
|
## [2.6.1 - 2019-08-10]
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -20,11 +20,6 @@ config :backend, BackendWeb.Endpoint,
|
||||||
|
|
||||||
config :backend, Backend.Repo, queue_target: 5000
|
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,
|
config :backend, Backend.Elasticsearch.Cluster,
|
||||||
url: "http://localhost:9200",
|
url: "http://localhost:9200",
|
||||||
api: Elasticsearch.API.HTTP,
|
api: Elasticsearch.API.HTTP,
|
||||||
|
|
|
@ -4,7 +4,7 @@ defmodule Backend.MixProject do
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :backend,
|
app: :backend,
|
||||||
version: "2.6.1",
|
version: "2.7.0",
|
||||||
elixir: "~> 1.5",
|
elixir: "~> 1.5",
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "2.6.1",
|
"version": "2.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "NODE_ENV=development react-scripts start",
|
"start": "NODE_ENV=development react-scripts start",
|
||||||
|
|
Loading…
Reference in a new issue