release 2.3.0
This commit is contained in:
parent
4c1960c3b2
commit
767bd4a947
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### 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.
|
- Instance administrators can now log in to opt in or out of crawling.
|
||||||
- Added ElasticSearch full-text search over instance domains and descriptions.
|
- Added ElasticSearch full-text search over instance domains and descriptions.
|
||||||
- Search results are now highlighted on the graph.
|
- 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).
|
- 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).
|
- The colors for color coding have been made brighter (more visible against the dark background).
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed a process leak that could cause the server to OOM.
|
- Fixed a process leak that could cause the server to OOM.
|
||||||
|
|
|
@ -22,7 +22,7 @@ config :backend, Backend.Repo, queue_target: 5000
|
||||||
|
|
||||||
instances_config_path =
|
instances_config_path =
|
||||||
if System.get_env("MIX_ENV") == "prod",
|
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"
|
else: "priv/elasticsearch/instances.json"
|
||||||
|
|
||||||
config :backend, Backend.Elasticsearch.Cluster,
|
config :backend, Backend.Elasticsearch.Cluster,
|
||||||
|
|
|
@ -4,7 +4,7 @@ defmodule Backend.MixProject do
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :backend,
|
app: :backend,
|
||||||
version: "2.2.0",
|
version: "2.3.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.2.0",
|
"version": "2.3.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