fat_free_crm 0.18.0 → 0.18.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fat_free_crm might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e742d170861eae5ac601236d6f2d0ddd25d42186a66651a4adb24f5f65859fa
4
- data.tar.gz: 25bea2bb3db3844aac5084caab8c6dd18a6ba857ed3cf3ea997ef7c604435f83
3
+ metadata.gz: bb89ae97ee3b23e349affe50ca12d56cda21689f8bb317c7b877a48bd8fe4258
4
+ data.tar.gz: e548f576324a2c75e7daa6fd12997880ef295a82b353a500542c33f6ac064a78
5
5
  SHA512:
6
- metadata.gz: fea727f3837d27e618797ef91da85a2b628965fede5b84ec579c7362dc1ff7ee9180a5a39b67c705e8be528ff7431bc4077dee9a7985fb61e3c3a0f852b95c03
7
- data.tar.gz: e63e10fc312f93a2b5e4f8be302202ebd4221ca400debf663e6a0b5acd66779fee4d03cbe9aafcdd99ece4acdb8db2d68311ec803e64e498664cc944d57491b4
6
+ metadata.gz: 663ff8b5e566c482cc8f9e05b4b89ed04f9567df1409593ac6de0d99305029583f1943bcf9dd616b5a00cd16ca533c1f04a421535a773db57cabfa1b3ee778a2
7
+ data.tar.gz: 3f95330ec40b1dbb86d25c19d3ab66f9303115668318e9a074f95e05600a448b75810d751e83acd41c827b92476c2a6f413c9843bef44e4a1f7669d3067caf25
@@ -4,8 +4,11 @@ It does not matter how slowly you go as long as you do not stop.
4
4
  First they ignore you, then they laugh at you, then they fight you,
5
5
  then you win. –- Mahatma Gandhi
6
6
 
7
- Unreleased (0.19.0)
8
- =======
7
+ Sat Oct 27, 2018 (0.18.1)
8
+ ---------------------------------------------------------------------
9
+
10
+ #### Fixed XSS flaw in tags_helper
11
+ Credit Antonin Steinhauser (asteinhauser) for discovery and responsible disclosure.
9
12
 
10
13
 
11
14
  Sat Apr 21, 2018 (0.18.0)
@@ -17,7 +17,7 @@ module TagsHelper
17
17
  elsif !query.include?(hashtag)
18
18
  query += " #{hashtag}"
19
19
  end
20
- out << link_to_function(tag, "crm.search_tagged('#{query}', '#{model.class.to_s.tableize}')", title: tag)
20
+ out << link_to_function(tag, "crm.search_tagged('#{escape_javascript(query)}', '#{model.class.to_s.tableize}')", title: tag)
21
21
  end
22
22
  end
23
23
 
@@ -9,7 +9,7 @@ module FatFreeCRM
9
9
  module VERSION #:nodoc:
10
10
  MAJOR = 0
11
11
  MINOR = 18
12
- TINY = 0
12
+ TINY = 1
13
13
  PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fat_free_crm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Dvorkin
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2018-04-21 00:00:00.000000000 Z
15
+ date: 2018-10-27 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: rails
@@ -548,7 +548,6 @@ extensions: []
548
548
  extra_rdoc_files: []
549
549
  files:
550
550
  - ".docker/nginx/sites-enabled/ffcrm.conf"
551
- - ".dockerignore"
552
551
  - ".gitignore"
553
552
  - ".rubocop.yml"
554
553
  - ".rubocop_todo.yml"
@@ -1,11 +0,0 @@
1
- .bundle
2
- .git*
3
- db/*.sql*
4
- log/*
5
- tmp/*
6
- Dockerfile
7
- README.md
8
- spec/reports
9
- spec/internal/public/avatars
10
- spec/internal/public/assets
11
- coverage/*