blazer_xlsx 3.0.5
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 +7 -0
- data/CHANGELOG.md +442 -0
- data/CONTRIBUTING.md +42 -0
- data/LICENSE.txt +22 -0
- data/README.md +1093 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/blazer/glyphicons-halflings-regular.svg +288 -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/Sortable.js +3709 -0
- data/app/assets/javascripts/blazer/ace/ace.js +19630 -0
- data/app/assets/javascripts/blazer/ace/ext-language_tools.js +1981 -0
- data/app/assets/javascripts/blazer/ace/mode-sql.js +215 -0
- data/app/assets/javascripts/blazer/ace/snippets/sql.js +16 -0
- data/app/assets/javascripts/blazer/ace/snippets/text.js +9 -0
- data/app/assets/javascripts/blazer/ace/theme-twilight.js +18 -0
- data/app/assets/javascripts/blazer/ace.js +6 -0
- data/app/assets/javascripts/blazer/application.js +84 -0
- data/app/assets/javascripts/blazer/bootstrap.js +2580 -0
- data/app/assets/javascripts/blazer/chart.umd.js +13 -0
- data/app/assets/javascripts/blazer/chartjs-adapter-date-fns.bundle.js +6322 -0
- data/app/assets/javascripts/blazer/chartkick.js +2570 -0
- data/app/assets/javascripts/blazer/daterangepicker.js +1578 -0
- data/app/assets/javascripts/blazer/fuzzysearch.js +24 -0
- data/app/assets/javascripts/blazer/highlight.min.js +466 -0
- data/app/assets/javascripts/blazer/jquery.js +10872 -0
- data/app/assets/javascripts/blazer/jquery.stickytableheaders.js +325 -0
- data/app/assets/javascripts/blazer/mapkick.bundle.js +1029 -0
- data/app/assets/javascripts/blazer/moment-timezone-with-data.js +1548 -0
- data/app/assets/javascripts/blazer/moment.js +5685 -0
- data/app/assets/javascripts/blazer/queries.js +130 -0
- data/app/assets/javascripts/blazer/rails-ujs.js +746 -0
- data/app/assets/javascripts/blazer/routes.js +26 -0
- data/app/assets/javascripts/blazer/selectize.js +3891 -0
- data/app/assets/javascripts/blazer/stupidtable-custom-settings.js +13 -0
- data/app/assets/javascripts/blazer/stupidtable.js +281 -0
- data/app/assets/javascripts/blazer/vue.global.prod.js +1 -0
- data/app/assets/stylesheets/blazer/application.css +243 -0
- 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 +6828 -0
- data/app/assets/stylesheets/blazer/daterangepicker.css +410 -0
- data/app/assets/stylesheets/blazer/github.css +125 -0
- data/app/assets/stylesheets/blazer/selectize.css +403 -0
- data/app/controllers/blazer/base_controller.rb +135 -0
- data/app/controllers/blazer/checks_controller.rb +56 -0
- data/app/controllers/blazer/dashboards_controller.rb +99 -0
- data/app/controllers/blazer/queries_controller.rb +472 -0
- data/app/controllers/blazer/uploads_controller.rb +147 -0
- data/app/helpers/blazer/base_helper.rb +39 -0
- data/app/models/blazer/audit.rb +6 -0
- data/app/models/blazer/check.rb +104 -0
- data/app/models/blazer/connection.rb +5 -0
- data/app/models/blazer/dashboard.rb +17 -0
- data/app/models/blazer/dashboard_query.rb +9 -0
- data/app/models/blazer/query.rb +42 -0
- 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 +18 -0
- data/app/views/blazer/_variables.html.erb +127 -0
- data/app/views/blazer/check_mailer/failing_checks.html.erb +7 -0
- data/app/views/blazer/check_mailer/state_change.html.erb +48 -0
- data/app/views/blazer/checks/_form.html.erb +79 -0
- data/app/views/blazer/checks/edit.html.erb +3 -0
- data/app/views/blazer/checks/index.html.erb +72 -0
- data/app/views/blazer/checks/new.html.erb +3 -0
- data/app/views/blazer/dashboards/_form.html.erb +82 -0
- data/app/views/blazer/dashboards/edit.html.erb +3 -0
- data/app/views/blazer/dashboards/new.html.erb +3 -0
- data/app/views/blazer/dashboards/show.html.erb +53 -0
- 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 +255 -0
- data/app/views/blazer/queries/docs.html.erb +147 -0
- data/app/views/blazer/queries/edit.html.erb +2 -0
- data/app/views/blazer/queries/home.html.erb +169 -0
- data/app/views/blazer/queries/new.html.erb +2 -0
- data/app/views/blazer/queries/run.html.erb +183 -0
- data/app/views/blazer/queries/schema.html.erb +55 -0
- data/app/views/blazer/queries/show.html.erb +72 -0
- 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 +25 -0
- data/config/routes.rb +25 -0
- data/lib/blazer/adapters/athena_adapter.rb +182 -0
- data/lib/blazer/adapters/base_adapter.rb +76 -0
- 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 +61 -0
- 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/neo4j_adapter.rb +62 -0
- data/lib/blazer/adapters/opensearch_adapter.rb +52 -0
- data/lib/blazer/adapters/presto_adapter.rb +54 -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 +353 -0
- data/lib/blazer/adapters.rb +17 -0
- data/lib/blazer/anomaly_detectors.rb +22 -0
- data/lib/blazer/check_mailer.rb +27 -0
- data/lib/blazer/data_source.rb +266 -0
- data/lib/blazer/engine.rb +42 -0
- data/lib/blazer/forecasters.rb +7 -0
- data/lib/blazer/result.rb +178 -0
- data/lib/blazer/result_cache.rb +71 -0
- data/lib/blazer/run_statement.rb +45 -0
- data/lib/blazer/run_statement_job.rb +20 -0
- data/lib/blazer/slack_notifier.rb +94 -0
- data/lib/blazer/statement.rb +77 -0
- data/lib/blazer/version.rb +3 -0
- data/lib/blazer.rb +282 -0
- data/lib/generators/blazer/install_generator.rb +22 -0
- data/lib/generators/blazer/templates/config.yml.tt +79 -0
- data/lib/generators/blazer/templates/install.rb.tt +47 -0
- data/lib/generators/blazer/templates/uploads.rb.tt +10 -0
- data/lib/generators/blazer/uploads_generator.rb +18 -0
- data/lib/tasks/blazer.rake +20 -0
- 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-chartjs-adapter-date-fns.txt +9 -0
- data/licenses/LICENSE-chartkick.js.txt +22 -0
- data/licenses/LICENSE-date-fns.txt +21 -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.txt +20 -0
- data/licenses/LICENSE-kurkle-color.txt +9 -0
- data/licenses/LICENSE-mapkick-bundle.txt +1029 -0
- data/licenses/LICENSE-moment-timezone.txt +20 -0
- data/licenses/LICENSE-moment.txt +22 -0
- data/licenses/LICENSE-rails-ujs.txt +20 -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 +271 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 42b008fb0cb1ffebc8ca941a9777e2021e39bb9114ed2863a88af58cdf51c1ec
|
|
4
|
+
data.tar.gz: b08675c23d6bcc8c73bc8070e99efb39d1465afc8d60d541f6f8346ba3b69dbd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: cd374415971120f73cd83cc2d15f432bfdeaa7ad573d009197c28da1ed79875ed1870375cf493fc9eb544264e228c34a6002804bcdd417ab8233679daac880eb
|
|
7
|
+
data.tar.gz: 54c8eaf9c6d8ddb29ba6b12e903f25d3e02709dc40bb1bfdae9af728e92b9ae45fa7581712911627e7a9f99359a28c5872d08e0b53a7078ed2f8b3c2f621fd8f
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
## 3.0.4 (unreleased)
|
|
2
|
+
|
|
3
|
+
- Fixed error with MySQL and binary data
|
|
4
|
+
|
|
5
|
+
## 3.0.3 (2024-01-10)
|
|
6
|
+
|
|
7
|
+
- Fixed error with Trilogy, non-ASCII column names, and charts
|
|
8
|
+
|
|
9
|
+
## 3.0.2 (2023-11-28)
|
|
10
|
+
|
|
11
|
+
- Fixed error with SQLite and prepared statements
|
|
12
|
+
|
|
13
|
+
## 3.0.1 (2023-10-08)
|
|
14
|
+
|
|
15
|
+
- Fixed error with Rails 7.1 when no user model
|
|
16
|
+
|
|
17
|
+
## 3.0.0 (2023-09-20)
|
|
18
|
+
|
|
19
|
+
- Switched from Mapbox.js to Mapbox GL JS v1 for maps (this affects Mapbox billing)
|
|
20
|
+
- Support for AnomalyDetection.rb is no longer experimental
|
|
21
|
+
- Added support for maps from GeoJSON
|
|
22
|
+
- Added support for Trilogy
|
|
23
|
+
- Fixed `async` option
|
|
24
|
+
- Fixed run now button for cached queries
|
|
25
|
+
- Dropped support for Ruby < 3 and Rails < 6.1
|
|
26
|
+
- Dropped support for MongoDB (required < 4.2)
|
|
27
|
+
- Dropped support for R anomaly detection
|
|
28
|
+
|
|
29
|
+
## 2.6.5 (2022-08-31)
|
|
30
|
+
|
|
31
|
+
- Use monotonic time
|
|
32
|
+
- Fixed `comparison of Symbol with String failed` error with certain versions of Rails
|
|
33
|
+
|
|
34
|
+
## 2.6.4 (2022-05-24)
|
|
35
|
+
|
|
36
|
+
- Fixed error with caching
|
|
37
|
+
|
|
38
|
+
## 2.6.3 (2022-05-11)
|
|
39
|
+
|
|
40
|
+
- Fixed error with canceling queries
|
|
41
|
+
|
|
42
|
+
## 2.6.2 (2022-05-06)
|
|
43
|
+
|
|
44
|
+
- Fixed error with Postgres when prepared statements are disabled with Rails < 6.1
|
|
45
|
+
|
|
46
|
+
## 2.6.1 (2022-04-21)
|
|
47
|
+
|
|
48
|
+
- Added `region` setting to Amazon Athena
|
|
49
|
+
- Fixed error with MySQL for Rails < 7
|
|
50
|
+
- Fixed error with binary data
|
|
51
|
+
|
|
52
|
+
## 2.6.0 (2022-04-20)
|
|
53
|
+
|
|
54
|
+
- Fixed quoting issue with variables
|
|
55
|
+
- Custom adapters now need to specify how to quote variables in queries
|
|
56
|
+
- Added experimental support for Propshaft
|
|
57
|
+
- Fixed error with empty results with InfluxDB
|
|
58
|
+
|
|
59
|
+
## 2.5.0 (2022-01-04)
|
|
60
|
+
|
|
61
|
+
- Added support for Slack OAuth tokens
|
|
62
|
+
- Added experimental support for AnomalyDetection.rb
|
|
63
|
+
- Improved table preview for MySQL
|
|
64
|
+
- Fixed cohort analysis for MySQL
|
|
65
|
+
|
|
66
|
+
## 2.4.8 (2021-12-07)
|
|
67
|
+
|
|
68
|
+
- Added support for OpenSearch
|
|
69
|
+
- Removed `elasticsearch-xpack` dependency for Elasticsearch
|
|
70
|
+
|
|
71
|
+
## 2.4.7 (2021-09-25)
|
|
72
|
+
|
|
73
|
+
- Made Action Mailer optional
|
|
74
|
+
- Fixed error with multiple maps on dashboard
|
|
75
|
+
|
|
76
|
+
## 2.4.6 (2021-09-20)
|
|
77
|
+
|
|
78
|
+
- Added support for workgroup with Amazon Athena
|
|
79
|
+
- Added casting for timestamp with time zone columns with Amazon Athena
|
|
80
|
+
- Added support for setting credentials in config file with Amazon Athena
|
|
81
|
+
- Made output location optional with Amazon Athena
|
|
82
|
+
- Fixed casting error for `NULL` values with Amazon Athena
|
|
83
|
+
- Fixed issue with Google BigQuery only showing first page of results
|
|
84
|
+
|
|
85
|
+
## 2.4.5 (2021-09-15)
|
|
86
|
+
|
|
87
|
+
- Improved fix for some forked queries not appearing on home page
|
|
88
|
+
|
|
89
|
+
## 2.4.4 (2021-09-15)
|
|
90
|
+
|
|
91
|
+
- Fixed issue with some forked queries not appearing on home page
|
|
92
|
+
|
|
93
|
+
## 2.4.3 (2021-07-27)
|
|
94
|
+
|
|
95
|
+
- Added Prophet anomaly detection
|
|
96
|
+
- Fixed style for new select items
|
|
97
|
+
|
|
98
|
+
## 2.4.2 (2021-02-08)
|
|
99
|
+
|
|
100
|
+
- Added support for Apache Ignite
|
|
101
|
+
|
|
102
|
+
## 2.4.1 (2021-01-25)
|
|
103
|
+
|
|
104
|
+
- Added cohorts for MySQL
|
|
105
|
+
- Added support for Apache Hive and Apache Spark
|
|
106
|
+
- Fixed deprecation warning with Active Record 6.1
|
|
107
|
+
|
|
108
|
+
## 2.4.0 (2020-12-15)
|
|
109
|
+
|
|
110
|
+
- Added cohorts
|
|
111
|
+
- Fixed broken routes for some applications
|
|
112
|
+
- Forecasting and uploads are no longer experimental
|
|
113
|
+
|
|
114
|
+
## 2.3.1 (2020-11-23)
|
|
115
|
+
|
|
116
|
+
- Improved column names for uploads
|
|
117
|
+
|
|
118
|
+
## 2.3.0 (2020-11-16)
|
|
119
|
+
|
|
120
|
+
- Added support for archiving queries
|
|
121
|
+
- Added experimental support for uploads
|
|
122
|
+
|
|
123
|
+
## 2.2.8 (2020-11-01)
|
|
124
|
+
|
|
125
|
+
- Fixed error when deleting dashboard
|
|
126
|
+
|
|
127
|
+
## 2.2.7 (2020-09-07)
|
|
128
|
+
|
|
129
|
+
- Use `datetime` type in migration
|
|
130
|
+
- Fixed unpermitted parameters on dashboard page
|
|
131
|
+
- Fixed deprecation warnings in Ruby 2.7
|
|
132
|
+
|
|
133
|
+
## 2.2.6 (2020-07-21)
|
|
134
|
+
|
|
135
|
+
- Added experimental support for InfluxDB
|
|
136
|
+
- Added support for forecasting week, month, quarter, and year with Prophet
|
|
137
|
+
- Fixed forecasting link not showing up
|
|
138
|
+
|
|
139
|
+
## 2.2.5 (2020-06-03)
|
|
140
|
+
|
|
141
|
+
- Updated maps to fix deprecation error
|
|
142
|
+
|
|
143
|
+
## 2.2.4 (2020-05-30)
|
|
144
|
+
|
|
145
|
+
- Fixed error with new queries
|
|
146
|
+
|
|
147
|
+
## 2.2.3 (2020-05-30)
|
|
148
|
+
|
|
149
|
+
- Improved query parameter handling
|
|
150
|
+
|
|
151
|
+
## 2.2.2 (2020-04-13)
|
|
152
|
+
|
|
153
|
+
- Added experimental support for the Socrata Open Data API (SODA)
|
|
154
|
+
- Added experimental Prophet forecasting
|
|
155
|
+
- Fixed query search for non-ASCII characters
|
|
156
|
+
|
|
157
|
+
## 2.2.1 (2019-10-08)
|
|
158
|
+
|
|
159
|
+
- Added support for Sprockets 4
|
|
160
|
+
- Improved Snowflake table preview
|
|
161
|
+
- Fixed bug with refresh link not showing
|
|
162
|
+
|
|
163
|
+
## 2.2.0 (2019-07-12)
|
|
164
|
+
|
|
165
|
+
- Added schema to table preview for Postgres and Redshift
|
|
166
|
+
- Fixed bug with Slack notifications not sending
|
|
167
|
+
- Dropped support for Rails 4.2
|
|
168
|
+
|
|
169
|
+
## 2.1.0 (2019-06-04)
|
|
170
|
+
|
|
171
|
+
- Require latest Chartkick to prevent possible XSS - see [#245](https://github.com/ankane/blazer/issues/245)
|
|
172
|
+
|
|
173
|
+
## 2.0.2 (2019-05-26)
|
|
174
|
+
|
|
175
|
+
- Added support for variable transformation for blind indexing
|
|
176
|
+
- Added experimental support for Neo4j
|
|
177
|
+
- Added experimental support for Salesforce
|
|
178
|
+
- Fixed JavaScript sorting for numbers with commas
|
|
179
|
+
|
|
180
|
+
## 2.0.1 (2019-01-07)
|
|
181
|
+
|
|
182
|
+
- Added favicon
|
|
183
|
+
- Added search for checks and schema
|
|
184
|
+
- Added pie charts
|
|
185
|
+
- Added Trend anomaly detection
|
|
186
|
+
- Added forecasting
|
|
187
|
+
- Improved tooltips
|
|
188
|
+
- Improved docs for new installs
|
|
189
|
+
- Fixed error with canceling queries
|
|
190
|
+
|
|
191
|
+
## 2.0.0 (2019-01-03)
|
|
192
|
+
|
|
193
|
+
- Added support for Slack
|
|
194
|
+
- Added `async` option
|
|
195
|
+
- Added `override_csp` option
|
|
196
|
+
- Added smart variables, linked columns smart columns, and charts to inline docs
|
|
197
|
+
- Use SQL for Elasticsearch
|
|
198
|
+
- Fixed error with latest `google-cloud-bigquery`
|
|
199
|
+
|
|
200
|
+
Breaking changes
|
|
201
|
+
|
|
202
|
+
- Dropped support for Rails < 4.2
|
|
203
|
+
|
|
204
|
+
## 1.9.0 (2018-06-17)
|
|
205
|
+
|
|
206
|
+
- Prompt developers to check custom `before_action`
|
|
207
|
+
- Better ordering on home page
|
|
208
|
+
- Added support for Snowflake
|
|
209
|
+
|
|
210
|
+
## 1.8.2 (2018-02-22)
|
|
211
|
+
|
|
212
|
+
- Added support for Cassandra
|
|
213
|
+
- Fixes for Druid
|
|
214
|
+
- Added support for Amazon Athena
|
|
215
|
+
- Added support for Druid
|
|
216
|
+
- Fixed query cancellation
|
|
217
|
+
|
|
218
|
+
There was no 1.8.1 release.
|
|
219
|
+
|
|
220
|
+
## 1.8.0 (2017-05-01)
|
|
221
|
+
|
|
222
|
+
- Added support for Rails 5.1
|
|
223
|
+
|
|
224
|
+
## 1.7.10 (2017-04-03)
|
|
225
|
+
|
|
226
|
+
- Added support for Google BigQuery
|
|
227
|
+
- Require `drill-sergeant` gem for Apache Drill
|
|
228
|
+
- Better handling of checks with variables
|
|
229
|
+
|
|
230
|
+
## 1.7.9 (2017-03-20)
|
|
231
|
+
|
|
232
|
+
- Added beta support for Apache Drill
|
|
233
|
+
- Added email validation for checks
|
|
234
|
+
- Updated Chart.js to 2.5.0
|
|
235
|
+
|
|
236
|
+
## 1.7.8 (2017-02-06)
|
|
237
|
+
|
|
238
|
+
- Added support for custom adapters
|
|
239
|
+
- Fixed bug with scatter charts on dashboards
|
|
240
|
+
- Fixed table preview for SQL Server
|
|
241
|
+
- Fixed issue when `default_url_options` set
|
|
242
|
+
|
|
243
|
+
## 1.7.7 (2016-12-17)
|
|
244
|
+
|
|
245
|
+
- Fixed preview error for MySQL
|
|
246
|
+
- Fixed error with timeouts for MySQL
|
|
247
|
+
|
|
248
|
+
## 1.7.6 (2016-12-13)
|
|
249
|
+
|
|
250
|
+
- Added scatter chart
|
|
251
|
+
- Fixed issue with false values showing up blank
|
|
252
|
+
- Fixed preview for table names with certain characters
|
|
253
|
+
|
|
254
|
+
## 1.7.5 (2016-11-22)
|
|
255
|
+
|
|
256
|
+
- Fixed issue with check emails sometimes failing for default Rails 5 ActiveJob adapter
|
|
257
|
+
- Fixed sorting for new dashboards
|
|
258
|
+
|
|
259
|
+
## 1.7.4 (2016-11-06)
|
|
260
|
+
|
|
261
|
+
- Removed extra dependencies added in 1.7.1
|
|
262
|
+
- Fixed `send_failing_checks` for default Rails 5 ActiveJob adapter
|
|
263
|
+
|
|
264
|
+
## 1.7.3 (2016-11-01)
|
|
265
|
+
|
|
266
|
+
- Fixed JavaScript errors
|
|
267
|
+
- Fixed query cancel error
|
|
268
|
+
- Return search results for "me" or "mine"
|
|
269
|
+
- Include sample data in email when bad data checks fail
|
|
270
|
+
- Fixed deprecation warnings
|
|
271
|
+
|
|
272
|
+
## 1.7.2 (2016-10-30)
|
|
273
|
+
|
|
274
|
+
- Cancel all queries on page nav
|
|
275
|
+
- Prevent Ace from taking over find command
|
|
276
|
+
- Added ability to use hashes for smart columns
|
|
277
|
+
- Added ability to inherit smart variables and columns from other data sources
|
|
278
|
+
|
|
279
|
+
## 1.7.1 (2016-10-29)
|
|
280
|
+
|
|
281
|
+
- Do not fork when enter key pressed
|
|
282
|
+
- Use custom version of Chart.js to fix label overlap
|
|
283
|
+
- Improved performance of home page
|
|
284
|
+
|
|
285
|
+
## 1.7.0 (2016-09-07)
|
|
286
|
+
|
|
287
|
+
- Added ability to cancel queries on backend for Postgres and Redshift
|
|
288
|
+
- Only run 3 queries at a time on dashboards
|
|
289
|
+
- Better anomaly detection
|
|
290
|
+
- Attempt to reconnect when connection issues
|
|
291
|
+
- Fixed issues with caching
|
|
292
|
+
|
|
293
|
+
## 1.6.2 (2016-08-11)
|
|
294
|
+
|
|
295
|
+
- Added basic query permissions
|
|
296
|
+
- Added ability to use arrays and hashes for smart variables
|
|
297
|
+
- Added cancel button for queries
|
|
298
|
+
- Added `lat` and `lng` as map keys
|
|
299
|
+
|
|
300
|
+
## 1.6.1 (2016-07-30)
|
|
301
|
+
|
|
302
|
+
- Added support for Presto [beta]
|
|
303
|
+
- Added support for Elasticsearch timeouts
|
|
304
|
+
- Fixed error in Rails 5
|
|
305
|
+
|
|
306
|
+
## 1.6.0 (2016-07-28)
|
|
307
|
+
|
|
308
|
+
- Added support for MongoDB [beta]
|
|
309
|
+
- Added support for Elasticsearch [beta]
|
|
310
|
+
- Fixed deprecation warning in Rails 5
|
|
311
|
+
|
|
312
|
+
## 1.5.1 (2016-07-24)
|
|
313
|
+
|
|
314
|
+
- Added anomaly detection for data less than 2 weeks
|
|
315
|
+
- Added autolinking urls
|
|
316
|
+
- Added support for images
|
|
317
|
+
|
|
318
|
+
## 1.5.0 (2016-06-29)
|
|
319
|
+
|
|
320
|
+
- Added new bar chart format
|
|
321
|
+
- Added anomaly detection checks
|
|
322
|
+
- Added `async` option for polling
|
|
323
|
+
|
|
324
|
+
## 1.4.0 (2016-06-09)
|
|
325
|
+
|
|
326
|
+
- Added `slow` cache mode
|
|
327
|
+
- Fixed `BLAZER_DATABASE_URL required` error
|
|
328
|
+
- Fixed issue with duplicate column names
|
|
329
|
+
|
|
330
|
+
## 1.3.5 (2016-05-11)
|
|
331
|
+
|
|
332
|
+
- Fixed error with checks
|
|
333
|
+
|
|
334
|
+
## 1.3.4 (2016-05-11)
|
|
335
|
+
|
|
336
|
+
- Fixed issue with missing queries
|
|
337
|
+
|
|
338
|
+
## 1.3.3 (2016-05-08)
|
|
339
|
+
|
|
340
|
+
- Fixed error with Rails 4.1 and below
|
|
341
|
+
|
|
342
|
+
## 1.3.2 (2016-05-07)
|
|
343
|
+
|
|
344
|
+
- Added support for Rails 5
|
|
345
|
+
- Attempt to reconnect for checks
|
|
346
|
+
|
|
347
|
+
## 1.3.1 (2016-05-06)
|
|
348
|
+
|
|
349
|
+
- Fixed migration error
|
|
350
|
+
|
|
351
|
+
## 1.3.0 (2016-05-06)
|
|
352
|
+
|
|
353
|
+
- Added schedule for checks
|
|
354
|
+
- Switched to Chart.js for charts
|
|
355
|
+
- Better output for explain
|
|
356
|
+
- Support for MySQL timeouts
|
|
357
|
+
- Raise error when timeout not supported
|
|
358
|
+
- Added creator to dashboards and checks
|
|
359
|
+
|
|
360
|
+
## 1.2.1 (2016-04-26)
|
|
361
|
+
|
|
362
|
+
- Fixed checks
|
|
363
|
+
|
|
364
|
+
## 1.2.0 (2016-03-22)
|
|
365
|
+
|
|
366
|
+
- Added non-editable queries
|
|
367
|
+
- Added variable defaults
|
|
368
|
+
- Added `local_time_suffix` setting
|
|
369
|
+
- Better timeout message
|
|
370
|
+
- Hide variables from commented out lines
|
|
371
|
+
- Fixed regex as variable names
|
|
372
|
+
|
|
373
|
+
## 1.1.1 (2016-03-06)
|
|
374
|
+
|
|
375
|
+
- Added `before_action` option
|
|
376
|
+
- Added invert option for checks
|
|
377
|
+
- Added targets
|
|
378
|
+
- Friendlier error message for timeouts
|
|
379
|
+
- Fixed request URI too large
|
|
380
|
+
- Prevent accidental backspace nav on query page
|
|
381
|
+
|
|
382
|
+
## 1.1.0 (2015-12-27)
|
|
383
|
+
|
|
384
|
+
- Replaced pie charts with column charts
|
|
385
|
+
- Fixed error with datepicker
|
|
386
|
+
- Added fork button to edit query page
|
|
387
|
+
- Added a notice when editing a query that is part of a dashboard
|
|
388
|
+
- Added refresh for dashboards
|
|
389
|
+
|
|
390
|
+
## 1.0.4 (2015-11-04)
|
|
391
|
+
|
|
392
|
+
- Added recently viewed queries and dashboards to home page
|
|
393
|
+
- Fixed refresh when transform statement is used
|
|
394
|
+
- Fixed error when no user model
|
|
395
|
+
|
|
396
|
+
## 1.0.3 (2015-10-18)
|
|
397
|
+
|
|
398
|
+
- Added maps
|
|
399
|
+
- Added support for Rails 4.0
|
|
400
|
+
|
|
401
|
+
## 1.0.2 (2015-10-11)
|
|
402
|
+
|
|
403
|
+
- Fixed error when installing
|
|
404
|
+
- Added `schemas` option
|
|
405
|
+
|
|
406
|
+
## 1.0.1 (2015-10-08)
|
|
407
|
+
|
|
408
|
+
- Added comments to queries
|
|
409
|
+
- Added `cache` option
|
|
410
|
+
- Added `user_method` option
|
|
411
|
+
- Added `use_transaction` option
|
|
412
|
+
|
|
413
|
+
## 1.0.0 (2015-10-04)
|
|
414
|
+
|
|
415
|
+
- Added support for multiple data sources
|
|
416
|
+
- Added dashboards
|
|
417
|
+
- Added checks
|
|
418
|
+
- Added support for Redshift
|
|
419
|
+
|
|
420
|
+
## 0.0.8 (2015-09-05)
|
|
421
|
+
|
|
422
|
+
- Easier to edit queries with variables
|
|
423
|
+
- Dynamically expand editor height as needed
|
|
424
|
+
- No need for spaces in search
|
|
425
|
+
|
|
426
|
+
## 0.0.7 (2015-07-23)
|
|
427
|
+
|
|
428
|
+
- Fixed error when no `User` class
|
|
429
|
+
- Fixed forking a query with variables
|
|
430
|
+
- Set time zone after Rails initializes
|
|
431
|
+
|
|
432
|
+
## 0.0.6 (2015-06-18)
|
|
433
|
+
|
|
434
|
+
- Added fork button
|
|
435
|
+
- Fixed trending
|
|
436
|
+
- Fixed time zones for date select
|
|
437
|
+
|
|
438
|
+
## 0.0.5 (2015-01-31)
|
|
439
|
+
|
|
440
|
+
- Added support for Rails 4.2
|
|
441
|
+
- Fixed error with `mysql2` adapter
|
|
442
|
+
- Added `user_class` option
|
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
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2014-2024 Andrew Kane
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|