diaspora_federation-rails 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changelog.md +27 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbba04c89d7fe52475b41a5aec76dfa7da774549
|
4
|
+
data.tar.gz: 48c110d45515a0d879256ddc98cabe9bcc2d419b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4307cb6c96b46e5c90635b33c97208f51452c32acdde80431a8ec4f3400955d18616f3786b3d97f9baab0df20482d0778cc10e736545e0e1c53b9c2d2cc8ae7
|
7
|
+
data.tar.gz: 060a7f5b5b3beac39aa30641021b65fe36021cf417203ab8c199522c70514b7692ba7b9298480ef628484f7625fa12de572f15628a0c00bb8f7edaca876974bf
|
data/Changelog.md
CHANGED
@@ -1,12 +1,37 @@
|
|
1
|
+
# 0.2.2
|
2
|
+
|
3
|
+
## Features
|
4
|
+
|
5
|
+
* Add support for [diaspora://](https://diaspora.github.io/diaspora_federation/federation/diaspora_scheme.html) URIs and fetch linked entities (see [#75](https://github.com/diaspora/diaspora_federation/pull/75)) [#78](https://github.com/diaspora/diaspora_federation/pull/78) [#85](https://github.com/diaspora/diaspora_federation/pull/85)
|
6
|
+
* Fetch RFC 7033 WebFinger with fallback to legacy WebFinger [#74](https://github.com/diaspora/diaspora_federation/pull/74)
|
7
|
+
* Add support to receive and relay likes for comments [#81](https://github.com/diaspora/diaspora_federation/pull/81)
|
8
|
+
|
9
|
+
## Refactor
|
10
|
+
|
11
|
+
* Always raise a DiscoveryError when something with the discovery fails [#77](https://github.com/diaspora/diaspora_federation/pull/77)
|
12
|
+
* Tighten the validation of diaspora\* IDs [#86](https://github.com/diaspora/diaspora_federation/pull/86)
|
13
|
+
* Allow to receive non-public profiles without private data [#79](https://github.com/diaspora/diaspora_federation/pull/79)
|
14
|
+
* Remove `public` and `provider_display_name` from `Reshare` entity [#84](https://github.com/diaspora/diaspora_federation/pull/84)
|
15
|
+
|
16
|
+
## Bug fixes
|
17
|
+
|
18
|
+
* Allow reshares with no root [#73](https://github.com/diaspora/diaspora_federation/pull/73)
|
19
|
+
* Make `height` and `width` optional for photos [#76](https://github.com/diaspora/diaspora_federation/pull/76)
|
20
|
+
* Detect loops when fetching entities [#87](https://github.com/diaspora/diaspora_federation/pull/87)
|
21
|
+
|
22
|
+
## Documentation
|
23
|
+
|
24
|
+
* Add documentation for the future of the `Reshare` entity (see [#83](https://github.com/diaspora/diaspora_federation/pull/83)) [#84](https://github.com/diaspora/diaspora_federation/pull/84)
|
25
|
+
|
1
26
|
# 0.2.1
|
2
27
|
|
3
28
|
## Features
|
4
29
|
|
5
|
-
Add `DiasporaFederation::Schemas` to access the JSON schema [#70](https://github.com/diaspora/diaspora_federation/pull/70)
|
30
|
+
* Add `DiasporaFederation::Schemas` to access the JSON schema [#70](https://github.com/diaspora/diaspora_federation/pull/70)
|
6
31
|
|
7
32
|
## Refactor
|
8
33
|
|
9
|
-
Don't add optional properties to generated XML and JSON when nil [#71](https://github.com/diaspora/diaspora_federation/pull/71)
|
34
|
+
* Don't add optional properties to generated XML and JSON when nil [#71](https://github.com/diaspora/diaspora_federation/pull/71)
|
10
35
|
|
11
36
|
# 0.2.0
|
12
37
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: diaspora_federation-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Neff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - '='
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.2.
|
39
|
+
version: 0.2.2
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - '='
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.2.
|
46
|
+
version: 0.2.2
|
47
47
|
description: A rails engine that adds the diaspora* federation protocol to a rails
|
48
48
|
app
|
49
49
|
email:
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
87
|
rubyforge_project:
|
88
|
-
rubygems_version: 2.6.
|
88
|
+
rubygems_version: 2.6.13
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: diaspora* federation rails engine
|