⚠️ [Breaking] RemovesShopifyApp::JWTMiddleware
. Any existing app code relying on decoded JWT contents set fromrequest.env
should instead include theWithShopifyIdToken
concern and call its respective methods. #1861- Handle scenario when invalid URI is passed to
sanitize_shop_domain
#1852 - Remove references to old JS files during asset precompile #1865
- Remove old translation keys for
enable_cookies_*
,top_level_interaction_*
andrequest_storage_access_*
#1865 - Add invalid id token handling for
current_shopify_domain
method #1868 - Keep original path and params when redirecting deep links to embed #1869
- Fix managed install path for SPIN environments #1877
- Migrate fullpage redirect to App Bridge CDN #1870
- Improve embedded requests detection with
Sec-Fetch-Dest
header #1873 - Fix bug where locale is not read from session if locale param is not present in app request #1878
- Patch - Don't delete session on 401 errors during retry in
with_token_refetch
#1844
- Add new zero redirect authorization strategy -
Token Exchange
.- This strategy replaces the existing OAuth flow for embedded apps and remove the redirects that were previously necessary to complete OAuth. See "New embedded app authorization strategy (Token Exchange)" for how to enable this feature.
- Related PRs: #1817, #1818, #1819, #1821, #1822, #1823, #1832, #1833, #1834, #1836,
- Bumps
shopify_api
to14.3.0
1832 - Support
id_token
from URL param 1832- Extracted controller concern
WithShopifyIdToken
- This concern provides a method
shopify_id_token
to retrieve the Shopify Id token from either the authorization header or the URL paramid_token
.
- This concern provides a method
ShopifyApp::JWTMiddleware
supports retrieving session token from URL paramid_token
ShopifyApp::JWTMiddleware
returns early if the app is not embedded to avoid unnecessary JWT verificationLoginProtection
now usesWithShopifyIdToken
concern to retrieve the Shopify Id token, thus accepting the session token from the URL paramid_token
- Extracted controller concern
- Marking
ShopifyApp::JWT
to be deprecated in version 23.0.0 1832, useShopifyAPI::Auth::JwtPayload
instead. - Fix infinite redirect loop caused by handling errors from Billing API 1833
- Extracted class -
PostAuthenticateTasks
to handle post authenticate tasks. To learn more, see post authenticate tasks. 1819 - Bumps shopify_api dependency to 14.1.0 1826
- Bumps
shopify_api
to14.0.1
1813
To migrate from a previous version, please see the v22 migration guide.
⚠️ [Breaking] Bumps minimum supported Ruby version to 3.0. Bumpsshopify_api
to 14.0 1801⚠️ [Breaking] Removes deprecated controller concerns that were renamed inv21.10.0
. 1805⚠️ [Breaking] Removes deprecatedScripttagManager
. We realize there was communication error in our logging where we logged future deprecation instead of our inteded removal. Since we have been logging that for 2 years we felt we'd move forward with the removal instead pushing this off until the next major release. 1806⚠️ [Breaking] Removes ITP controller concern andbrowser_sniffer
dependency.1810⚠️ [Breaking] Removes Marketing Extensions generator 1810⚠️ [Breaking] Thows an error if a controller includes incompatible concerns (LoginProtection/EnsureInstalled) 1809⚠️ [Breaking] No longer rescues non-shopify API errors during OAuth callback 1807- Make type param for webhooks route optional. This will fix a bug with CLI initiated webhooks.1786
- Fix redirecting to login when we catch a 401 response from Shopify, so that it can also handle cases where the app is already embedded when that happens.1787
- Always register webhooks with offline sessions.1788
- Fix session deletion for users with customized session storage#1773
- Add configuration flag
check_session_expiry_date
to trigger a re-auth when the (user) session is expired. The session expiry date must be stored and retrieved for this flag to be effective. When theUserSessionStorageWithScopes
concern is used, a DB migration can be generated withrails generate shopify_app:user_model --skip
and should be applied before enabling that flag#1757
- Fix
add_webhook
generator to create the webhook jobs under the correct directory#1748 - Add support for metafield_namespaces in webhook registration #1745
- Bumps
shopify_api
to latest version (13.4.0), adds support for 2024-01 API version #1776
- Bump
shopify_api
to 13.3.1 1763
- Bump
shopify_api
to include bugfix with mandatory webhooks + fixes for CI failures that prevented earlier release - Fixes bug with
WebhooksManager#recreate_webhooks!
where we failed to register topics in the registry#1743 - Allow embedded apps to provide a full URL to get redirected to, rather than defaulting to Shopify Admin #1746
- Fixes typo in webhook generator #1704
- Fix registration of event_bridge and pub_sub webhooks #1635
- Adds support for adding any number of trial days within
EnsureBilling
by adding thetrial_days
field toBillingConfiguration
- Updated AppBridge to 3.7.8 #1680
- Support falling back to 2 letter language code locales #1711
- Fix locale leaks across requests #1711
- Fix bug in
InMemoryUserSessionStore#store
, this can now be used out of box. #1716 - Adds support for 2023-10 API version #1734
- Adds support for toggling test charges within
EnsureBilling
by addingtest
field toBillingConfiguration
and pulling in environment variable #1688 - Adds support for 2023-07 API version #1706
- Support Unified Admin #1658
- Set
access_scopes
column to string by default #1636 - Fixes a bug with
EnsureBilling
causing infinite redirect in embedded apps #1578 - Modifies SessionStorage#with_shopify_session to call a block with a supplied session instance #1488
- Refactors
ShopifyApp::WebhhooksManager#recreate_webhooks!
to have a uniform webhook inventory that doesn't clash with the API library. Updates webhook generator to use supplied session. #1686 - No longer use session repository from API library#1689
- Fixed bug where authentication redirect could still happen even though
reauth_on_access_scope_changes
is set tofalse
#1639
- Updated shopify_api to 12.4.0 #1633
- Removed Logged output for rescued JWT exceptions #1610
- Fixes a bug with
ShopifyApp::WebhooksManager.destroy_webhooks
causing not passing session arguments to unregister method #1569 - Validates shop's offline session token is still valid when using
EnsureInstalled
#1612 - Allows use of multiple subdomains with myshopify_domain #1620
- Added a
setup_shopify_session
test helper to stub a valid session
- Fix bug with stores using the new unified admin that were falsely being flagged as phishing attempts #1608
- Move covered scopes check into user access strategy #1600
- Add configuration option for user access strategy #1599
- Fixes a bug with
EnsureAuthenticatedLinks
causing deep links to not work #1549 - Ensure online token is properly used when using
current_shopify_session
#1566 - Added debug logs, you can read more about logging here. #1545
- Emit a deprecation notice for wrongly-rescued exceptions #1530
- Log a deprecation warning for the use of incompatible controller concerns #1560
- Fixes bug with expired sessions for embedded apps returning a 500 instead of 401 #1580
- Generator properly handles uninstall #1597
- Move ownership for session persistence from library to this gem #1563
- Patch phishing vulnerability #1605
- Remove
Itp
fromLoginProtection
. See the upgrading docs for more information. #1604
- Pass access scopes on query string #1540
- Updates dependency to
shopify_api
to 12.2 to fix error with host_name argument.
- Removes assumed
https
required to run locally. Support bothhttp
andhttps
in backward compatible way. #1518
- Updating shopify_api gem to 12.0.0
-
Fixes a method signature error bug when raising
BillingError
. #1513 -
Fixes bug with Rails 7 and import maps with Safari/Firefox on the HomeController#index view. #1506
-
Refactors how default
domain_host
is populated in the CSP header added to responses in theFrameAncestors
controller concern. #1504 -
Removes duplicate
;
added in CSP header. #1500 -
Fixed an issue where
ShopifyApp::UserSessionStorage
was causing an infinite OAuth loop when not checking scopes. #1516 -
Move all error classes created for this gem into
lib/shopify_app/errors.rb
. Constant names of errors nested by modules and classes have been removed to give a shorter namespace.
- Fixed an issue where the
embedded_redirect_url
could lead to a redirect loop in server-side rendered (or production) apps. #1497 - Fixes bug where webhooks were generated with addresses instead of the path the Ruby API is expecting #1474. The breaking change that was accidentially already shipped was that
address
attribute for webhooks should be paths not addresses withhttps://
and the host name. While theaddress
attribute name will still work assuming the value is a path, this name is deprecated. Please configure webhooks with thepath
attribute name instead. - Deduce webhook path from deprecated webhook address if initializer uses address attribute. This makes this attribute change a non-breaking change for those upgrading.
- Set the appropriate CSP
frame-ancestor
directive in controllers using theEmbeddedApp
concern. #1474 - Allow Cloudflare Tunnel hosts in
config/environments/development.rb
. - Use Cloudflare Tunnel as example tunnel in readme/docs.
- Change to optimize OAuth redirects to happen on the server side when possible. Also, add an optional
.embedded_redirect_url
configuration parameter to enable customized App Bridge-supported redirect. 1483
- Bump Shopify API to version 11.0.1. It includes these updates. Fix an issue where HMAC signature verification would fail in OAuth flows during API key rotation.
- Accept extra keyword arguments to WebhooksManagerJob to ease upgrade path from v18 or older (Shopify#1466)
- Bump Shopify API to version 11.0.0. It includes these updates. The breaking change relates to the removal of API version
2021-07
support. - Internal update, adding App Bridge 3 for redirect (only). #1458
- Add the
login_callback_url
config to allow overwriting that route as well, and mount the engine routes based on the configurations. #1445 - Add special headers when returning 401s from LoginProtection. #1450
- Add a new
billing
configuration which takes in aShopifyApp::BillingConfiguration
object and checks for payment on controllers withAuthenticated
. #1455
- Fix regression in apps using online tokens. #1413
- Bump Shopify API to version 10.0.3. It includes these fixes.
- Bump Shopify API (https://github.com/Shopify/shopify-api-ruby) to version 10.0.2. This update includes patch fixes since the initial v10 release.
- Use v10 of the Shopify API (https://github.com/Shopify/shopify-api-ruby). This update requires changes to an app - please refer to the migration guide for details. BREAKING, please see migration notes.
- Use the App Bridge 2.0 redirect when attempting to break out of an iframe. This happens when an app is installed, requires new access scopes, or re-authentication because the login session is expired. #1376
- Fix bug causing
unsafe-inline
CSP violation. #1362
- Support Rails 7 #1354
- Fix webhooks handling in Ruby 3 #1342
- Update to Ruby 3 and drop support to Ruby 2.5 #1359
- Use App Bridge client for redirect #1247
- Replaces deprecated EASDK with App Bridge when redirecting out of an embedded iframe.
- Change regexp to match standard ngrok URLs. #1311
- Make
EnsureAuthenticatedLinks
compatible with AppBridge 2.0. #1277- Includes the
host
parameter when redirecting to the splash page in an unauthenticated state.
- Includes the
- Added careers link to readme. #1274
- Fix bug causing OAuth flow to fail due to CSP violation. #1265
- Support OmniAuth 2.x
- If your app has custom OmniAuth configuration, please refer to the OmniAuth 2.0 upgrade guide.
- Support App Bridge version 2.x in the Embedded App layout. #1241
- Bug fix: Lock the CDN App Bridge version to
v1.X.Y
in the Embedded App layout #1238- App Bridge
v2.0
is a non-backwards compatible release - A future major shopify_app gem release will support only App Bridge
v2.0
- App Bridge
- Support Rails
v6.1
#1221- Check out Upgrading to
v17.2.0
in the Upgrading.md guide for the changes needed to support Railsv6.1
- Check out Upgrading to
- Fix issues with mocking OmniAuth callback controller tests #1210
- Create OmniAuthConfiguration object to build future OmniAuth strategies #1190
- Added access scopes to Shop and User models, added checks to handle scope changes #1192 #1197
- Fix omniauth strategy not being set correctly for apps using session tokens #1164
- Redirect user to login page if shopify domain is not found in the
EnsureAuthenticatedLinks
concern #1158
- Amend fix for #1144 to raise on missing API keys only when running the server #1155
- Fix failing script tags and webhooks installs after completing OAuth #1151
- Don't attempt to read Shopify environment variables when the generators are running, since they may not be present yet #1144
- Rails 6.1 is not yet supported #1134
- Use Session Token auth strategy by default for new embedded apps #1111
- Create optional
EnsureAuthenticatedLinks
concern to authenticate deep links using Turbolinks #1118
- Update all
html.erb
andcss
files to correspond with updated store admin design language #1102
- Allow JWT session token
sub
field to be parsed as a string #1103
- Change
X-Shopify-API-Request-Failure-Unauthorized
HTTP header value from boolean to string
- Patch to not log params in ShopifyApp jobs #1086
- Fix to ensure post authenticate jobs are run after callback requests #1079
- Add debug logs in sessions controller
- Add debug logs for investigating authentication issues
- Replace script tags for ITP screens with data attributes
- Create user session if one does not exist but was expected
- Revert "Replace redirect calls to use App Bridge redirect functionality"
- Replace redirect calls to use App Bridge redirect functionality
- Ruby 2.4 is no longer supported by this gem
- Bump gemspec ruby dependency to 2.5
- (Beta) Add
--with-session-token
flag to the Shopify App generator to create an app that is compatible with App Bridge Authentication
- Add
signal_access_token_required
helper method for apps to indicate access token has expired and that a new one is required
- Fix the version checks for the dependency on
shopify_api
to allow all of v9.X
- Skip CSRF protection if a valid signed JWT token is present as we trust Shopify to be the only source that can sign it securely. #994
- Added Payload Verification module #992
- Add concern to check for valid shop domains in the unauthenticated controller
- Get current shop domain from JWT header
- Validate that the omniauth data matches the JWT data
- Persist the token information to the session store
- Update browser_sniffer to 1.2.2
- Adds the shop URL as a parameter when redirecting after the callback
- Bump minimum Ruby version to 2.4
- Bug fixes
- Small addition to WebhookJob to return if the shop is nil #952
- Added Rubocop to the Repo #948
- Added a WebhookVerification test helper #950
- Fix for deprecation warning while loading session storage at startup
- Changes that will allow future JWT authentication
- fix for deprecation warning while loading session storage at startup
- #887 Added concurrent user and shop session support (online/offline) BREAKING, please see README for migration notes.
- Remove check for API_KEY in config that was throwing errors during install #919
- Adds changelog information and README updates for 8.4.0 #916
- Updating shopify_api gem to 9.0.1
- Reverts reverted PR (#895) #897
- Moves samesite middleware higher in the stack #898
- Fix issue where not redirecting user to granted storage page casues infinite loop #900
- Reverts "Fix for return_to in safari after enable_cookies/granted_storage_access" introduced in 12.0.1
- disable samesite cookie middleware in tests
- middleware compatibility for ruby 2.3
- samesite cookie fixes for javascript libraries
- change generators to add AppBridge instead of EASDK
- Fix for return_to in safari after enable_cookies/granted_storage_access
- Updating shopify_api gem to 9.0.0
- Fix to allow SessionStorage to be flexible on what model names that the are used for storing shop and user data
- Move ExtensionVerificationController from engine to app controllers, as being in the engine makes ActionController::Base get loaded before app initiates #855
- Add back per-user token support (added in 11.5.0, reverted in 11.5.1)
- If you have an override on the
self.store(auth_session)
method on yourSessionRepository
model, the method signature must be changed as according to this change
- If you have an override on the
- Enable SameSite=None; Secure by default on all cookies for embedded apps #851
- Ensures compatibility of embedded apps with upcoming Chrome version 80 changes to cookie behaviour
- Configurable via
ShopifyApp.configuration.enable_same_site_none
(default true for embedded apps)
- Revert per-user token support temporarily
- Modularizes durable session storage
- Introduces per-user token support and user session management
- Remove
dotenv-rails
dependency. #835
- Fix hosts generator in Rails 5 #823
- Bump browser_sniffer version to 1.1.3 #824
- Update assets to be compatible with Rails 6 #808
- Adds ngrok whitelist in development #802
- Bump omniauth-shopify-oauth2 gem to v2.2.0
- Add Webmock and Pry as development dependencies
- Update install generator to leverage updates to ShopifyAPI::ApiVersion add in v8.0.0 of the shopify_api gem #790
- Lock shopify_api gem dependency to
~> 7.0
from>= 7.0.0
. - Remove flakey JS Tests
- bump sqlite3 development dependency to
~>1.4
from~> 1.3.6
. #789
- Add dotenv-rails gem to install generator, so apps fetch credentials from
.env
by default: #776
- Rename
login_url
method tologin_url_with_optional_shop
to avoid ambiguity with Rails' route helper method of the same name (see #585).
- Make sure OAuth-related redirects return user to originally requested URL once authenticated
- Add/update translations
- Update README to clarify nested routes
- Remove example app. Users should instead use the generators to scaffold an example app.
- Bump required Rails version to
> 5.2.1
to ensure5.2.1.1
or greater is used. This ensures two things:- Apps are not vulnerable to CVE-2018-16476
- Webhook payloads, from Shopify for API version 2019-07, which are processed in ActiveJob background jobs (the default behaviour of shopify_app's WebhooksController) are compatible, due to how ActiveJob versions prior to 5.2.1.1 process GlobalIDs encoded as string in job parameters. This prevents the exceptions reported previously.
- Fix returning to a deep link after authentication #746
- Add
meta viewport
tags to fix mobile responsive problems - Remove outdated, extraneous
yarn.lock
file (and rely on existingpackage-lock.json
instead) - Move inline js to a js asset file
- Minor documentation corrections
- Update browser_sniffer to fix unnecessary ITP flows in Shopify Mobile
- Add additional languages to translation.yml
- Minor documentation corrections
- Minor documentation corrections
- Handle
Webhook.all
returningnil
and raising onindex_by
- Breaking change: Api version support added see migration guide
-
Locked
shopify_api
gem to version < 7.0. 7.0 will have breaking changes that are incompatable withshopify_app
-
Session storage validation for shopify_domain is now set to
case_sensitive: false
.
- Added an
Authenticated
concern to allow gem users to inherit from a customAuthenticatedController
instead ofShopifyApp::AuthenticatedController
- Fixed a typo in RotateShopifyTokenJob
Added support for rotating Shopify access tokens:
- Added a generator shopify_app:rotate_shopify_token_job for generating the job to perform token rotation
- Extend Shopify app configuration to support a new and old secret token
- Extended webhook validation code to support validating against new and old secret tokens
- See the README for more details: https://github.com/Shopify/shopify_app#rotateshopifytokenjob
- Clear stale user session during auth callback
- Update README and Releasing.md
- Allow user agent to not be set
- Remove legacy EASDK examples
- Add .ruby-version file
- Clean up omniauth setup and fix examples
- Fix infinite redirect loops if users have disabled 3rd party cookies in their browser
- Fix embedded app session management in Safari 12.1
- Note that with this change we have extracted the callback action in its own controller. If you are relying on it, see the README for more details: https://github.com/Shopify/shopify_app#callback
- Shop names passed to OAuth are no longer case sensitive
- Removes
read_orders
from the default scopes provided upon app generation
- Adds the ability to customize the login URL through the initializer
- Fix embedded app session management in Safari 12
- Add support for translation platform
- Sanitize the shop query param to include
.myshopify.com
if no domain was provided
- fix iframe headers on session controller
- Add CSRF protection through
protect_from_forgery with: :exception
onShopifyApp::AuthenticatedController
- Send head :forbidden instead of :unauthorized when AppProxyVerification fails
- Changes how the ESDK concern allows iframes. Fixes an issue with the first request for some people
- Bugfix: Don't logout shops from
login_again_if_different_shop
when Rails params for a 'Shop' model are passed in [#477]
Known bug: Shop logged out when submitting a form for 'Shop' objects, fixed in 8.2.1 [See #480 for details]
- Add
webhook_jobs_namespace
config option. [#463] - Updates login page styles to match the Polaris design system. [#474]
Known bug: Shop logged out when submitting a form for 'Shop' objects, fixed in 8.2.1 [See #480 for details]
- Add support for per_user_authentication
- Pass the shop param in the session for authentication instead of a url param (prevents csrf). If you are upgrading from an older version of the gem you will need to update your omniauth.rb initializer file. Check the example app for what it what it should look like.
Known bug: Shop logged out when submitting a form for 'Shop' objects, fixed in 8.2.1 [See #480 for details]
- Removed the
shopify_session_repository
initializer. The SessionRepository is now configured through the main ShopifyApp configuration object and the generated initializer - Moved InMemorySessionStore into the ShopifyApp namespace
- Remove ShopifySession concern. This module made the code internal to this engine harder to follow and we want to discourage over-writing the auth code now that we have generic hooks for all extra tasks during install.
- Changed engine controllers to subclass ActionController::Base to avoid any possible conflict with the parent application
- Removed the
ShopifyApp::Shop
concern and added its methods toShopifyApp::SessionStorage
. To update for this change just remove this concern anywhere it is being used in your application. - Add
ShopifyApp::EmbeddedApp
controller concern which handles setting the required headers for the ESDK. Previously this was done by injecting configuration into applicaton.rb which affects the entire app. - Add webhooks to generated home controller. This should help new users debug issues.
Known bug: Shop logged out when submitting a form for 'Shop' objects, fixed in 8.2.1 [See #480 for details]
- Add an after_authenticate job which will be run once the shop is authenticated. [#431]
Known bug: Shop logged out when submitting a form for 'Shop' objects, fixed in 8.2.1 [See #480 for details]
- Bump required omniauth-shopify-oauth2 version to 1.2.0.
- Always expect params[:shop] to be a string.
- Remove 'Logged in' flash message [#425]
- Fix an issue with the create_shops generator template [#423]
- Remove support for Rails 4 [#417]
- Add i18n locale param support [#409]
- Require
shopify_app
>= 4.3.2
. This version relaxes the ruby version requirement from>= 2.3.0
to>= 2.0
- Rails 5: ActionDispatch::Reloader#to_prepare is deprecated [#404]
- Update LoginProtection#fullpage_redirect_to to get shopify domain from session [#401]
- Update LoginProtection.redirection_javascript to work with absolute URLS [#389]
- Fix redirect issue by sanitizing shop name on sessions#new
- Use postMessage to redirect parent iframe during authentication [#366]
- Add support for dynamically generating scripttag URLs
- Bug-fix: Update scripttags_manager_job
- Bug-fix:
--application_name
and--scope
generates proper Configuration even when options supplied to them contain whitespaces.
- Disable application layout rendering for the
/login
page
- Lower required Ruby version to 2.2.2 to better match up with Rails 5.0
- Update login page copy
- Add application_name configuration option
- Add new optional App Proxy Controller Generator to the Engine. Refer README for details.
- Include ShopifyApp::LoginProtection in Authenticated and Session Controller directly instead of Application Controller.
- Loosen ShopifyAPI dependency requirements to
>= 4.2.2
and allow ShopifyAPI 4.3.0 and above. - Move application.js to inside HEAD in Embedded App Template.
- Add ability to override the ActiveJob queue names in initializer file.
- Pass configured resources (like webhooks or scripttags) into the job rather than reading the config again. This allows for dynamically setting ShopifyApp config in a web request and having the job handle it correctly. This change does not affect the usage of webhooks or scripttags
- Loosen Rails dependency requirements to
>= 4.2.6
and allow Rails 5.0 - Add support for App Proxies
- Remove http-equiv meta tag as it causes OAuth issues in Chrome
- Remove obtrusive “Continue” text in redirects
- Bump required shopify_api version to 4.x.
- Bump required Rails version to
>= 4.2.6
since we are now usingActiveSupport::SecurityUtils:Module
- Fix CSRF redirect issue
- add support to i18n for flash messages (English and Spanish).
- rename WebhooksController module to WebhookVerification
- added a WebhooksController which automatically delegates to jobs
- moved all engine controllers under the ShopifyApp namespace
- rename SessionsController module to SessionsConcern
- more robust redirects, with valid HTML in HTTP response bodies
ShopifyApp::Controller
has been removed. You’ll need to replace all includes ofShopifyApp::Controller
withShopifyApp::LoginProtection
- adds add_webhook generator to make it easier to add new webhooks to your app
- update the install generator to use standard rails generate arguments, usage has changed from
-api_key=your_key
to--api_key your_key
- remove the redirect uri - this is done automatically inside omniauth now
- Update minimum required rails version to 4.2 to include active job
- More semantic and accessible markup in the sessions/new, embedded_app, and product index views.
- Moved all JavaScript to load at the bottom of the page instead of the head, for page loading better performance.
- Move SessionStorage from a generated class to a re-usable module. To migrate to the new module, delete the old generated SessionStorage class in the models directory and include the SessionStorage module in your Shop model.
- Adds a WebhooksManager class and allows you to configure what webhooks your app needs. The rest is taken care of by ShopifyApp provided you set up a backgroud queue with ActiveJob
- Adds a WebhooksController module which can be included to handle the boiler plate code for a controller receiving webhooks from Shopify
- add callback url to omniauth provider
- add default redirect_uri
- Return an HTTP 401 for XHRs that aren't logged in
- add redirect_uri which is now required
- fix login again with different shop
- Re-written as a proper rails engine
- New modular generators
- generates embedded apps by default
- can bootstrap your app with a standard shop table and model
- code now lives as concerns in the engine which are included in your controllers feel free to override anything you need in your app
- re-styled with Twitter Bootstrap css framework and updated docs [warren]
- Require shopify_api gem via proper railtie setup [willem]
- Don't require shopify.yml when using environment variables [cody]
- Renamed instances of current_shop to shop_session to maintain logic
- Replace old LoginController with a RESTful SessionsController