-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
53 lines (38 loc) · 1.63 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
CHANGELOG
Version 0.2.0
Add ability to pass in logged_in_url from ramenSettings
Version 0.3.0
Add RamenRails::Import for importing customers directly into Ramen from command line
Version 0.3.1
Print out time for each import
Version 0.4.0
Add support for window.ramenSettings.onload and window.ramenOnload. Change the way
ramenSettings is set so that it can be merged with other options previously defined
in <script> tags.
Version 0.5.0
Add support for Companies
Version 0.5.1
Make importer support Companies. Add tests for importer.
Version 0.6.0
Support sending custom `trait` data into Ramen for Users & Companies.
Version 0.6.1
Check to see if `current_user` responds to `#persisted?` and, if so, and if it returns `false`,
don't render `ramenSettings`
Version 0.6.2
Add more information to the 'exception in script tag' comment code
Version 0.6.3
Since we fallback on `current_company` if it is not provided, we shouldn't throw an exception if that
object doesn't conform to the interface we're expecting. Try to get name, url, and id, but don't force
it.
Version 0.6.4
Run #to_s on name, email, id (Customer) and url, name, id (Company) to deal with (among other things)
how MongoDB BSON::ObjectIds are serialized
Version 0.7.0
Added ability to set `config.enabled_environments` so that the after_filter will only be ran
on selected environments.
Version 0.7.1
Because we yanked 0.7.0 to update this Changelog :)
Version 0.7.2
When an environment is disabled, we render a comment into the HTML saying "Ramen disabled
in this environment". This bug fix makes that only happenf for `text/html` content types.
We also made some performance improvements.