forked from kevinhughes27/shopify-sinatra-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
48 lines (39 loc) · 1.44 KB
/
CHANGELOG
File metadata and controls
48 lines (39 loc) · 1.44 KB
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
0.7.0
-----
* make base_url private (users can add back in their app easily if needed)
* store request params in the session so they can be retrieved after the omniauth flow. This fixes app actions from the admin if the user's session has expired
* refactored some smaller methods to make the shopify_session method easier on the eyes.
0.6.0
-----
* remove current_shop* methods in favor of yielding shop_name to the block methods
0.5.0
-----
* replace webhook_session and webhook_job with shopify_webhook
* remove redis and resque as dependencies
0.4.0
-----
* update to sinatra 2.0.1
* update to attr_encrypted 3.1.0
* remove SHOPIFY_REDIRECT_URI param
0.3.4
-----
* rename lib to src in the example/template
0.3.3
-----
* fix a bug in the generator
0.3.2
-----
* remove an extra `%` from the redirect view
0.3.1
-----
* update authentication code for upcoming chrome changes.
0.3.0
-----
* Remove sinatra-twitter-bootstrap dependency. Include css from cdn directly for example app.
0.2.0
-----
* added a SHOPIFY_REDIRECT_URI env param for setting the redirect_uri (was breifly HOSTNAME)
* add versions to gemfile
* refactored the generator
* Changed install method to after_shopify_auth. Implementations of this method must now be idempotent as this will be called anytime the app is auth'd which may be due to just a lost session and not necessarily an install.
* Always redo the full auth rather than trying to keep track of first time install state vs re-auth