release 2.3.0

This commit is contained in:
Tao Bror Bojlén 2019-08-02 19:54:32 +03:00
parent 4c1960c3b2
commit 767bd4a947
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
4 changed files with 17 additions and 7 deletions

View File

@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [2.3.0 - 2019-08-02]
### Added
- Instance administrators can now log in to opt in or out of crawling.
- Added ElasticSearch full-text search over instance domains and descriptions.
- Search results are now highlighted on the graph.
@ -22,10 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- There are now 100 concurrent crawl workers by default (increased from 50).
- The colors for color coding have been made brighter (more visible against the dark background).
### Deprecated
### Removed
### Fixed
- Fixed a process leak that could cause the server to OOM.

View File

@ -22,7 +22,7 @@ config :backend, Backend.Repo, queue_target: 5000
instances_config_path =
if System.get_env("MIX_ENV") == "prod",
do: "lib/backend-2.2.0/priv/elasticsearch/instances.json",
do: "lib/backend-2.3.0/priv/elasticsearch/instances.json",
else: "priv/elasticsearch/instances.json"
config :backend, Backend.Elasticsearch.Cluster,

View File

@ -4,7 +4,7 @@ defmodule Backend.MixProject do
def project do
[
app: :backend,
version: "2.2.0",
version: "2.3.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.2.0",
"version": "2.3.0",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",