jquery-rails 3.0.4 → 3.1.4

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

Potentially problematic release.


This version of jquery-rails might be problematic. Click here for more details.

checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: df3039511de025f938c1043703f28e901fac32b5
4
+ data.tar.gz: 8cf080440d33860a8368a64293466e029dbdb02e
5
+ SHA512:
6
+ metadata.gz: e9e5bb5f4a6a4efa97ab5c56675449781a7065a7addedc7cd1273ed4c3409d5fb6cf986af1016766cdc013dc8448f6f30f6a3c72465092fc88499b8c80b61631
7
+ data.tar.gz: cfaf7788837edd78f566323abc7ff7b654fada640b78731265b7f84a2cad8ad6c2ee16850e1942db839622c2773369aa4c357d33793c1920d0e4dc9fa3db1ca2
data/CHANGELOG.md CHANGED
@@ -1,7 +1,26 @@
1
+ ## 3.1.3 (16 June 2015)
2
+
3
+ - Fix CSP bypass vulnerability. CVE-2015-1840
4
+
5
+ ## 3.1.2 (1 September 2014)
6
+
7
+ - Updated to jquery-ujs 1.0.1
8
+
9
+ ## 3.1.1 (23 June 2014)
10
+
11
+ - Updated to jQuery 1.11.1
12
+ - Updated to jquery-ujs 1.0.0
13
+
14
+ ## 3.1.0 (29 January 2014)
15
+
16
+ - Updated to jQuery 1.11.0
17
+ - Updated to latest jquery-ujs
18
+ - Added development rake task for updating jQuery
19
+
1
20
  ## 3.0.4 (10 July 2013)
2
21
 
3
- - Updated to jQuery 1.10.2
4
- -
22
+ - Fixed jQuery source map
23
+
5
24
  ## 3.0.3 (10 July 2013)
6
25
 
7
26
  - Updated to jQuery 1.10.2
data/README.md CHANGED
@@ -4,7 +4,7 @@ jQuery! For Rails! So great.
4
4
 
5
5
  This gem provides:
6
6
 
7
- * jQuery 1.10.2
7
+ * jQuery 1.11.1
8
8
  * the jQuery UJS adapter
9
9
  * assert_select_jquery to test jQuery responses in Ruby tests
10
10
 
data/Rakefile CHANGED
@@ -19,3 +19,30 @@ task :guard_version do
19
19
 
20
20
  check_version('jquery.js', /jQuery JavaScript Library v([\S]+)/, 'JQUERY_VERSION')
21
21
  end
22
+
23
+ task :update_jquery do
24
+ puts "Downloading jquery.js"
25
+ puts `curl -o vendor/assets/javascripts/jquery.js http://code.jquery.com/jquery.js`
26
+ puts "Downloading jquery.min.js"
27
+ puts `curl -o vendor/assets/javascripts/jquery.min.js http://code.jquery.com/jquery.min.js`
28
+ puts "Downloading jquery.min.map"
29
+ puts `curl -o vendor/assets/javascripts/jquery.min.map http://code.jquery.com/jquery.min.map`
30
+
31
+ puts "Updating version.rb"
32
+ version = false
33
+ File.foreach('vendor/assets/javascripts/jquery.js') do |line|
34
+ version = line.match(/jQuery JavaScript Library v([\S]+)/)
35
+ version = version && version[1]
36
+ break if version
37
+ end
38
+
39
+ version_path = 'lib/jquery/rails/version.rb'
40
+ lines = IO.readlines(version_path).map do |line|
41
+ line.gsub(/JQUERY_VERSION = "([\d\.]+)"/, "JQUERY_VERSION = \"#{version}\"")
42
+ end
43
+ File.open(version_path, 'w') do |file|
44
+ file.puts lines
45
+ end
46
+
47
+ puts "\e[32mDone!\e[0m"
48
+ end
data/VERSIONS.md CHANGED
@@ -1,41 +1,48 @@
1
1
  # Bundled Versions
2
2
 
