From 53bc0d3090899306e562f66ea33d187a083786d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bror=20Bojl=C3=A9n?= Date: Fri, 23 Aug 2019 13:52:29 +0200 Subject: [PATCH] release 2.7.1 --- CHANGELOG.md | 10 ++++++++-- backend/mix.exs | 2 +- frontend/package.json | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60e046d..dc225de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/backend/mix.exs b/backend/mix.exs index 581e4e5..4a5bd65 100644 --- a/backend/mix.exs +++ b/backend/mix.exs @@ -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(), diff --git a/frontend/package.json b/frontend/package.json index 54c25c6..6ccfc62 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "2.7.0", + "version": "2.7.1", "private": true, "scripts": { "start": "NODE_ENV=development react-scripts start",