mini-sharp-hub 0.0.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.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/mini-sharp-hub.gemspec +12 -0
  3. data/rack-mini-profiler-4.0.1/CHANGELOG.md +424 -0
  4. data/rack-mini-profiler-4.0.1/README.md +542 -0
  5. data/rack-mini-profiler-4.0.1/lib/enable_rails_patches.rb +5 -0
  6. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/USAGE +9 -0
  7. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/install_generator.rb +13 -0
  8. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/templates/rack_mini_profiler.rb +8 -0
  9. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/USAGE +2 -0
  10. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/install_generator.rb +16 -0
  11. data/rack-mini-profiler-4.0.1/lib/html/dot.1.1.2.min.js +2 -0
  12. data/rack-mini-profiler-4.0.1/lib/html/includes.css +474 -0
  13. data/rack-mini-profiler-4.0.1/lib/html/includes.js +1520 -0
  14. data/rack-mini-profiler-4.0.1/lib/html/includes.scss +698 -0
  15. data/rack-mini-profiler-4.0.1/lib/html/includes.tmpl +333 -0
  16. data/rack-mini-profiler-4.0.1/lib/html/pretty-print.js +810 -0
  17. data/rack-mini-profiler-4.0.1/lib/html/profile_handler.js +1 -0
  18. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.css +3 -0
  19. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.js +2 -0
  20. data/rack-mini-profiler-4.0.1/lib/html/share.html +10 -0
  21. data/rack-mini-profiler-4.0.1/lib/html/speedscope/LICENSE +21 -0
  22. data/rack-mini-profiler-4.0.1/lib/html/speedscope/README.md +3 -0
  23. data/rack-mini-profiler-4.0.1/lib/html/speedscope/demangle-cpp.1768f4cc.js +4 -0
  24. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-16x16.f74b3187.png +0 -0
  25. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-32x32.bc503437.png +0 -0
  26. data/rack-mini-profiler-4.0.1/lib/html/speedscope/file-format-schema.json +324 -0
  27. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-regular.css +8 -0
  28. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff +0 -0
  29. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff2 +0 -0
  30. data/rack-mini-profiler-4.0.1/lib/html/speedscope/import.8ae8aa3d.js +123 -0
  31. data/rack-mini-profiler-4.0.1/lib/html/speedscope/index.html +2 -0
  32. data/rack-mini-profiler-4.0.1/lib/html/speedscope/release.txt +3 -0
  33. data/rack-mini-profiler-4.0.1/lib/html/speedscope/reset.8c46b7a1.css +2 -0
  34. data/rack-mini-profiler-4.0.1/lib/html/speedscope/source-map.438fa06b.js +24 -0
  35. data/rack-mini-profiler-4.0.1/lib/html/speedscope/speedscope.f27db165.js +193 -0
  36. data/rack-mini-profiler-4.0.1/lib/html/vendor.js +848 -0
  37. data/rack-mini-profiler-4.0.1/lib/mini_profiler/actions.rb +157 -0
  38. data/rack-mini-profiler-4.0.1/lib/mini_profiler/asset_version.rb +6 -0
  39. data/rack-mini-profiler-4.0.1/lib/mini_profiler/client_settings.rb +127 -0
  40. data/rack-mini-profiler-4.0.1/lib/mini_profiler/config.rb +146 -0
  41. data/rack-mini-profiler-4.0.1/lib/mini_profiler/context.rb +14 -0
  42. data/rack-mini-profiler-4.0.1/lib/mini_profiler/gc_profiler.rb +158 -0
  43. data/rack-mini-profiler-4.0.1/lib/mini_profiler/profiling_methods.rb +167 -0
  44. data/rack-mini-profiler-4.0.1/lib/mini_profiler/snapshots_transporter.rb +111 -0
  45. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/abstract_store.rb +97 -0
  46. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/file_store.rb +179 -0
  47. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memcache_store.rb +105 -0
  48. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memory_store.rb +233 -0
  49. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/redis_store.rb +353 -0
  50. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage.rb +7 -0
  51. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/base.rb +39 -0
  52. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/client.rb +90 -0
  53. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/custom.rb +25 -0
  54. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/page.rb +146 -0
  55. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/request.rb +186 -0
  56. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/sql.rb +89 -0
  57. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct.rb +8 -0
  58. data/rack-mini-profiler-4.0.1/lib/mini_profiler/version.rb +8 -0
  59. data/rack-mini-profiler-4.0.1/lib/mini_profiler/views.rb +198 -0
  60. data/rack-mini-profiler-4.0.1/lib/mini_profiler.rb +670 -0
  61. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie.rb +234 -0
  62. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie_methods.rb +61 -0
  63. data/rack-mini-profiler-4.0.1/lib/patches/db/activerecord.rb +44 -0
  64. data/rack-mini-profiler-4.0.1/lib/patches/db/mongo.rb +18 -0
  65. data/rack-mini-profiler-4.0.1/lib/patches/db/moped.rb +14 -0
  66. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/alias_method.rb +30 -0
  67. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/prepend.rb +34 -0
  68. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2.rb +7 -0
  69. data/rack-mini-profiler-4.0.1/lib/patches/db/neo4j.rb +16 -0
  70. data/rack-mini-profiler-4.0.1/lib/patches/db/nobrainer.rb +31 -0
  71. data/rack-mini-profiler-4.0.1/lib/patches/db/oracle_enhanced.rb +70 -0
  72. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/alias_method.rb +121 -0
  73. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/prepend.rb +115 -0
  74. data/rack-mini-profiler-4.0.1/lib/patches/db/pg.rb +7 -0
  75. data/rack-mini-profiler-4.0.1/lib/patches/db/plucky.rb +49 -0
  76. data/rack-mini-profiler-4.0.1/lib/patches/db/riak.rb +105 -0
  77. data/rack-mini-profiler-4.0.1/lib/patches/db/rsolr.rb +26 -0
  78. data/rack-mini-profiler-4.0.1/lib/patches/db/sequel.rb +12 -0
  79. data/rack-mini-profiler-4.0.1/lib/patches/net_patches.rb +27 -0
  80. data/rack-mini-profiler-4.0.1/lib/patches/sql_patches.rb +74 -0
  81. data/rack-mini-profiler-4.0.1/lib/prepend_mysql2_patch.rb +5 -0
  82. data/rack-mini-profiler-4.0.1/lib/prepend_net_http_patch.rb +5 -0
  83. data/rack-mini-profiler-4.0.1/lib/prepend_pg_patch.rb +5 -0
  84. data/rack-mini-profiler-4.0.1/lib/rack-mini-profiler.rb +13 -0
  85. data/rack-mini-profiler-4.0.1/rack-mini-profiler.gemspec +49 -0
  86. metadata +125 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a1ce894f4224bb6117815dd79a8f73fc5b18021191d96cf00d56c3951bdc1d34
