trailer_vote-media_types 0.9.1 → 0.9.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 +26 -16
- data/Gemfile.lock +1 -1
- data/lib/trailer_vote/media_types/types/product_movie_handler.rb +1 -0
- data/lib/trailer_vote/media_types/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd7304610384c69ca580685469d7403031d89d6005e451abddb0d5ea6c8025ee
|
4
|
+
data.tar.gz: f6f830752ee86bbe70b5e38438ac80dd57100c34bb68994ec839d4976e6b3a69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 248511f1c9c10b93c553502c73d6e6921682e415ebdfae2ff5947aa6c2ef66a2330c3a48dde34a29107f34de3212fab91127478dae61d968ca4f348e6306199a
|
7
|
+
data.tar.gz: 931b6281fc69b9e990880d928317455ae64be5fa525bdf35b0bf4157c2685fd23f967835cc28120c7b32bd54f3cf2c94dfd99d449bffcd7e1ff7ec119bc7037c
|
data/CHANGELOG.md
CHANGED
@@ -1,64 +1,74 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 0.9.2
|
4
|
+
|
5
|
+
- Add vimeo as video handler
|
6
|
+
|
7
|
+
## 0.9.1
|
8
|
+
|
9
|
+
- Allow empty for various `index` and `collection` views
|
10
|
+
|
11
|
+
## 0.9.0
|
2
12
|
|
3
13
|
- Add `issue` media type
|
4
14
|
- Update `trailer_vote-fixtures` to 1.2.0
|
5
15
|
|
6
|
-
|
16
|
+
## 0.8.1
|
7
17
|
|
8
|
-
- Use external `trailer_vote-fixtures
|
18
|
+
- Use external `trailer_vote-fixtures`
|
9
19
|
|
10
|
-
|
20
|
+
## 0.8.0
|
11
21
|
|
12
22
|
- Add `Issue` media type
|
13
23
|
- Add `issues` link to configuration media type
|
14
24
|
|
15
|
-
|
25
|
+
## 0.7.6
|
16
26
|
|
17
27
|
- Allow `content_*` to be `nil`
|
18
28
|
|
19
|
-
|
29
|
+
## 0.7.5
|
20
30
|
|
21
31
|
- Add `content_language` and `content_region` to assets
|
22
32
|
|
23
|
-
|
33
|
+
## 0.7.4
|
24
34
|
|
25
35
|
- Allow `type` on partial `image_links` (such as sentiment_feedback)
|
26
36
|
|
27
|
-
|
37
|
+
## 0.7.3
|
28
38
|
|
29
39
|
- Add `type` to image self link
|
30
40
|
- Add `type` to image index links
|
31
41
|
- Add `type` to video self link
|
32
42
|
- Add `type` to video index links
|
33
43
|
|
34
|
-
|
44
|
+
## 0.7.2
|
35
45
|
|
36
46
|
- Allow for `content_digest` and dimensions on image links (output)
|
37
47
|
|
38
|
-
|
48
|
+
## 0.7.1
|
39
49
|
|
40
50
|
- Fix version 2 of sentiment feedback not registering
|
41
51
|
- Change default version of sentiment feedback to v2
|
42
52
|
|
43
|
-
|
53
|
+
## 0.7.0
|
44
54
|
|
45
55
|
- Add `products` link to configuration v1
|
46
56
|
- Add scheme validation for `data` property of products
|
47
57
|
|
48
|
-
|
58
|
+
## 0.6.3
|
49
59
|
|
50
60
|
- Fix `product_video` create root key
|
51
61
|
|
52
|
-
|
62
|
+
## 0.6.2
|
53
63
|
|
54
64
|
- Loosen Gem dependency versions to allow any minor update, except for dogfooded gems, which are allowed major updates, until they hit 1.0.0
|
55
65
|
- Add metadata urls for gemspec
|
56
66
|
|
57
|
-
|
67
|
+
## 0.6.1
|
58
68
|
|
59
69
|
- Allow for http urls because not all services in all environments may operate with TLS enabled.
|
60
70
|
|
61
|
-
|
71
|
+
## 0.6.0
|
62
72
|
|
63
73
|
- Update `media_types` to `0.6.0` so that the integrations become available downstream.
|
64
74
|
- Rename all `deleted_at` to `expires_at` (#1)
|
@@ -67,6 +77,6 @@
|
|
67
77
|
- Add expected type for `ProductLookup` `identifier` (#5)
|
68
78
|
- Remove optional nil for analytics and metrics url by changing the type (#3)
|
69
79
|
|
70
|
-
|
80
|
+
## 0.5.0
|
71
81
|
|
72
82
|
:baby: initial public release. Not considered stable until version 1.0.0.
|
data/Gemfile.lock
CHANGED