summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-06-09 10:16:22 +0200
committerAzul <azul@leap.se>2014-06-09 10:16:22 +0200
commit9fa52ed80d71ec56ed5acf18dfd63bd03b201cc5 (patch)
tree1fcbb560b0103123d49fb953e86fdb960ee5dd13
parent366ff2e7f5ecd44aab1cddfd0a7b73ab7b213e85 (diff)
Version 0.5.20.5.2
Hotfix since 0.5.2 release candiate: * tickets: fix bug that allow index of other users Pull request #167 from azul/feature/i18n-for-ticket-system: * fix flash for creating anonymous tickets * adopt tests to new translations * destroy_btn helper method * move users key into layouts scope so it does not conflict with users scope * add btn helper for link_to with .btn * remove icon_color variable - yagni * sorting translation keys some * navigation works with empty locale selected * tickets: structure i18n * flash_for with_errors option displays error messages * remove unused bold helper and instead sanitize flash * Controller#flash_for instead of FlashResponder * split up and refactor TicketController#update * separate tests for the ticket list from main controller test * splitting up long functional test case * move comment related tests out of TicketControllerTest * use i18n.missing_translations Pull request #168 from azul/bugfix/fix-login-validations: * clearify identity validations * ensure User#reload returns self * hand on errors from Email to Identity to User * catch corner cases of account creation * adopt tests to new error messages for identities * allow changing the user_id on an identity * ensure identity is cleared on user.reload - fixes test * use Identity for testing login availability Pull request #163 from azul/feature/3398-save-hashed-token * hash token with sha512 against timing attacs #3398 Pull request #165 from azul/feature/cert-fingerprints * change from GET to POST for certs * store fingerprints with timestamp * store cert fingerprint with main user identity * SmtpCertsController, routes and tests * fix Email so User.new.valid? does not crash * basic integration test for cert API * calculate cert fingerprints to store for leap_mx Pull request #166 from elijh/feature/footer * better detection if price link should be shown in the footer Pull request #162 from azul/feature/3295-custom-error-pages * little bit of documentation * i18n for error pages * custom error pages for 404 and 500 errors
-rw-r--r--Gemfile.lock4
-rw-r--r--lib/leap_web/version.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
index 2c229f9..d189022 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -8,13 +8,13 @@ GIT
PATH
remote: engines/billing
specs:
- leap_web_billing (0.5.1)
+ leap_web_billing (0.5.2)
braintree
PATH
remote: engines/support
specs:
- leap_web_help (0.5.1)
+ leap_web_help (0.5.2)
GEM
remote: https://rubygems.org/
diff --git a/lib/leap_web/version.rb b/lib/leap_web/version.rb
index b92d0a3..56df918 100644
--- a/lib/leap_web/version.rb
+++ b/lib/leap_web/version.rb
@@ -1,3 +1,3 @@
module LeapWeb
- VERSION = "0.5.1" unless defined?(LeapWeb::VERSION)
+ VERSION = "0.5.2" unless defined?(LeapWeb::VERSION)
end