Merge branch 'master' into develop
This commit is contained in:
commit
f8c3867262
4 changed files with 14 additions and 8 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
# 0.1.9
|
||||||
|
|
||||||
|
## Bug fixes
|
||||||
|
|
||||||
|
* Don't log encrypted private messages [8859c96](https://github.com/diaspora/diaspora_federation/commit/8859c960ac2b771399ad42ccf795043aea4ec9a5)
|
||||||
|
|
||||||
# 0.1.8
|
# 0.1.8
|
||||||
|
|
||||||
## Feature
|
## Feature
|
||||||
|
|
|
||||||
12
Gemfile.lock
12
Gemfile.lock
|
|
@ -1,18 +1,18 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
diaspora_federation (0.1.8)
|
diaspora_federation (0.1.9)
|
||||||
faraday (>= 0.9.0, < 0.13.0)
|
faraday (>= 0.9.0, < 0.13.0)
|
||||||
faraday_middleware (>= 0.10.0, < 0.12.0)
|
faraday_middleware (>= 0.10.0, < 0.12.0)
|
||||||
nokogiri (~> 1.6, >= 1.6.8)
|
nokogiri (~> 1.6, >= 1.6.8)
|
||||||
typhoeus (~> 1.0)
|
typhoeus (~> 1.0)
|
||||||
valid (~> 1.0)
|
valid (~> 1.0)
|
||||||
diaspora_federation-json_schema (0.1.8)
|
diaspora_federation-json_schema (0.1.9)
|
||||||
diaspora_federation-rails (0.1.8)
|
diaspora_federation-rails (0.1.9)
|
||||||
actionpack (>= 4.2, < 6)
|
actionpack (>= 4.2, < 6)
|
||||||
diaspora_federation (= 0.1.8)
|
diaspora_federation (= 0.1.9)
|
||||||
diaspora_federation-test (0.1.8)
|
diaspora_federation-test (0.1.9)
|
||||||
diaspora_federation (= 0.1.8)
|
diaspora_federation (= 0.1.9)
|
||||||
fabrication (~> 2.16.0)
|
fabrication (~> 2.16.0)
|
||||||
uuid (~> 2.3.8)
|
uuid (~> 2.3.8)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
# Don't log received xml data.
|
# Don't log received xml data.
|
||||||
Rails.application.config.filter_parameters += [:xml]
|
Rails.application.config.filter_parameters += %i(xml aes_key encrypted_magic_envelope)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
module DiasporaFederation
|
module DiasporaFederation
|
||||||
# the gem version
|
# the gem version
|
||||||
VERSION = "0.1.8".freeze
|
VERSION = "0.1.9".freeze
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue