pact_broker 2.36.0 → 2.36.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 248fdb1abb2fb57331796c6e974be143889a589a
4
- data.tar.gz: 3c51b8d3b502ffcdc222a0dc8a6b752fbd0876ae
3
+ metadata.gz: 6f548b10f34b5932038ac4b65943dd13fe86ec93
4
+ data.tar.gz: 48415859d4d16b2b92bf5154e232185c6a851274
5
5
  SHA512:
6
- metadata.gz: 99770d645322dbd544ab387a283245c50f24e358e15a5afe2a15b9cb453ef7235815f3cf1d3533d443bc785551fca1e94179862e2b47d3270face9879e9d2a61
7
- data.tar.gz: 0ddb143e53ffeaea209268239e64095222b6fcf19047fc0d464ad33dfaaaee02385a37e6a41cb5a97c4ad147f9f729a55d5ed0df5484fd88f7a47391eaef0e7b
6
+ metadata.gz: 34d7eea98e2502d1740afa9f92cdd9f0aa9e4812f26fa16e0091ce5d1e0875ad6f0b56bd5ed4c246baa626f9749a1e353627a878829ca7ec7fbc91872c6f7829
7
+ data.tar.gz: c65cb9caa13006cbe9291fdd3cec51993fc056a8172ac45ee81ece334ccb0c129d25407653d675dc1c0f610c8c60c1657f854b152eac2d561764d98369838b0f
@@ -1,3 +1,12 @@
1
+ <a name="v2.36.1"></a>
2
+ ### v2.36.1 (2019-08-30)
3
+
4
+
5
+ #### Bug Fixes
6
+
7
+ * do not show clipboard icon if version is blank (#297) ([36948fe1](/../../commit/36948fe1))
8
+
9
+
1
10
  <a name="v2.36.0"></a>
2
11
  ### v2.36.0 (2019-08-30)
3
12
 
@@ -41,8 +41,9 @@
41
41
  %td.consumer-version-number
42
42
  %div.clippable
43
43
  = escape_html(index_item.consumer_version_number)
44
- %button.clippy.invisible{ title: "Copy to clipboard" }
45
- %span.glyphicon.glyphicon-copy
44
+ - if index_item.consumer_version_number
45
+ %button.clippy.invisible{ title: "Copy to clipboard" }
46
+ %span.glyphicon.glyphicon-copy
46
47
  - if index_item.latest?
47
48
  .tag.label.label-success
48
49
  latest
@@ -60,8 +61,9 @@
60
61
  %td.provider-version-number
61
62
  %div.clippable
62
63
  = escape_html(index_item.provider_version_number)
63
- %button.clippy.invisible{ title: "Copy to clipboard" }
64
- %span.glyphicon.glyphicon-copy
64
+ - if index_item.provider_version_number
65
+ %button.clippy.invisible{ title: "Copy to clipboard" }
66
+ %span.glyphicon.glyphicon-copy
65
67
  - index_item.provider_version_latest_tag_names.each do | tag_name |
66
68
  .tag.label.label-primary
67
69
  = escape_html(tag_name)
@@ -106,8 +106,9 @@
106
106
  %div.clippable
107
107
  %a{href: line.consumer_version_number_url}
108
108
  = line.display_consumer_version_number
109
- %button.clippy.invisible{ title: "Copy to clipboard" }
110
- %span.glyphicon.glyphicon-copy
109
+ - if line.display_consumer_version_number
110
+ %button.clippy.invisible{ title: "Copy to clipboard" }
111
+ %span.glyphicon.glyphicon-copy
111
112
  - line.latest_consumer_version_tags.each do | tag |
112
113
  .tag-parent{"title": tag.tooltip, "data-toggle": "tooltip", "data-placement": "right"}
113
114
  %a{href: tag.url}
@@ -132,8 +133,9 @@
132
133
  %div.clippable
133
134
  %a{href: line.provider_version_number_url}
134
135
  = line.display_provider_version_number
135
- %button.clippy.invisible{ title: "Copy to clipboard" }
136
- %span.glyphicon.glyphicon-copy
136
+ - if line.display_provider_version_number
137
+ %button.clippy.invisible{ title: "Copy to clipboard" }
138
+ %span.glyphicon.glyphicon-copy
137
139
  - line.latest_provider_version_tags.each do | tag |
138
140
  .tag-parent{"title": tag.tooltip, "data-toggle": "tooltip", "data-placement": "right"}
139
141
  %a{href: tag.url}
@@ -1,3 +1,3 @@
1
1
  module PactBroker
2
- VERSION = '2.36.0'
2
+ VERSION = '2.36.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pact_broker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.36.0
4
+ version: 2.36.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bethany Skurrie
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-08-29 00:00:00.000000000 Z
13
+ date: 2019-08-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: httparty