blazer 1.7.4 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of blazer might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb091c8d95137cd458bfffee889e305a70dbed00
4
- data.tar.gz: 338d05021f268691eb51b2861b41eff1a4b9135a
3
+ metadata.gz: 0265c97c2a0672f33553de90d304f7cfe6b329fd
4
+ data.tar.gz: 8b75dd5df6a79ca85ea0dc57fb9cce0c57041f2a
5
5
  SHA512:
6
- metadata.gz: ec12d42ac8fb5618abb2849860178c0ccd3778f8ceef897a3073f9fa9339ddf38149bf39c970bd0c1b12c91e82f88ef27bcd8fcc5b9530f725e20dead78794b1
7
- data.tar.gz: e863ec4b74f606885ffc15dd095cd5ee14fc9cc2283085fdf2fb04e6cbaaeb83a899cebe9a62eb17399c45f8c28aa2979e1355b308ae15b61cccc097ddde6d56
6
+ metadata.gz: 71cf44972395be5cbc664c6d37c9e85d8b2a4f33a70fec4d96da7f4fddff2e9fe4a89e99db42f2f150496c8ee2fe3f5c361d672bd3cbd3ef7fdf7aec653d9cd6
7
+ data.tar.gz: 0bd5ed95b4f97474e336e07cba17dc4b75188b22456c42a8aa8f85160866c58a2b83a6e27df644d25d756cd3b3da42d6324121853392e4ccf4ba24b23e65f00c
@@ -1,3 +1,8 @@
1
+ ## 1.7.5
2
+
3
+ - Fixed issue with check emails sometimes failing for default Rails 5 ActiveJob adapter
4
+ - Fixed sorting for new dashboards
5
+
1
6
  ## 1.7.4
2
7
 
3
8
  - Removed extra dependencies added in 1.7.1
data/README.md CHANGED
@@ -672,18 +672,7 @@ View the [changelog](https://github.com/ankane/blazer/blob/master/CHANGELOG.md)
672
672
 
673
673
  ## Thanks
674
674
 
675
- Blazer uses a number of awesome, open source projects.
676
-
677
- - [Rails](https://github.com/rails/rails/)
678
- - [jQuery](https://github.com/jquery/jquery)
679
- - [Bootstrap](https://github.com/twbs/bootstrap)
680
- - [Selectize](https://github.com/brianreavis/selectize.js)
681
- - [List.js](https://github.com/javve/list.js)
682
- - [StickyTableHeaders](https://github.com/jmosbech/StickyTableHeaders)
683
- - [Stupid jQuery Table Sort](https://github.com/joequery/Stupid-Table-Plugin)
684
- - [Date Range Picker](https://github.com/dangrossman/bootstrap-daterangepicker)
685
-
686
- Created by [ankane](https://github.com/ankane) and [righi](https://github.com/righi)
675
+ Blazer uses a number of awesome open source projects, including [Rails](https://github.com/rails/rails/), [Vue.js](https://github.com/vuejs/vue), [jQuery](https://github.com/jquery/jquery), [Bootstrap](https://github.com/twbs/bootstrap), [Selectize](https://github.com/brianreavis/selectize.js), [StickyTableHeaders](https://github.com/jmosbech/StickyTableHeaders), [Stupid jQuery Table Sort](https://github.com/joequery/Stupid-Table-Plugin), and [Date Range Picker](https://github.com/dangrossman/bootstrap-daterangepicker).
687
676
 
688
677
  Demo data from [MovieLens](http://grouplens.org/datasets/movielens/).
689
678
 
@@ -58,7 +58,7 @@ module Blazer
58
58
 
59
59
  # do not notify on creation, except when not passing
60
60
  if (state_was != "new" || state != "passing") && state != state_was && emails.present?
61
- Blazer::CheckMailer.state_change(self, state, state_was, result.rows.size, message, result.columns, result.rows.first(10).as_json, result.column_types, check_type).deliver_later
61
+ Blazer::CheckMailer.state_change(self, state, state_was, result.rows.size, message, result.columns, result.rows.first(10).as_json, result.column_types, check_type).deliver_now
62
62
  end
63
63
  save! if changed?
64
64
  end
@@ -24,7 +24,7 @@
24
24
  </td>
25
25
  <td><%= check.schedule if check.respond_to?(:schedule) %></td>
26
26
  <td>
27
- <ul class="list-unstyled" style="margin-bottom: 0;">
27
+ <ul class="list-unstyled" style="margin-bottom: 0; word-break: break-all;">
28
28
  <% check.split_emails.each do |email| %>
29
29
  <li><%= email %></li>
30
30
  <% end %>
@@ -7,7 +7,7 @@
7
7
  <%= f.label :name %>
8
8
  <%= f.text_field :name, class: "form-control" %>
9
9
  </div>
10
- <div class="form-group" v-if="queries.length">
10
+ <div class="form-group" v-show="queries.length">
11
11
  <%= f.label :charts %>
12
12
  <ul id="queries" class="list-group">
13
13
  <li class="list-group-item" v-for="(query, index) in queries" :key="query.id" v-cloak>
@@ -1,3 +1,3 @@
1
1
  module Blazer
2
- VERSION = "1.7.4"
2
+ VERSION = "1.7.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blazer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.4
4
+ version: 1.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-06 00:00:00.000000000 Z
11
+ date: 2016-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails