release 2.5.0
This commit is contained in:
parent
d1b3f3f023
commit
9a0bbbb7d9
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -9,23 +9,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added Misskey crawler.
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Crawl instances that are down or unrecognized less often.
|
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
## [2.5.0 - 2019-08-08]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added Misskey crawler.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Crawl instances that are down or unrecognized less often.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
- Fixed broken instance view on mobile devices.
|
- Fixed broken instance view on mobile devices.
|
||||||
- Increased database connection timeout - required as the database grows!
|
- Increased database connection timeout - required as the database grows!
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## [2.4.1 - 2019-08-04]
|
## [2.4.1 - 2019-08-04]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -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.4.1/priv/elasticsearch/instances.json",
|
do: "lib/backend-2.5.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.4.1",
|
version: "2.5.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.4.1",
|
"version": "2.5.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