3
- | Gem | jQuery | jQuery UI |
4
- |--------|--------|-----------|
5
- | 3.0.3 | 1.10.2 | - |
6
- | 3.0.2 | | - |
7
- | 3.0.1 | 1.10.1 | - |
8
- | 3.0.0 | | - |
9
- | 2.3.0 | 1.10.0 | 1.10.3 |
10
- | 2.2.2 | | |
11
- | 2.2.1 | 1.9.1 | |
12
- | 2.2.0 | 1.9.0 | |
13
- | 2.1.4 | 1.8.3 | 1.9.2 |
14
- | 2.1.3 | 1.8.2 | |
15
- | 2.1.2 | 1.8.1 | |
16
- | 2.1.1 | | |
17
- | 2.1.0 | 1.8.0 | 1.8.23 |
18
- | 2.0.3 | | ↾ |
19
- | 2.0.2 | 1.7.2 | 1.8.18 |
20
- | 2.0.1 | | |
21
- | 2.0.0 | | ↾ |
22
- | 1.0.19 | 1.7.1 | ↾ |
23
- | 1.0.18 | ↾ | ↾ |
24
- | 1.0.17 | 1.7.0 | |
25
- | 1.0.16 | 1.6.4 | 1.8.16 |
26
- | 1.0.15 | | |
27
- | 1.0.14 | ↾ | ↾ |
28
- | 1.0.13 | 1.6.2 | 1.8.14 |
29
- | 1.0.12 | | ↾ |
30
- | 1.0.11 | ↾ | ↾ |
31
- | 1.0.10 | | ↾ |
32
- | 1.0.9 | | |
33
- | 1.0.8 | ↾ | ↾ |
34
- | 1.0.7 | ↾ | ↾ |
35
- | 1.0.6 | | |
36
- | 1.0.5 | ↾ | ↾ |
37
- | 1.0.4 | ↾ | ↾ |
38
- | 1.0.3 | 1.6.1 | ↾ |
39
- | 1.0.2 | ↾ | ↾ |
40
- | 1.0.1 | ↾ | 1.8.12 |
41
- | 1.0.0 | 1.6.0 | - |
3
+ | Gem | jQuery | jQuery UJS | jQuery UI |
4
+ |--------|--------|------------| ----------|
5
+ | 3.1.4 | 1.11.1 | 1.0.4 | - |
6
+ | 3.1.3 | 1.11.1 | 1.0.4 | - |
7
+ | 3.1.2 | 1.11.1 | 1.0.1 | - |
8
+ | 3.1.1 | 1.11.1 | 1.0.0 | - |
9
+ | 3.1.0 | 1.11.0 | - | - |
10
+ | 3.0.5 | 1.11.0 | - | - |
11
+ | 3.0.4 | | - | - |
12
+ | 3.0.3 | 1.10.2 | - | - |
13
+ | 3.0.2 | | - | - |
14
+ | 3.0.1 | 1.10.1 | - | - |
15
+ | 3.0.0 | | - | - |
16
+ | 2.3.0 | 1.10.0 | - | 1.10.3 |
17
+ | 2.2.2 | | - | ↾ |
18
+ | 2.2.1 | 1.9.1 | - | ↾ |
19
+ | 2.2.0 | 1.9.0 | - | ↾ |
20
+ | 2.1.4 | 1.8.3 | - | 1.9.2 |
21
+ | 2.1.3 | 1.8.2 | - | ↾ |
22
+ | 2.1.2 | 1.8.1 | - | ↾ |
23
+ | 2.1.1 | ↾ | - | ↾ |
24
+ | 2.1.0 | 1.8.0 | - | 1.8.23 |
25
+ | 2.0.3 | | - | |
26
+ | 2.0.2 | 1.7.2 | - | 1.8.18 |
27
+ | 2.0.1 | ↾ | - | ↾ |
28
+ | 2.0.0 | | - | |
29
+ | 1.0.19 | 1.7.1 | - | ↾ |
30
+ | 1.0.18 | ↾ | - | ↾ |
31
+ | 1.0.17 | 1.7.0 | - | ↾ |
32
+ | 1.0.16 | 1.6.4 | - | 1.8.16 |
33
+ | 1.0.15 | ↾ | - | ↾ |
34
+ | 1.0.14 | ↾ | - | ↾ |
35
+ | 1.0.13 | 1.6.2 | - | 1.8.14 |
36
+ | 1.0.12 | ↾ | - | ↾ |
37
+ | 1.0.11 | ↾ | - | ↾ |
38
+ | 1.0.10 | | - | ↾ |
39
+ | 1.0.9 | ↾ | - | ↾ |
40
+ | 1.0.8 | ↾ | - | ↾ |
41
+ | 1.0.7 | | - | ↾ |
42
+ | 1.0.6 | ↾ | - | ↾ |
43
+ | 1.0.5 | ↾ | - | ↾ |
44
+ | 1.0.4 | ↾ | - | ↾ |
45
+ | 1.0.3 | 1.6.1 | - | ↾ |
46
+ | 1.0.2 | ↾ | - | ↾ |
47
+ | 1.0.1 | ↾ | - | 1.8.12 |
48
+ | 1.0.0 | 1.6.0 | - | - |
data/jquery-rails.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
8
8
  s.authors = ["André Arko"]
9
9
  s.email = ["andre@arko.net"]
10
10
  s.homepage = "http://rubygems.org/gems/jquery-rails"
11
- s.summary = "Use jQuery with Rails 3"
12
- s.description = "This gem provides jQuery and the jQuery-ujs driver for your Rails 3 application."
11
+ s.summary = "Use jQuery with Rails 3+"
12
+ s.description = "This gem provides jQuery and the jQuery-ujs driver for your Rails 3+ application."
13
13
  s.license = "MIT"
14
14
 
15
15
  s.required_rubygems_version = ">= 1.3.6"
@@ -1,7 +1,7 @@
1
1
  module Jquery
2
2
  module Rails
3
- VERSION = "3.0.4"
4
- JQUERY_VERSION = "1.10.2"
5
- JQUERY_UJS_VERSION = "e9e8b8fd3abb1571781bca7640e5c0c4d9cea2e3"
3
+ VERSION = "3.1.4"
4
+ JQUERY_VERSION = "1.11.1"
5
+ JQUERY_UJS_VERSION = "1.0.4"
6
6
  end
7
7
  end