4
+ data.tar.gz: fa7beed71b41ffd904e31208bda60b0d7b7af815a3e635ac5d7693ab9dcb1af3
5
+ SHA512:
6
+ metadata.gz: 64b41c8acfc541da094ab321d621b5c993993752096f382a915017e5fd05a3de0d48469ab7c4efad1673478a609c52c6a1752be13191341baabd288f2fe5881a
7
+ data.tar.gz: e05ebb0653906f95c97edea8fa2e31c2118bb2cc85d4e2ec40058b202bd37e8d15930ff09323137e70a96004c0d8a56ff7b7d56c22ebbe34ff34deb85f042ca3
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "mini-sharp-hub"
3
+ s.version = "0.0.1"
4
+ s.summary = "Research test"
5
+ s.description = "University research based on rack-mini-profiler"
6
+ s.authors = ["Andrey78"]
7
+ s.email = ["cakoc614@gmail.com"]
8
+ s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
9
+ s.homepage = "https://rubygems.org/profiles/Andrey78"
10
+ s.license = "MIT"
11
+ s.metadata = { "source_code_uri" => "https://github.com/Andrey78/mini-sharp-hub" }
12
+ end
@@ -0,0 +1,424 @@
1
+ # CHANGELOG
2
+
3
+ ## 4.0.1 - 2025-07-31
4
+
5
+ - [FIX] Ensure Rack 2 / 3 cross compatibility [#654](https://github/com/MiniProfiler/rack-mini-profiler/pull/654)
6
+ ## 4.0 - 2025-06-11
7
+
8
+ - [BREAKING CHANGE] Ruby version 3.1.0 or later is required. [#632](https://github.com/MiniProfiler/rack-mini-profiler/pull/632)
9
+ - [FEATURE] Implement prepend patch for postgres [#625](https://github.com/MiniProfiler/rack-mini-profiler/pull/625)
10
+ - [FEATURE] Show Active Record QueryCache hits in UI. [#640](https://github.com/MiniProfiler/rack-mini-profiler/pull/640)
11
+ - [FEATURE] Show record type and count in SQL query UI. [#638](https://github.com/MiniProfiler/rack-mini-profiler/pull/638)
12
+ - [FIX] Requests page fails due to trying to modify a frozen string. [#630](https://github.com/MiniProfiler/rack-mini-profiler/pull/630)
13
+ - [FIX] alignment of SQL query start times. [#627](https://github.com/MiniProfiler/rack-mini-profiler/pull/627)
14
+ - [FIX] Lower case HTTP response headers to be compatible with Rack 3 [#628](https://github.com/MiniProfiler/rack-mini-profiler/pull/628)
15
+ - [FIX] Truncate long profiler name in profiler popup. [#634](https://github.com/MiniProfiler/rack-mini-profiler/pull/634)
16
+ - [FIX] `flamegraph_mode` query param having no effect. [#635](https://github.com/MiniProfiler/rack-mini-profiler/pull/635)
17
+ - [FIX] max_traces_to_show had chance to break the profiler frontend [#297](https://github.com/MiniProfiler/rack-mini-profiler/issues/297)
18
+
19
+ ## 3.3.1 - 2024-02-15
20
+ - [FEATURE] Support dynamic `config.content_security_policy_nonce` [#609](https://github.com/MiniProfiler/rack-mini-profiler/pull/609)
21
+ - [FEATURE] Add flamgraph path to response header: [#601](https://github.com/MiniProfiler/rack-mini-profiler/pull/601)
22
+
23
+ ## 3.3.0 - 2023-12-07
24
+ - [FEATURE] Use `?pp=flamegraph?ignore_gc=true` or `config.flamegraph_ignore_gc` to ignore gc in flamegraphs. [#599](https://github.com/MiniProfiler/rack-mini-profiler/pull/599)
25
+
26
+ ## 3.2.1 - 2023-12-07
27
+ - [FIX] memory_profiler was broken due to an undefined local [#597](https://github.com/MiniProfiler/rack-mini-profiler/pull/597)
28
+
29
+ ## 3.2.0 - 2023-12-06
30
+ - [BREAKING CHANGE] Ruby version 2.7.0 or later is required.
31
+ - [FEATURE] All RMP actions can be chosen by including a X-Rack-Mini-Profiler header as well as by query parameter. [#578](https://github.com/MiniProfiler/rack-mini-profiler/pull/578)
32
+ - [FEATURE] Speedscope 1.12 -> 1.16
33
+ - [FIX] If patch_rails is false, do not patch mysql2 or pg [#583](https://github.com/MiniProfiler/rack-mini-profiler/pull/583)
34
+ - [FIX] vertical position bottom now aligns the detail window correctly [#581](https://github.com/MiniProfiler/rack-mini-profiler/pull/581)
35
+ - [FIX] Webpacker hiccup in some setups [#582](https://github.com/MiniProfiler/rack-mini-profiler/pull/582)
36
+ - [INTERNAL] Capture rows instantiated by ActiveRecord, UI to be added later [#585](https://github.com/MiniProfiler/rack-mini-profiler/pull/585)
37
+ - [INTERNAL] Lots of refactoring.
38
+
39
+
40
+ ## 3.1.1 - 2023-08-01
41
+
42
+ - [FIX] Include configured base path in speedscope iframe URL [#587](https://github.com/MiniProfiler/rack-mini-profiler/pull/587)
43
+ - [FIX] Race condition starting CacheCleanupThread [#586](https://github.com/MiniProfiler/rack-mini-profiler/pull/586)
44
+ - [FEATURE] Add controller name to description [#567](https://github.com/MiniProfiler/rack-mini-profiler/pull/567)
45
+ - [FIX] 'more' link w/HTTPS [#574](https://github.com/MiniProfiler/rack-mini-profiler/pull/574)
46
+
47
+ ## 3.1.0 - 2023-04-11
48
+
49
+ - [FEATURE] The query parameter that RMP uses (by default, pp) is now configurable [#553](https://github.com/MiniProfiler/rack-mini-profiler/pull/553)
50
+ - [FEATURE] You can now opt-out of the Net::HTTP patch by using RACK_MINI_PROFILER_PATCH_NET_HTTP="false"
51
+ - [FIX] Error responses now include header values from the app, and stackprof not installed message now has correct content [#547](https://github.com/MiniProfiler/rack-mini-profiler/pull/547)
52
+ - [FIX] RMP pages now have more valid HTML, with title elements [#552](https://github.com/MiniProfiler/rack-mini-profiler/pull/552)
53
+ - [BREAKING CHANGE] Ruby 2.4 and Ruby 2.5 are no longer supported.
54
+ - [FIX] Now works with apps that don't otherwise require erb [#531](https://github.com/MiniProfiler/rack-mini-profiler/pull/531)
55
+ - [DOCS] Added Heroku Redis instructions
56
+ - [DEPRECATION] We are changing the name of the generators to `rack_mini_profiler`, e.g. `rack_mini_profiler:install` [#550](https://github.com/MiniProfiler/rack-mini-profiler/pull/550)
57
+
58
+ ## 3.0.0 - 2022-02-24
59
+
60
+ - PERF: Improve snapshots page performance (#518) (introduces breaking changes to the API of `AbstractStore`, `MemoryStore` and `RedisStore`, and removes the `snapshots_limit` config option.)
61
+
62
+ ## 2.3.4 - 2022-02-23
63
+
64
+ - [FEATURE] Add cookie path support for subfolder sites
65
+ - [FIX] Remove deprecated uses of Redis#pipelined
66
+
67
+ ## 2.3.3 - 2021-08-30
68
+
69
+ - [FEATURE] Introduce `pp=flamegraph_mode`
70
+ - [FEATURE] Richer CSP configuration options
71
+ - [FEATURE] Add support for Hotwire Turbo Drive
72
+
73
+ ## 2.3.2 - 2021-04-30
74
+
75
+ - [FEATURE] Introduce `pp=async-flamegraph` for asynchronous flamegraphs
76
+
77
+ ## 2.3.1 - 2021-01-29
78
+
79
+ - [FIX] compatability with Ruby 3.0
80
+ - [FIX] compatability with peek-mysql2
81
+
82
+ ## 2.3.0 - 2020-12-29
83
+
84
+ - [FEATURE] flamegraphs are now based off speedscope
85
+
86
+ ## 2.2.1 - 2020-12-23
87
+
88
+ - [FIX] Turbolinks integration causing increasing number of GET requests
89
+ - [FEATURE] enahanced log transporter with compression and exponential backoff
90
+ - [FEATURE] sameSite=Lax added to MiniProfiler cookie
91
+
92
+ ## 2.2.0 - 2020-10-19
93
+
94
+ - [UX] Enhancements to snapshots UI
95
+ - [FEATURE] Mini Profiler cookie is now sameSite=lax
96
+ - [FEATURE] Snapshots transporter
97
+ - [FEATURE] Redact SQL queries in snapshots by default
98
+
99
+ ## 2.1.0 - 2020-09-17
100
+
101
+ - [FEATURE] Allow assets to be precompiled with Sprockets
102
+ - [FEATURE] Snapshots sampling (see README in repo)
103
+ - [FEATURE] Allow `skip_paths` config to contain regular expressions
104
+
105
+ ## 2.0.4 - 2020-08-04
106
+
107
+ - [FIX] webpacker may exist with no config, allow for that
108
+
109
+ ## 2.0.3 - 2020-07-29
110
+
111
+ - [FIX] support for deprecation free Redis 4.2
112
+ - [FEATURE] skip /packs when serving static assets
113
+ - [FEATURE] allow Net::HTTP patch to be applied with either prerpend or alias
114
+
115
+ ## 2.0.2 - 2020-05-25
116
+
117
+ - [FIX] client timings were not showing up when you clicked show trivial
118
+
119
+ ## 2.0.1 - 2020-03-17
120
+
121
+ - [REVERT] Prepend Net::HTTP patch instead of class_eval and aliasing (#429) (technique clashes with New Relic and Skylight agents)
122
+
123
+ ## 2.0.0 - 2020-03-11
124
+
125
+ - [FEATURE] Prepend Net::HTTP patch instead of class_eval and aliasing (#429)
126
+ - [FEATURE] Stop patching Rails and use `ActiveSupport::Notifications` by default (see README.md for details)
127
+
128
+ ## 1.1.6 - 2020-01-30
129
+
130
+ - [FIX] edge condition on page transition function could lead to exceptions
131
+
132
+ ## 1.1.5 - 2020-01-28
133
+
134
+ - [FIX] correct custom counter regression
135
+ - [FIX] respect max_traces_to_show
136
+ - [FIX] handle storage engine failures in whitelist mode
137
+
138
+ ## 1.1.4 - 2019-12-12
139
+
140
+ - [SECURITY] carefully crafted SQL could cause an XSS on sites that do not use CSPs
141
+
142
+ ## 1.1.3 - 2019-10-28
143
+
144
+ - [FEATURE] precompile all templates to avoid need for unsafe-eval
145
+
146
+ ## 1.1.2 - 2019-10-24
147
+
148
+ - [FIX] JS payload was not working on IE11 and leading to errors
149
+ - [FIX] Remove global singleton_class which was injected
150
+ - [FIX] Regressions post removal of jQuery
151
+
152
+ ## 1.1.1 - 2019-10-22
153
+
154
+ - [FIX] correct JavaScript fetch support header iteration (Jorge Manrubia)
155
+
156
+ ## 1.1.0 - 2019-10-01
157
+
158
+ - [FEATURE] remove jQuery dependency, switch template library to dot.js
159
+ - [FEATURE] disable all sensitive debugging methods by default (env, memory profiling) can be enabled with enable_advanced_debugging_tools.
160
+ - [FIX] when conditionally requiring rack mini profiler, asset precompile could fail
161
+ - [FEATURE] `/rack-mini-profiler/requests` can be used to monitor all requests for apps that do not have a UI (like API apps)
162
+ - [SECURITY] XSS injection in `?pp=help` via rogue uri
163
+
164
+ ## 1.0.2 - 2019-02-05
165
+
166
+ - [FIX] correct script injection to work with Rails 6 and above
167
+
168
+ ## 1.0.1 - 2018-12-10
169
+
170
+ - [FIX] add support for exec_params instrumentation in PG, this method as of PG 1.1.0 no longer
171
+ routes calls to exec / async_exec
172
+ - [FIX] add missing started_at on requests
173
+ - [UX] amend colors so we pass lighthouse
174
+ - [FEATURE] fetch API support
175
+ - [FIX] getEntriesByName is missing in iOS, workaround
176
+ - [FEATURE] drop support for Ruby 2.2.0 we require 2.3.0 and up (EOL Ruby no longer supported)
177
+
178
+ ## 1.0.0 - 2018-03-29
179
+
180
+ - [BREAKING CHANGE] Ruby version 2.2.0 or later is required
181
+ - [FEATURE] use new web performance API to avoid warning @MikeRogers0
182
+ - [FEATURE] store hidden pref regarding showing mini profiler in session @MikeRogers0
183
+ - [FIX] correct jQuery 3.0 deprecations @TiSer
184
+ - [FIX] JS in IFRAME @naiyt
185
+
186
+ ## 0.10.8 - 2017-12-01
187
+
188
+ - [FEATURE] Add `# frozen_string_literal: true` to all `lib/**/*.rb` files
189
+
190
+ ## 0.10.7 - 2017-11-24
191
+
192
+ - [FEATURE] Replace Time.now with Process.clock_gettime(Process::CLOCK_MONOTONIC)
193
+ - [FIX] Error with webrick and empty cache control
194
+
195
+ ## 0.10.6 - 2017-10-30
196
+
197
+ - [FEATURE] Support for vertical positions (top/bottom)
198
+ - [FEATURE] Suppress profiler results in print media @Mike Dillon
199
+ - [FIX] toggle shortcut not working @lukesilva
200
+ - [FEATURE] install generator @yhirano
201
+ - [FEATURE] store initial cache control headers in X-MiniProfiler-Original-Cache-Control @mrasu
202
+
203
+ ## 0.10.5 - 2017-05-22
204
+
205
+ - [FIX] revert PG bind sniffing until it is properly tested
206
+
207
+ ## 0.10.4 - 2017-05-17
208
+
209
+ - [FEATURE] log binds for pg @neznauy
210
+ - [FIX] use async exec pg monkey patch instead of exec
211
+ - [FEATURE] nuke less css and use sass instead
212
+ - [FIX] use jQuery on instead of bind
213
+ - [FIX] ensure redis get_unviewed_ids returns only ids that exist
214
+ - [FIX] correctly respect SCRIPT in env if it is sniffed by middleware
215
+
216
+ ## 0.10.2 - 2017-02-08
217
+
218
+ - [FIX] improve turbolinks support
219
+ - [FEATURE] make location of mini_profiler injection customizable
220
+
221
+ ## 0.10.1 - 2016-05-18
222
+
223
+ - [FEATURE] push forward the security checks so no work is ever done if a valid production
224
+ cookie is not available (@sam)
225
+
226
+ ## 0.9.9.2 - 2016-03-06
227
+
228
+ - [FEATURE] on pageTransition collapse previously expanded timings
229
+
230
+ ## 0.9.9.1 - 2016-03-06
231
+
232
+ - [FEATURE] expost MiniProfiler.pageTransition() for use by SPA web apps (@sam)
233
+
234
+ ## 0.9.9 - 2016-03-06
235
+
236
+ - [FIX] removes alias_method_chain in favor of alias_method until Ruby 1.9.3 (@ayfredlund)
237
+ - [FIX] Dont block mongo when already patched for another db (@rrooding @kbrock)
238
+ - [FIX] get_profile_script when running under passenger configured with RailsBaseURI (@nspring)
239
+ - [FEATURE] Add support for neo4j (@ProGM)
240
+ - [FIX] ArgumentError: comparison of String with 200 failed (@paweljw)
241
+ - [FEATURE] Add support for Riak (@janx)
242
+ - [PERF] GC profiler much faster (@dgynn)
243
+ - [FIX] If local storage is disabled don't bomb out (@elia)
244
+ - [FIX] Create tmp directory when actually using it (@kbrock)
245
+ - [ADDED] Default collapse_results setting that collapses multiple timings on same page to a single one (@sam)
246
+ - [ADDED] Rack::MiniProfiler.profile_singleton_method (@kbrock)
247
+ - [CHANGE] Added Rack 2.0 support (and dropped support for Rack 1.1) (@dgynn)
248
+
249
+ ## 0.9.8 - 2015-11-27 (Sam Saffron)
250
+
251
+ - [FEATURE] disable_env_dump config setting (@mathias)
252
+ - [FEATURE] set X-MiniProfiler-Ids for all 2XX reqs (@tymagu2)
253
+ - [FEATURE] add support for NoBrainer (rethinkdb) profiling (@niv)
254
+ - [FEATURE] add oracle enhanced adapter profiling (@rrooding)
255
+ - [FEATURE] pp=profile-memory can now parse query params (@dgynn)
256
+
257
+
258
+ ## 0.9.7 - 2015-08-03 (Sam Saffron)
259
+
260
+ - [FEATURE] remove confusing pp=profile-gc-time (Nate Berkopec)
261
+ - [FEATURE] truncate strings in pp=analyze-memory (Nate Berkopec)
262
+ - [FEATURE] rename pp=profile-gc-ruby-head to pp=profile-memory (Nate Berkopec)
263
+
264
+ ## 0.9.6 - 2015-07-08 (Sam Saffron)
265
+
266
+ - [FIX] incorrect truncation in pp=analyze-memory
267
+
268
+ ## 0.9.5 - 2015-07-08 (Sam Saffron)
269
+
270
+ - [FEATURE] improve pp=analyze-memory
271
+
272
+ ## 0.9.4 - 2015-07-08 (Sam Saffron)
273
+ - [UX] added a link to "more" actions in profiler
274
+ - [FEATURE] pp=help now displays links
275
+ - [FEATURE] simple memory report with pp=analyze-memory
276
+
277
+ ## 0.9.2 - 2014-06-26 (Sam Saffron)
278
+ - [CHANGE] staging and other environments behave like production (Cedric Felizard)
279
+ - [DOC] CHANGELOG reorg (Olivier Lacan)
280
+ - [FIXED] Double calls to Rack::MiniProfilerRails.initialize! now raise an exception (Julik Tarkhanov)
281
+ - [FIXED] Add no-store header (George Mendoza)
282
+
283
+ ## 0.9.1 - 2014-03-13 (Sam Saffron)
284
+ - [ADDED] Added back Ruby 1.8 support (thanks Malet)
285
+ - [IMPROVED] Amended Railstie so MiniProfiler can be launched with action view or action controller (Thanks Akira)
286
+ - [FIXED] Rails 3.0 support (thanks Zlatko)
287
+ - [FIXED] Possible XSS (admin only)
288
+ - [FIXED] Corrected Sql patching to avoid setting instance vars on nil which is frozen (thanks Andy, huoxito)
289
+
290
+ ## 0.9.0.pre - 2013-12-05 (Sam Saffron)
291
+ - Bumped up version to reflect the stability of the project
292
+ - [IMPROVED] Reports for pp=profile-gc
293
+ - [IMPROVED] pp=flamegraph&flamegraph_sample_rate=1 , allow you to specify sampling rates
294
+
295
+ ## 2013-09-17 (Ross Wilson)
296
+ - [IMPROVED] Instead of supressing all "/assets/" requests we now check the configured
297
+ config.assets.prefix path since developers can rename the path to serve Asset Pipeline
298
+ files from
299
+
300
+ ## 0.1.31 - 2013-09-03
301
+ - [IMPROVED] Flamegraph now has much increased fidelity
302
+ - [REMOVED] Ripped out flamegraph so it can be isolated into a gem
303
+ - [REMOVED] Ripped out pp=sample it just was never really used
304
+
305
+ ## 0.1.30 - 2013-08-30
306
+ - [ADDED] Rack::MiniProfiler.counter_method(klass,name) for injecting counters
307
+ - [FIXED] Counters were not shifting the table correctly
308
+
309
+ ## 0.1.29 - 2013-08-20
310
+ - [ADDED] Implemented exception tracing using TracePoint see pp=trace-exceptions
311
+ - [FIXED] SOLR patching had an incorrect monkey patch
312
+
313
+ ## 0.1.28 - 2013-07-30
314
+ - [FIXED] Diagnostics in abstract storage was raising not implemented killing
315
+ ?pp=env and others
316
+ - [FIXED] SOLR xml unescaped by mistake
317
+
318
+ ## 0.1.27 - 2013-06-26
319
+ - [ADDED] Rack::MiniProfiler.config.backtrace_threshold_ms
320
+ - [ADDED] jQuery 2.0 support
321
+ - [FIXED] Disabled global ajax handlers on MP requests @JP
322
+
323
+ ## 0.1.26 - 2013-04-11
324
+ - [IMPROVED] Allow Rack::MiniProfilerRails.initialize!(Rails.application), for post config intialization
325
+
326
+ ## 0.1.25 - 2013-04-08
327
+ - [FIXED] Missed flamegraph.html from build
328
+
329
+ ## 0.1.24 - 2013-04-08
330
+ - [ADDED] Flame Graph Support see: http://samsaffron.com/archive/2013/03/19/flame-graphs-in-ruby-miniprofiler
331
+ - [ADDED] New toggle_shortcut and start_hidden options
332
+ - [ADDED] Mongoid support
333
+ - [ADDED] Rack::MiniProfiler.counter counter_name {}
334
+ - [ADDED] Net:HTTP profiling
335
+ - [ADDED] Ruby 1.8.7 support ... grrr
336
+ - [IMPROVED] More robust gc profiling
337
+ - [IMPROVED] Script tag initialized via data-attributes
338
+ - [IMPROVED] Allow usage of existing jQuery if its already loaded
339
+ - [IMPROVED] Pre-authorize to run in all non development? and production? modes
340
+ - [FIXED] AngularJS support and MooTools
341
+ - [FIXED] File retention leak in file_store
342
+ - [FIXED] HTML5 implicit <body> tags
343
+ - [FIXED] pp=enable
344
+
345
+ ## 0.1.22 - 2012-09-20
346
+ - [FIXED] Permission issue in the gem
347
+
348
+ ## 2012-09-17
349
+ - [IMPROVED] Allow rack-mini-profiler to be sourced from github
350
+ - [IMPROVED] Extracted the pp=profile-gc-time out, the object space profiler needs to disable gc
351
+
352
+ ## 0.1.21 - 2012-09-17
353
+ - [ADDED] New MemchacedStore
354
+ - [ADDED] Rails 4 support
355
+
356
+ ## 0.1.20 - 2012-09-12 (Sam Saffron)
357
+ - [ADDED] pp=profile-gc: allows you to profile the GC in Ruby 1.9.3
358
+
359
+ ## 0.1.19 - 2012-09-10 (Sam Saffron)
360
+ - [FIXED] Compatibility issue with Ruby 1.8.7
361
+
362
+ ## 0.1.17 - 2012-09-07 (Sam Saffron)
363
+ - [FIXED] pp=sample was bust unless stacktrace was installed
364
+
365
+ ## 0.1.16 - 2012-09-05 (Sam Saffron)
366
+ - [IMPROVED] Implemented stacktrace properly
367
+ - [FIXED] Long standing problem specs (issue with memory store)
368
+ - [FIXED] Issue where profiler would be dumped when you got a 404 in production (and any time rails is bypassed)
369
+
370
+ ## 0.1.15.pre - 2012-09-04 (Sam Saffron)
371
+ - [FIXED] Annoying bug where client settings were not sticking
372
+ - [FIXED] Long standing issue with Rack::ConditionalGet stopping MiniProfiler from working properly
373
+
374
+ ## 0.1.13.pre - 2012-09-03 (Sam Saffron)
375
+ - [ADDED] Setting: config.backtrace_ignores = [] - an array of regexes that match on caller lines that get ignored
376
+ - [ADDED] Setting: config.backtrace_includes = [] - an array of regexes that get included in the trace by default
377
+ - [ADDED] pp=normal-backtrace to clear the "sticky" state
378
+ - [IMPROVED] Cleaned up the way client settings are stored
379
+ - [IMPROVED] Made pp=full-backtrace "sticky"
380
+ - [IMPROVED] Changed "pp=sample" to work with "caller" no need for stack trace gem
381
+ - [FIXED] pg gem prepared statements were not being logged correctly
382
+
383
+ ## 0.1.12.pre - 2012-08-20 (Sam Saffron)
384
+ - [IMPROVED] Cap X-MiniProfiler-Ids at 10, otherwise the header can get killed
385
+
386
+ ## 0.1.11.pre - 2012-08-10 (Sam Saffron)
387
+ - [ADDED] Basic prepared statement profiling for Postgres
388
+
389
+ ## 0.1.10 - 2012-08-07 (Sam Saffron)
390
+ - [ADDED] Option to disable profiler for the current session (pp=disable / pp=enable)
391
+ - [ADDED] yajl compatability contributed by Sven Riedel
392
+
393
+ ## 0.1.9 - 2012-07-30 (Sam Saffron)
394
+ - [IMPROVED] Made compliant with ancient versions of Rack (including Rack used by Rails2)
395
+ - [FIXED] Broken share link
396
+ - [FIXED] Crashes on startup (in MemoryStore and FileStore)
397
+ - [FIXED] Unicode issue
398
+
399
+ ## 0.1.7 - 2012-07-18 (Sam Saffron)
400
+ - [ADDED] First Paint time for Google Chrome
401
+ - [FIXED] Ensure non Rails installs have mini profiler
402
+
403
+ ## 0.1.6 - 2012-07-12 (Sam Saffron)
404
+ - [ADDED] Native PG and MySql2 interceptors, this gives way more accurate times
405
+ - [ADDED] some more client probing built in to rails
406
+ - [IMPROVED] Refactored context so its a proper class and not a hash
407
+ - [IMPROVED] More tests
408
+ - [FIXED] Incorrect profiling steps (was not indenting or measuring start time right
409
+
410
+ ## 0.1.3 - 2012-07-09 (Sam Saffron)
411
+ - [ADDED] New option to display full backtraces pp=full-backtrace
412
+ - [IMPROVED] Cleaned up mechanism for profiling in production, all you need to do now
413
+ is call Rack::MiniProfiler.authorize_request to get profiling working in
414
+ production
415
+ - [IMPROVED] Cleaned up railties, got rid of the post authorize callback
416
+
417
+ ## 0.1.1 - 2012-06-28 (Sam Saffron)
418
+ - [ADDED] Started change log
419
+ - [ADDED] added MemcacheStore
420
+ - [IMPROVED] Corrected profiler so it properly captures POST requests (was supressing non 200s)
421
+ - [IMPROVED] Amended Rack.MiniProfiler.config[:user_provider] to use ip addres for identity
422
+ - [IMPROVED] Supress all '/assets/' in the rails tie (makes debugging easier)
423
+ - [FIXED] Issue where unviewed missing ids never got cleared
424
+ - [FIXED] record_sql was mega buggy