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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 38ee600c39564ad75550dde7a8080efc601a1189785e1d9ca7b80566329cbf37
4
- data.tar.gz: 5807af9013093fc481bc91e615ae8e59102de8f35d996f5d2173609c625070cc
3
+ metadata.gz: cd7304610384c69ca580685469d7403031d89d6005e451abddb0d5ea6c8025ee
4
+ data.tar.gz: f6f830752ee86bbe70b5e38438ac80dd57100c34bb68994ec839d4976e6b3a69
5
5
  SHA512:
6
- metadata.gz: ad22908643476f8f42449adf05852c5efd3e018c8226a18dac6871701c76d56621a2c04eb0bb792d9e5d186a21218e501ecdf539a2fceed75fc126c37f54aef3
7
- data.tar.gz: ca8563767f2f618591acded3abe166f64d26f642e78ffb467e6cc1fe79c2bd172b27772ee6f8892cda298dd63d57ac96fa0ae1a3717440156de98b647c0ff504
6
+ metadata.gz: 248511f1c9c10b93c553502c73d6e6921682e415ebdfae2ff5947aa6c2ef66a2330c3a48dde34a29107f34de3212fab91127478dae61d968ca4f348e6306199a
7
+ data.tar.gz: 931b6281fc69b9e990880d928317455ae64be5fa525bdf35b0bf4157c2685fd23f967835cc28120c7b32bd54f3cf2c94dfd99d449bffcd7e1ff7ec119bc7037c
data/CHANGELOG.md CHANGED
@@ -1,64 +1,74 @@
1
- # 0.9.0
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
- # 0.8.1
16
+ ## 0.8.1
7
17
 
8
- - Use external `trailer_vote-fixtures`.
18
+ - Use external `trailer_vote-fixtures`
9
19
 
10
- # 0.8.0
20
+ ## 0.8.0
11
21
 
12
22
  - Add `Issue` media type
13
23
  - Add `issues` link to configuration media type
14
24
 
15
- # 0.7.6
25
+ ## 0.7.6
16
26
 
17
27
  - Allow `content_*` to be `nil`
18
28
 
19
- # 0.7.5
29
+ ## 0.7.5
20
30
 
21
31
  - Add `content_language` and `content_region` to assets
22
32
 
23
- # 0.7.4
33
+ ## 0.7.4
24
34
 
25
35
  - Allow `type` on partial `image_links` (such as sentiment_feedback)
26
36
 
27
- # 0.7.3
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
- # 0.7.2
44
+ ## 0.7.2
35
45
 
36
46
  - Allow for `content_digest` and dimensions on image links (output)
37
47
 
38
- # 0.7.1
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
- # 0.7.0
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
- # 0.6.3
58
+ ## 0.6.3
49
59
 
50
60
  - Fix `product_video` create root key
51
61
 
52
- # 0.6.2
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
- # 0.6.1
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
- # 0.6.0
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
- # 0.5.0
80
+ ## 0.5.0
71
81
 
72
82
  :baby: initial public release. Not considered stable until version 1.0.0.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trailer_vote-media_types (0.9.1)
4
+ trailer_vote-media_types (0.9.2)
5
5
  media_types (>= 0.6.0, < 1)
6
6
 
7
7
  GEM
@@ -8,6 +8,7 @@ module TrailerVote
8
8
  # noinspection RubyConstantNamingConvention
9
9
  ProductMovieHandler = ::MediaTypes::Scheme.AnyOf(
10
10
  'youtube',
11
+ 'vimeo',
11
12
  'url'
12
13
  )
13
14
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module TrailerVote
4
4
  module MediaTypes
5
- VERSION = '0.9.1'
5
+ VERSION = '0.9.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trailer_vote-media_types
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Derk-Jan Karrenbeld