release 2.7.1

This commit is contained in:
Tao Bror Bojlén 2019-08-23 13:52:29 +02:00
parent 93ef16589a
commit 53bc0d3090
No known key found for this signature in database
GPG Key ID: C6EC7AAB905F9E6F
3 changed files with 10 additions and 4 deletions

View File

@ -9,8 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add caching to graph + instance endpoints to better handle traffic spikes.
### Changed
### Deprecated
@ -19,6 +17,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
## [2.7.1 - 2018-08-23]
### Added
- Add caching to graph + instance endpoints to better handle traffic spikes.
### Fixed
- Added ON DELETE to `most_recent_crawl` table, such that it can handle previously-crawled but now-dead instances.
- You can now login to the admin view by clicking, not just by pressing enter.
- Add handling for weirdly-formatted Friendica peers.

View File

@ -4,7 +4,7 @@ defmodule Backend.MixProject do
def project do
[
app: :backend,
version: "2.7.0",
version: "2.7.1",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:phoenix, :gettext] ++ Mix.compilers(),

View File

@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "2.7.0",
"version": "2.7.1",
"private": true,
"scripts": {
"start": "NODE_ENV=development react-scripts start",