Bump version to 2.6.1
This commit is contained in:
parent
b1ea63b4c6
commit
ad6a6aa07b
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## 2.6.1
|
||||||
|
### Changed
|
||||||
|
- - Document maximum supported version of Erlang & Elixir
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- [docs] add frontends management documentation
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- TwitterAPI: Return proper error when healthcheck is disabled
|
||||||
|
- - Fix eblurhash and elixir-captcha not using system cflags
|
||||||
|
|
||||||
## 2.6.0
|
## 2.6.0
|
||||||
### Security
|
### Security
|
||||||
- Preload: Make generated JSON html-safe. It already was html safe because it only consists of config data that is base64 encoded, but this will keep it safe it that ever changes.
|
- Preload: Make generated JSON html-safe. It already was html safe because it only consists of config data that is base64 encoded, but this will keep it safe it that ever changes.
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix XML External Entity (XXE) loading vulnerability allowing to fetch arbitary files from the server's filesystem
|
|
|
@ -1 +0,0 @@
|
||||||
CommonAPI: Prevent users from accessing media of other users by creating a status with reused attachment ID
|
|
|
@ -1 +0,0 @@
|
||||||
- Document maximum supported version of Erlang & Elixir
|
|
|
@ -1 +0,0 @@
|
||||||
Emoji pack loader sanitizes pack names
|
|
|
@ -1 +0,0 @@
|
||||||
[docs] add frontends management documentation
|
|
|
@ -1 +0,0 @@
|
||||||
TwitterAPI: Return proper error when healthcheck is disabled
|
|
|
@ -1 +0,0 @@
|
||||||
- Reduced permissions of config files and directories, distros requiring greater permissions like group-read need to pre-create the directories
|
|
|
@ -1 +0,0 @@
|
||||||
- Fix eblurhash and elixir-captcha not using system cflags
|
|
2
mix.exs
2
mix.exs
|
@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :pleroma,
|
app: :pleroma,
|
||||||
version: version("2.6.0"),
|
version: version("2.6.1"),
|
||||||
elixir: "~> 1.11",
|
elixir: "~> 1.11",
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
compilers: [:phoenix] ++ Mix.compilers(),
|
compilers: [:phoenix] ++ Mix.compilers(),
|
||||||
|
|
Loading…
Reference in New Issue