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 +4 -4
- data/CHANGELOG.md +5 -2
- data/app/helpers/tags_helper.rb +1 -1
- data/lib/fat_free_crm/version.rb +1 -1
- metadata +2 -3
- data/.dockerignore +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb89ae97ee3b23e349affe50ca12d56cda21689f8bb317c7b877a48bd8fe4258
|
4
|
+
data.tar.gz: e548f576324a2c75e7daa6fd12997880ef295a82b353a500542c33f6ac064a78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 663ff8b5e566c482cc8f9e05b4b89ed04f9567df1409593ac6de0d99305029583f1943bcf9dd616b5a00cd16ca533c1f04a421535a773db57cabfa1b3ee778a2
|
7
|
+
data.tar.gz: 3f95330ec40b1dbb86d25c19d3ab66f9303115668318e9a074f95e05600a448b75810d751e83acd41c827b92476c2a6f413c9843bef44e4a1f7669d3067caf25
|
data/CHANGELOG.md
CHANGED
@@ -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
|
-
|
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)
|
data/app/helpers/tags_helper.rb
CHANGED
@@ -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
|
|
data/lib/fat_free_crm/version.rb
CHANGED
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.
|
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-
|
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"
|