udongo 7.1.1 → 7.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 02ea3c788e40517462268df49a0e734da0b01dca
4
- data.tar.gz: 88054d646f714147cb9c4e06433e5657f99a77b2
3
+ metadata.gz: b3cd32b4e76ede95b8dfd9b807efef5977524461
4
+ data.tar.gz: 7dc480de3a68cb155adb6148d6a32dcefcb8a95e
5
5
  SHA512:
6
- metadata.gz: 79ff8f7204061f9cda5eb6d07cd8a4b5ade4d2444d6e205a45aff685334eea9c5d461c7802c20a2e8a0ade1a6aa4a108be92695b86ad7fec1db7b982f13b7c71
7
- data.tar.gz: 6566991193cd194faec3aab8781cb151a5ac6c5b6049371c381c34a82d34c003572766bfbacf432777d2a8be3513f428cd71e88e5aab4d6325b8d6eaaceb8499
6
+ metadata.gz: 852918bdc15d73352738b828373e1bc965657b9be960e6d5ecc3ee4432abfdcf9c1d52e58dd581e6178a1d705126cbe52679f0942ef9a95917c9b0055f073394
7
+ data.tar.gz: 5762059b9bbe743f8c98272da0ea612c516554d2150886818150705914d61f8c9f62926982c6a2389215b8573b2ed9c3f80e02fae38c5aefe6f7666b8c8889e3
data/changelog.md CHANGED
@@ -1,3 +1,8 @@
1
+ 7.1.2 - 2017-11-19
2
+ --
3
+ * Make the plain/html content storage of the email model a lot bigger.
4
+
5
+
1
6
  7.1.1 - 2017-11-10
2
7
  --
3
8
  * Upgraded the bootstrap-datepicker to 1.7.1.
@@ -0,0 +1,11 @@
1
+ class LargerEmailPlainHtmlStorage < ActiveRecord::Migration#[5.0]
2
+ def up
3
+ change_column :emails, :plain_content, :text, limit: 16777215
4
+ change_column :emails, :html_content, :text, limit: 16777215
5
+ end
6
+
7
+ def down
8
+ change_column :emails, :plain_content, :text, limit: 65535
9
+ change_column :emails, :html_content, :text, limit: 65535
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module Udongo
2
- VERSION = '7.1.1'
2
+ VERSION = '7.1.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: udongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.1
4
+ version: 7.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davy Hellemans
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-11-10 00:00:00.000000000 Z
12
+ date: 2017-11-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -744,7 +744,6 @@ files:
744
744
  - app/views/layouts/backend/login.html.erb
745
745
  - app/views/layouts/frontend/application.html.erb
746
746
  - changelog.md
747
- - config/environment.rb
748
747
  - config/initializers/assets.rb
749
748
  - config/initializers/ckeditor.rb
750
749
  - config/initializers/core_ext/string.rb
@@ -859,6 +858,7 @@ files:
859
858
  - db/migrate/20170728094909_add_seo_locales_to_models_with_seo.rb
860
859
  - db/migrate/20170728125838_remove_content_images.rb
861
860
  - db/migrate/20170919135942_add_external_reference_to_content_column.rb
861
+ - db/migrate/20171119182643_larger_email_plain_html_storage.rb
862
862
  - lib/tasks/task_extras.rb
863
863
  - lib/tasks/udongo_tasks.rake
864
864
  - lib/udongo.rb
File without changes