blazer 1.7.7 → 2.6.4
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 +5 -5
- data/CHANGELOG.md +242 -33
- data/CONTRIBUTING.md +42 -0
- data/LICENSE.txt +1 -1
- data/README.md +621 -211
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.svg +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/images/blazer/favicon.png +0 -0
- data/app/assets/javascripts/blazer/Chart.js +15658 -10011
- data/app/assets/javascripts/blazer/Sortable.js +3413 -848
- data/app/assets/javascripts/blazer/ace/ace.js +21294 -4
- data/app/assets/javascripts/blazer/ace/ext-language_tools.js +1991 -3
- data/app/assets/javascripts/blazer/ace/mode-sql.js +110 -1
- data/app/assets/javascripts/blazer/ace/snippets/sql.js +40 -1
- data/app/assets/javascripts/blazer/ace/snippets/text.js +14 -1
- data/app/assets/javascripts/blazer/ace/theme-twilight.js +116 -1
- data/app/assets/javascripts/blazer/application.js +5 -3
- data/app/assets/javascripts/blazer/bootstrap.js +842 -628
- data/app/assets/javascripts/blazer/chartkick.js +2015 -1244
- data/app/assets/javascripts/blazer/daterangepicker.js +372 -299
- data/app/assets/javascripts/blazer/highlight.min.js +3 -0
- data/app/assets/javascripts/blazer/{jquery_ujs.js → jquery-ujs.js} +161 -75
- data/app/assets/javascripts/blazer/jquery.js +10126 -9562
- data/app/assets/javascripts/blazer/jquery.stickytableheaders.js +321 -259
- data/app/assets/javascripts/blazer/moment-timezone-with-data.js +1546 -0
- data/app/assets/javascripts/blazer/moment.js +5085 -2460
- data/app/assets/javascripts/blazer/queries.js +18 -4
- data/app/assets/javascripts/blazer/routes.js +3 -0
- data/app/assets/javascripts/blazer/selectize.js +3828 -3604
- data/app/assets/javascripts/blazer/stupidtable-custom-settings.js +13 -0
- data/app/assets/javascripts/blazer/stupidtable.js +254 -87
- data/app/assets/javascripts/blazer/vue.js +11175 -6676
- data/app/assets/stylesheets/blazer/application.css +51 -6
- data/app/assets/stylesheets/blazer/bootstrap-propshaft.css +10 -0
- data/app/assets/stylesheets/blazer/bootstrap-sprockets.css.erb +10 -0
- data/app/assets/stylesheets/blazer/{bootstrap.css.erb → bootstrap.css} +1337 -711
- data/app/assets/stylesheets/blazer/{daterangepicker-bs3.css → daterangepicker.css} +207 -172
- data/app/assets/stylesheets/blazer/{selectize.default.css → selectize.css} +26 -10
- data/app/controllers/blazer/base_controller.rb +73 -46
- data/app/controllers/blazer/checks_controller.rb +1 -1
- data/app/controllers/blazer/dashboards_controller.rb +7 -13
- data/app/controllers/blazer/queries_controller.rb +171 -51
- data/app/controllers/blazer/uploads_controller.rb +147 -0
- data/app/helpers/blazer/base_helper.rb +6 -16
- data/app/models/blazer/audit.rb +3 -3
- data/app/models/blazer/check.rb +31 -5
- data/app/models/blazer/dashboard.rb +6 -2
- data/app/models/blazer/dashboard_query.rb +1 -1
- data/app/models/blazer/query.rb +30 -4
- data/app/models/blazer/record.rb +5 -0
- data/app/models/blazer/upload.rb +11 -0
- data/app/models/blazer/uploads_connection.rb +7 -0
- data/app/views/blazer/_nav.html.erb +3 -1
- data/app/views/blazer/_variables.html.erb +48 -23
- data/app/views/blazer/check_mailer/failing_checks.html.erb +1 -0
- data/app/views/blazer/check_mailer/state_change.html.erb +1 -0
- data/app/views/blazer/checks/_form.html.erb +17 -9
- data/app/views/blazer/checks/edit.html.erb +2 -0
- data/app/views/blazer/checks/index.html.erb +37 -5
- data/app/views/blazer/checks/new.html.erb +2 -0
- data/app/views/blazer/dashboards/_form.html.erb +5 -5
- data/app/views/blazer/dashboards/edit.html.erb +2 -0
- data/app/views/blazer/dashboards/new.html.erb +2 -0
- data/app/views/blazer/dashboards/show.html.erb +13 -7
- data/app/views/blazer/queries/_caching.html.erb +16 -0
- data/app/views/blazer/queries/_cohorts.html.erb +48 -0
- data/app/views/blazer/queries/_form.html.erb +23 -13
- data/app/views/blazer/queries/docs.html.erb +137 -0
- data/app/views/blazer/queries/home.html.erb +21 -7
- data/app/views/blazer/queries/run.html.erb +64 -29
- data/app/views/blazer/queries/schema.html.erb +44 -7
- data/app/views/blazer/queries/show.html.erb +15 -8
- data/app/views/blazer/uploads/_form.html.erb +27 -0
- data/app/views/blazer/uploads/edit.html.erb +3 -0
- data/app/views/blazer/uploads/index.html.erb +55 -0
- data/app/views/blazer/uploads/new.html.erb +3 -0
- data/app/views/layouts/blazer/application.html.erb +10 -5
- data/config/routes.rb +10 -1
- data/lib/blazer/adapters/athena_adapter.rb +182 -0
- data/lib/blazer/adapters/base_adapter.rb +24 -1
- data/lib/blazer/adapters/bigquery_adapter.rb +79 -0
- data/lib/blazer/adapters/cassandra_adapter.rb +70 -0
- data/lib/blazer/adapters/drill_adapter.rb +38 -0
- data/lib/blazer/adapters/druid_adapter.rb +102 -0
- data/lib/blazer/adapters/elasticsearch_adapter.rb +30 -18
- data/lib/blazer/adapters/hive_adapter.rb +55 -0
- data/lib/blazer/adapters/ignite_adapter.rb +64 -0
- data/lib/blazer/adapters/influxdb_adapter.rb +57 -0
- data/lib/blazer/adapters/mongodb_adapter.rb +5 -1
- data/lib/blazer/adapters/neo4j_adapter.rb +62 -0
- data/lib/blazer/adapters/opensearch_adapter.rb +52 -0
- data/lib/blazer/adapters/presto_adapter.rb +9 -0
- data/lib/blazer/adapters/salesforce_adapter.rb +50 -0
- data/lib/blazer/adapters/snowflake_adapter.rb +82 -0
- data/lib/blazer/adapters/soda_adapter.rb +105 -0
- data/lib/blazer/adapters/spark_adapter.rb +14 -0
- data/lib/blazer/adapters/sql_adapter.rb +187 -20
- data/{app/mailers → lib}/blazer/check_mailer.rb +0 -0
- data/lib/blazer/data_source.rb +107 -30
- data/lib/blazer/engine.rb +21 -23
- data/lib/blazer/result.rb +95 -29
- data/lib/blazer/run_statement.rb +8 -4
- data/lib/blazer/run_statement_job.rb +8 -9
- data/lib/blazer/slack_notifier.rb +94 -0
- data/lib/blazer/statement.rb +75 -0
- data/lib/blazer/version.rb +1 -1
- data/lib/blazer.rb +154 -26
- data/lib/generators/blazer/install_generator.rb +7 -18
- data/lib/generators/blazer/templates/{config.yml → config.yml.tt} +26 -3
- data/lib/generators/blazer/templates/{install.rb → install.rb.tt} +6 -4
- data/lib/generators/blazer/templates/uploads.rb.tt +10 -0
- data/lib/generators/blazer/uploads_generator.rb +18 -0
- data/lib/tasks/blazer.rake +11 -1
- data/licenses/LICENSE-ace.txt +24 -0
- data/licenses/LICENSE-bootstrap.txt +21 -0
- data/licenses/LICENSE-chart.js.txt +9 -0
- data/licenses/LICENSE-chartkick.js.txt +22 -0
- data/licenses/LICENSE-daterangepicker.txt +21 -0
- data/licenses/LICENSE-fuzzysearch.txt +20 -0
- data/licenses/LICENSE-highlight.js.txt +29 -0
- data/licenses/LICENSE-jquery-ujs.txt +20 -0
- data/licenses/LICENSE-jquery.txt +20 -0
- data/licenses/LICENSE-moment-timezone.txt +20 -0
- data/licenses/LICENSE-moment.txt +22 -0
- data/licenses/LICENSE-selectize.txt +202 -0
- data/licenses/LICENSE-sortable.txt +21 -0
- data/licenses/LICENSE-stickytableheaders.txt +20 -0
- data/licenses/LICENSE-stupidtable.txt +19 -0
- data/licenses/LICENSE-vue.txt +21 -0
- metadata +83 -53
- data/.gitignore +0 -14
- data/Gemfile +0 -4
- data/Rakefile +0 -1
- data/app/assets/javascripts/blazer/highlight.pack.js +0 -1
- data/app/assets/javascripts/blazer/moment-timezone.js +0 -1007
- data/blazer.gemspec +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b32d2190afc8df872db60250651c97eae9d202d0b23042a4b853169edbc2d458
|
|
4
|
+
data.tar.gz: 64cb17476627ce2108e2aaf9619648e4a743774983c29bcb7478a3b4500f4617
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6eb64793a84ba433e6a68caaa5419dbcbb3f80ae842854b486f552459e77b434bc7d43bacf1d97175fea1857c74e66b440f7de55cc1e591133740f47ea84f18
|
|
7
|
+
data.tar.gz: 0723a52bb56f41d3526d66799f19a6fa82b91cd51aa3a35b5bede9523012bc0cee291db1f6e71eb74657c8e595ac0dc1b3f20febb1687121c35830456b924c2a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,234 @@
|
|
|
1
|
-
##
|
|
1
|
+
## 2.6.4 (2022-05-24)
|
|
2
|
+
|
|
3
|
+
- Fixed error with caching
|
|
4
|
+
|
|
5
|
+
## 2.6.3 (2022-05-11)
|
|
6
|
+
|
|
7
|
+
- Fixed error with canceling queries
|
|
8
|
+
|
|
9
|
+
## 2.6.2 (2022-05-06)
|
|
10
|
+
|
|
11
|
+
- Fixed error with Postgres when prepared statements are disabled with Rails < 6.1
|
|
12
|
+
|
|
13
|
+
## 2.6.1 (2022-04-21)
|
|
14
|
+
|
|
15
|
+
- Added `region` setting to Amazon Athena
|
|
16
|
+
- Fixed error with MySQL for Rails < 7
|
|
17
|
+
- Fixed error with binary data
|
|
18
|
+
|
|
19
|
+
## 2.6.0 (2022-04-20)
|
|
20
|
+
|
|
21
|
+
- Fixed quoting issue with variables
|
|
22
|
+
- Custom adapters now need to specify how to quote variables in queries
|
|
23
|
+
- Added experimental support for Propshaft
|
|
24
|
+
- Fixed error with empty results with InfluxDB
|
|
25
|
+
|
|
26
|
+
## 2.5.0 (2022-01-04)
|
|
27
|
+
|
|
28
|
+
- Added support for Slack OAuth tokens
|
|
29
|
+
- Added experimental support for AnomalyDetection.rb
|
|
30
|
+
- Improved table preview for MySQL
|
|
31
|
+
- Fixed cohort analysis for MySQL
|
|
32
|
+
|
|
33
|
+
## 2.4.8 (2021-12-07)
|
|
34
|
+
|
|
35
|
+
- Added support for OpenSearch
|
|
36
|
+
- Removed `elasticsearch-xpack` dependency for Elasticsearch
|
|
37
|
+
|
|
38
|
+
## 2.4.7 (2021-09-25)
|
|
39
|
+
|
|
40
|
+
- Made Action Mailer optional
|
|
41
|
+
- Fixed error with multiple maps on dashboard
|
|
42
|
+
|
|
43
|
+
## 2.4.6 (2021-09-20)
|
|
44
|
+
|
|
45
|
+
- Added support for workgroup with Amazon Athena
|
|
46
|
+
- Added casting for timestamp with time zone columns with Amazon Athena
|
|
47
|
+
- Added support for setting credentials in config file with Amazon Athena
|
|
48
|
+
- Made output location optional with Amazon Athena
|
|
49
|
+
- Fixed casting error for `NULL` values with Amazon Athena
|
|
50
|
+
- Fixed issue with Google BigQuery only showing first page of results
|
|
51
|
+
|
|
52
|
+
## 2.4.5 (2021-09-15)
|
|
53
|
+
|
|
54
|
+
- Improved fix for some forked queries not appearing on home page
|
|
55
|
+
|
|
56
|
+
## 2.4.4 (2021-09-15)
|
|
57
|
+
|
|
58
|
+
- Fixed issue with some forked queries not appearing on home page
|
|
59
|
+
|
|
60
|
+
## 2.4.3 (2021-07-27)
|
|
61
|
+
|
|
62
|
+
- Added Prophet anomaly detection
|
|
63
|
+
- Fixed style for new select items
|
|
64
|
+
|
|
65
|
+
## 2.4.2 (2021-02-08)
|
|
66
|
+
|
|
67
|
+
- Added support for Apache Ignite
|
|
68
|
+
|
|
69
|
+
## 2.4.1 (2021-01-25)
|
|
70
|
+
|
|
71
|
+
- Added cohorts for MySQL
|
|
72
|
+
- Added support for Apache Hive and Apache Spark
|
|
73
|
+
- Fixed deprecation warning with Active Record 6.1
|
|
74
|
+
|
|
75
|
+
## 2.4.0 (2020-12-15)
|
|
76
|
+
|
|
77
|
+
- Added cohorts
|
|
78
|
+
- Fixed broken routes for some applications
|
|
79
|
+
- Forecasting and uploads are no longer experimental
|
|
80
|
+
|
|
81
|
+
## 2.3.1 (2020-11-23)
|
|
82
|
+
|
|
83
|
+
- Improved column names for uploads
|
|
84
|
+
|
|
85
|
+
## 2.3.0 (2020-11-16)
|
|
86
|
+
|
|
87
|
+
- Added support for archiving queries
|
|
88
|
+
- Added experimental support for uploads
|
|
89
|
+
|
|
90
|
+
## 2.2.8 (2020-11-01)
|
|
91
|
+
|
|
92
|
+
- Fixed error when deleting dashboard
|
|
93
|
+
|
|
94
|
+
## 2.2.7 (2020-09-07)
|
|
95
|
+
|
|
96
|
+
- Use `datetime` type in migration
|
|
97
|
+
- Fixed unpermitted parameters on dashboard page
|
|
98
|
+
- Fixed deprecation warnings in Ruby 2.7
|
|
99
|
+
|
|
100
|
+
## 2.2.6 (2020-07-21)
|
|
101
|
+
|
|
102
|
+
- Added experimental support for InfluxDB
|
|
103
|
+
- Added support for forecasting week, month, quarter, and year with Prophet
|
|
104
|
+
- Fixed forecasting link not showing up
|
|
105
|
+
|
|
106
|
+
## 2.2.5 (2020-06-03)
|
|
107
|
+
|
|
108
|
+
- Updated maps to fix deprecation error
|
|
109
|
+
|
|
110
|
+
## 2.2.4 (2020-05-30)
|
|
111
|
+
|
|
112
|
+
- Fixed error with new queries
|
|
113
|
+
|
|
114
|
+
## 2.2.3 (2020-05-30)
|
|
115
|
+
|
|
116
|
+
- Improved query parameter handling
|
|
117
|
+
|
|
118
|
+
## 2.2.2 (2020-04-13)
|
|
119
|
+
|
|
120
|
+
- Added experimental support for the Socrata Open Data API (SODA)
|
|
121
|
+
- Added experimental Prophet forecasting
|
|
122
|
+
- Fixed query search for non-ASCII characters
|
|
123
|
+
|
|
124
|
+
## 2.2.1 (2019-10-08)
|
|
125
|
+
|
|
126
|
+
- Added support for Sprockets 4
|
|
127
|
+
- Improved Snowflake table preview
|
|
128
|
+
- Fixed bug with refresh link not showing
|
|
129
|
+
|
|
130
|
+
## 2.2.0 (2019-07-12)
|
|
131
|
+
|
|
132
|
+
- Added schema to table preview for Postgres and Redshift
|
|
133
|
+
- Fixed bug with Slack notifications not sending
|
|
134
|
+
- Dropped support for Rails 4.2
|
|
135
|
+
|
|
136
|
+
## 2.1.0 (2019-06-04)
|
|
137
|
+
|
|
138
|
+
- Require latest Chartkick to prevent possible XSS - see [#245](https://github.com/ankane/blazer/issues/245)
|
|
139
|
+
|
|
140
|
+
## 2.0.2 (2019-05-26)
|
|
141
|
+
|
|
142
|
+
- Added support for variable transformation for blind indexing
|
|
143
|
+
- Added experimental support for Neo4j
|
|
144
|
+
- Added experimental support for Salesforce
|
|
145
|
+
- Fixed JavaScript sorting for numbers with commas
|
|
146
|
+
|
|
147
|
+
## 2.0.1 (2019-01-07)
|
|
148
|
+
|
|
149
|
+
- Added favicon
|
|
150
|
+
- Added search for checks and schema
|
|
151
|
+
- Added pie charts
|
|
152
|
+
- Added Trend anomaly detection
|
|
153
|
+
- Added forecasting
|
|
154
|
+
- Improved tooltips
|
|
155
|
+
- Improved docs for new installs
|
|
156
|
+
- Fixed error with canceling queries
|
|
157
|
+
|
|
158
|
+
## 2.0.0 (2019-01-03)
|
|
159
|
+
|
|
160
|
+
- Added support for Slack
|
|
161
|
+
- Added `async` option
|
|
162
|
+
- Added `override_csp` option
|
|
163
|
+
- Added smart variables, linked columns smart columns, and charts to inline docs
|
|
164
|
+
- Use SQL for Elasticsearch
|
|
165
|
+
- Fixed error with latest `google-cloud-bigquery`
|
|
166
|
+
|
|
167
|
+
Breaking changes
|
|
168
|
+
|
|
169
|
+
- Dropped support for Rails < 4.2
|
|
170
|
+
|
|
171
|
+
## 1.9.0 (2018-06-17)
|
|
172
|
+
|
|
173
|
+
- Prompt developers to check custom `before_action`
|
|
174
|
+
- Better ordering on home page
|
|
175
|
+
- Added support for Snowflake
|
|
176
|
+
|
|
177
|
+
## 1.8.2 (2018-02-22)
|
|
178
|
+
|
|
179
|
+
- Added support for Cassandra
|
|
180
|
+
- Fixes for Druid
|
|
181
|
+
- Added support for Amazon Athena
|
|
182
|
+
- Added support for Druid
|
|
183
|
+
- Fixed query cancellation
|
|
184
|
+
|
|
185
|
+
There was no 1.8.1 release.
|
|
186
|
+
|
|
187
|
+
## 1.8.0 (2017-05-01)
|
|
188
|
+
|
|
189
|
+
- Added support for Rails 5.1
|
|
190
|
+
|
|
191
|
+
## 1.7.10 (2017-04-03)
|
|
192
|
+
|
|
193
|
+
- Added support for Google BigQuery
|
|
194
|
+
- Require `drill-sergeant` gem for Apache Drill
|
|
195
|
+
- Better handling of checks with variables
|
|
196
|
+
|
|
197
|
+
## 1.7.9 (2017-03-20)
|
|
198
|
+
|
|
199
|
+
- Added beta support for Apache Drill
|
|
200
|
+
- Added email validation for checks
|
|
201
|
+
- Updated Chart.js to 2.5.0
|
|
202
|
+
|
|
203
|
+
## 1.7.8 (2017-02-06)
|
|
204
|
+
|
|
205
|
+
- Added support for custom adapters
|
|
206
|
+
- Fixed bug with scatter charts on dashboards
|
|
207
|
+
- Fixed table preview for SQL Server
|
|
208
|
+
- Fixed issue when `default_url_options` set
|
|
209
|
+
|
|
210
|
+
## 1.7.7 (2016-12-17)
|
|
2
211
|
|
|
3
212
|
- Fixed preview error for MySQL
|
|
4
213
|
- Fixed error with timeouts for MySQL
|
|
5
214
|
|
|
6
|
-
## 1.7.6
|
|
215
|
+
## 1.7.6 (2016-12-13)
|
|
7
216
|
|
|
8
217
|
- Added scatter chart
|
|
9
218
|
- Fixed issue with false values showing up blank
|
|
10
219
|
- Fixed preview for table names with certain characters
|
|
11
220
|
|
|
12
|
-
## 1.7.5
|
|
221
|
+
## 1.7.5 (2016-11-22)
|
|
13
222
|
|
|
14
223
|
- Fixed issue with check emails sometimes failing for default Rails 5 ActiveJob adapter
|
|
15
224
|
- Fixed sorting for new dashboards
|
|
16
225
|
|
|
17
|
-
## 1.7.4
|
|
226
|
+
## 1.7.4 (2016-11-06)
|
|
18
227
|
|
|
19
228
|
- Removed extra dependencies added in 1.7.1
|
|
20
229
|
- Fixed `send_failing_checks` for default Rails 5 ActiveJob adapter
|
|
21
230
|
|
|
22
|
-
## 1.7.3
|
|
231
|
+
## 1.7.3 (2016-11-01)
|
|
23
232
|
|
|
24
233
|
- Fixed JavaScript errors
|
|
25
234
|
- Fixed query cancel error
|
|
@@ -27,20 +236,20 @@
|
|
|
27
236
|
- Include sample data in email when bad data checks fail
|
|
28
237
|
- Fixed deprecation warnings
|
|
29
238
|
|
|
30
|
-
## 1.7.2
|
|
239
|
+
## 1.7.2 (2016-10-30)
|
|
31
240
|
|
|
32
241
|
- Cancel all queries on page nav
|
|
33
242
|
- Prevent Ace from taking over find command
|
|
34
243
|
- Added ability to use hashes for smart columns
|
|
35
244
|
- Added ability to inherit smart variables and columns from other data sources
|
|
36
245
|
|
|
37
|
-
## 1.7.1
|
|
246
|
+
## 1.7.1 (2016-10-29)
|
|
38
247
|
|
|
39
248
|
- Do not fork when enter key pressed
|
|
40
249
|
- Use custom version of Chart.js to fix label overlap
|
|
41
250
|
- Improved performance of home page
|
|
42
251
|
|
|
43
|
-
## 1.7.0
|
|
252
|
+
## 1.7.0 (2016-09-07)
|
|
44
253
|
|
|
45
254
|
- Added ability to cancel queries on backend for Postgres and Redshift
|
|
46
255
|
- Only run 3 queries at a time on dashboards
|
|
@@ -48,65 +257,65 @@
|
|
|
48
257
|
- Attempt to reconnect when connection issues
|
|
49
258
|
- Fixed issues with caching
|
|
50
259
|
|
|
51
|
-
## 1.6.2
|
|
260
|
+
## 1.6.2 (2016-08-11)
|
|
52
261
|
|
|
53
262
|
- Added basic query permissions
|
|
54
263
|
- Added ability to use arrays and hashes for smart variables
|
|
55
264
|
- Added cancel button for queries
|
|
56
265
|
- Added `lat` and `lng` as map keys
|
|
57
266
|
|
|
58
|
-
## 1.6.1
|
|
267
|
+
## 1.6.1 (2016-07-30)
|
|
59
268
|
|
|
60
269
|
- Added support for Presto [beta]
|
|
61
270
|
- Added support for Elasticsearch timeouts
|
|
62
271
|
- Fixed error in Rails 5
|
|
63
272
|
|
|
64
|
-
## 1.6.0
|
|
273
|
+
## 1.6.0 (2016-07-28)
|
|
65
274
|
|
|
66
275
|
- Added support for MongoDB [beta]
|
|
67
276
|
- Added support for Elasticsearch [beta]
|
|
68
277
|
- Fixed deprecation warning in Rails 5
|
|
69
278
|
|
|
70
|
-
## 1.5.1
|
|
279
|
+
## 1.5.1 (2016-07-24)
|
|
71
280
|
|
|
72
281
|
- Added anomaly detection for data less than 2 weeks
|
|
73
282
|
- Added autolinking urls
|
|
74
283
|
- Added support for images
|
|
75
284
|
|
|
76
|
-
## 1.5.0
|
|
285
|
+
## 1.5.0 (2016-06-29)
|
|
77
286
|
|
|
78
287
|
- Added new bar chart format
|
|
79
288
|
- Added anomaly detection checks
|
|
80
289
|
- Added `async` option for polling
|
|
81
290
|
|
|
82
|
-
## 1.4.0
|
|
291
|
+
## 1.4.0 (2016-06-09)
|
|
83
292
|
|
|
84
293
|
- Added `slow` cache mode
|
|
85
294
|
- Fixed `BLAZER_DATABASE_URL required` error
|
|
86
295
|
- Fixed issue with duplicate column names
|
|
87
296
|
|
|
88
|
-
## 1.3.5
|
|
297
|
+
## 1.3.5 (2016-05-11)
|
|
89
298
|
|
|
90
299
|
- Fixed error with checks
|
|
91
300
|
|
|
92
|
-
## 1.3.4
|
|
301
|
+
## 1.3.4 (2016-05-11)
|
|
93
302
|
|
|
94
303
|
- Fixed issue with missing queries
|
|
95
304
|
|
|
96
|
-
## 1.3.3
|
|
305
|
+
## 1.3.3 (2016-05-08)
|
|
97
306
|
|
|
98
307
|
- Fixed error with Rails 4.1 and below
|
|
99
308
|
|
|
100
|
-
## 1.3.2
|
|
309
|
+
## 1.3.2 (2016-05-07)
|
|
101
310
|
|
|
102
311
|
- Added support for Rails 5
|
|
103
312
|
- Attempt to reconnect for checks
|
|
104
313
|
|
|
105
|
-
## 1.3.1
|
|
314
|
+
## 1.3.1 (2016-05-06)
|
|
106
315
|
|
|
107
316
|
- Fixed migration error
|
|
108
317
|
|
|
109
|
-
## 1.3.0
|
|
318
|
+
## 1.3.0 (2016-05-06)
|
|
110
319
|
|
|
111
320
|
- Added schedule for checks
|
|
112
321
|
- Switched to Chart.js for charts
|
|
@@ -115,11 +324,11 @@
|
|
|
115
324
|
- Raise error when timeout not supported
|
|
116
325
|
- Added creator to dashboards and checks
|
|
117
326
|
|
|
118
|
-
## 1.2.1
|
|
327
|
+
## 1.2.1 (2016-04-26)
|
|
119
328
|
|
|
120
329
|
- Fixed checks
|
|
121
330
|
|
|
122
|
-
## 1.2.0
|
|
331
|
+
## 1.2.0 (2016-03-22)
|
|
123
332
|
|
|
124
333
|
- Added non-editable queries
|
|
125
334
|
- Added variable defaults
|
|
@@ -128,7 +337,7 @@
|
|
|
128
337
|
- Hide variables from commented out lines
|
|
129
338
|
- Fixed regex as variable names
|
|
130
339
|
|
|
131
|
-
## 1.1.1
|
|
340
|
+
## 1.1.1 (2016-03-06)
|
|
132
341
|
|
|
133
342
|
- Added `before_action` option
|
|
134
343
|
- Added invert option for checks
|
|
@@ -137,7 +346,7 @@
|
|
|
137
346
|
- Fixed request URI too large
|
|
138
347
|
- Prevent accidental backspace nav on query page
|
|
139
348
|
|
|
140
|
-
## 1.1.0
|
|
349
|
+
## 1.1.0 (2015-12-27)
|
|
141
350
|
|
|
142
351
|
- Replaced pie charts with column charts
|
|
143
352
|
- Fixed error with datepicker
|
|
@@ -145,55 +354,55 @@
|
|
|
145
354
|
- Added a notice when editing a query that is part of a dashboard
|
|
146
355
|
- Added refresh for dashboards
|
|
147
356
|
|
|
148
|
-
## 1.0.4
|
|
357
|
+
## 1.0.4 (2015-11-04)
|
|
149
358
|
|
|
150
359
|
- Added recently viewed queries and dashboards to home page
|
|
151
360
|
- Fixed refresh when transform statement is used
|
|
152
361
|
- Fixed error when no user model
|
|
153
362
|
|
|
154
|
-
## 1.0.3
|
|
363
|
+
## 1.0.3 (2015-10-18)
|
|
155
364
|
|
|
156
365
|
- Added maps
|
|
157
366
|
- Added support for Rails 4.0
|
|
158
367
|
|
|
159
|
-
## 1.0.2
|
|
368
|
+
## 1.0.2 (2015-10-11)
|
|
160
369
|
|
|
161
370
|
- Fixed error when installing
|
|
162
371
|
- Added `schemas` option
|
|
163
372
|
|
|
164
|
-
## 1.0.1
|
|
373
|
+
## 1.0.1 (2015-10-08)
|
|
165
374
|
|
|
166
375
|
- Added comments to queries
|
|
167
376
|
- Added `cache` option
|
|
168
377
|
- Added `user_method` option
|
|
169
378
|
- Added `use_transaction` option
|
|
170
379
|
|
|
171
|
-
## 1.0.0
|
|
380
|
+
## 1.0.0 (2015-10-04)
|
|
172
381
|
|
|
173
382
|
- Added support for multiple data sources
|
|
174
383
|
- Added dashboards
|
|
175
384
|
- Added checks
|
|
176
385
|
- Added support for Redshift
|
|
177
386
|
|
|
178
|
-
## 0.0.8
|
|
387
|
+
## 0.0.8 (2015-09-05)
|
|
179
388
|
|
|
180
389
|
- Easier to edit queries with variables
|
|
181
390
|
- Dynamically expand editor height as needed
|
|
182
391
|
- No need for spaces in search
|
|
183
392
|
|
|
184
|
-
## 0.0.7
|
|
393
|
+
## 0.0.7 (2015-07-23)
|
|
185
394
|
|
|
186
395
|
- Fixed error when no `User` class
|
|
187
396
|
- Fixed forking a query with variables
|
|
188
397
|
- Set time zone after Rails initializes
|
|
189
398
|
|
|
190
|
-
## 0.0.6
|
|
399
|
+
## 0.0.6 (2015-06-18)
|
|
191
400
|
|
|
192
401
|
- Added fork button
|
|
193
402
|
- Fixed trending
|
|
194
403
|
- Fixed time zones for date select
|
|
195
404
|
|
|
196
|
-
## 0.0.5
|
|
405
|
+
## 0.0.5 (2015-01-31)
|
|
197
406
|
|
|
198
407
|
- Added support for Rails 4.2
|
|
199
408
|
- Fixed error with `mysql2` adapter
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
First, thanks for wanting to contribute. You’re awesome! :heart:
|
|
4
|
+
|
|
5
|
+
## Help
|
|
6
|
+
|
|
7
|
+
We’re not able to provide support through GitHub Issues. If you’re looking for help with your code, try posting on [Stack Overflow](https://stackoverflow.com/).
|
|
8
|
+
|
|
9
|
+
All features should be documented. If you don’t see a feature in the docs, assume it doesn’t exist.
|
|
10
|
+
|
|
11
|
+
## Bugs
|
|
12
|
+
|
|
13
|
+
Think you’ve discovered a bug?
|
|
14
|
+
|
|
15
|
+
1. Search existing issues to see if it’s been reported.
|
|
16
|
+
2. Try the `master` branch to make sure it hasn’t been fixed.
|
|
17
|
+
|
|
18
|
+
```rb
|
|
19
|
+
gem "blazer", github: "ankane/blazer"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
If the above steps don’t help, create an issue. Include:
|
|
23
|
+
|
|
24
|
+
- Detailed steps to reproduce
|
|
25
|
+
- Complete backtraces for exceptions
|
|
26
|
+
|
|
27
|
+
## New Features
|
|
28
|
+
|
|
29
|
+
If you’d like to discuss a new feature, create an issue and start the title with `[Idea]`.
|
|
30
|
+
|
|
31
|
+
## Pull Requests
|
|
32
|
+
|
|
33
|
+
Fork the project and create a pull request. A few tips:
|
|
34
|
+
|
|
35
|
+
- Keep changes to a minimum. If you have multiple features or fixes, submit multiple pull requests.
|
|
36
|
+
- Follow the existing style. The code should read like it’s written by a single person.
|
|
37
|
+
|
|
38
|
+
Feel free to open an issue to get feedback on your idea before spending too much time on it.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
This contributing guide is released under [CCO](https://creativecommons.org/publicdomain/zero/1.0/) (public domain). Use it for your own project without attribution.
|
data/LICENSE.txt
CHANGED