release 2.7.1
This commit is contained in:
parent
93ef16589a
commit
53bc0d3090
10
CHANGELOG.md
10
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.
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "frontend",
|
||||
"version": "2.7.0",
|
||||
"version": "2.7.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "NODE_ENV=development react-scripts start",
|
||||
|
|
Loading…
Reference in a new issue