release 2.6.1
This commit is contained in:
parent
2c035892d4
commit
b0cdab2fbd
|
@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
### Fixed
|
||||
|
||||
## [2.6.1 - 2019-08-10]
|
||||
|
||||
### Fixed
|
||||
|
||||
- Added missing indices on `crawls` and `crawl_interactions` tables.
|
||||
- Added table to store most recent crawl. This speeds up the instance view by a lot!
|
||||
|
||||
|
|
|
@ -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.6.0/priv/elasticsearch/instances.json",
|
||||
do: "lib/backend-2.6.1/priv/elasticsearch/instances.json",
|
||||
else: "priv/elasticsearch/instances.json"
|
||||
|
||||
config :backend, Backend.Elasticsearch.Cluster,
|
||||
|
|
|
@ -4,7 +4,7 @@ defmodule Backend.MixProject do
|
|||
def project do
|
||||
[
|
||||
app: :backend,
|
||||
version: "2.6.0",
|
||||
version: "2.6.1",
|
||||
elixir: "~> 1.5",
|
||||
elixirc_paths: elixirc_paths(Mix.env()),
|
||||
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "frontend",
|
||||
"version": "2.6.0",
|
||||
"version": "2.6.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "NODE_ENV=development react-scripts start",
|
||||
|
|
Loading…
Reference in a new issue