jquery-rails 4.5.0 → 4.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/VERSIONS.md +2 -0
- data/lib/jquery/rails/version.rb +3 -3
- data/vendor/assets/javascripts/jquery3.js +944 -1121
- data/vendor/assets/javascripts/jquery3.min.js +2 -2
- data/vendor/assets/javascripts/jquery3.min.map +1 -1
- data/vendor/assets/javascripts/jquery_ujs.js +18 -8
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab13d042048cc568bf3c47322a53992a86c26e153beb4298008a61b1bf26b772
|
4
|
+
data.tar.gz: 2e1b815b3f09adc49539628fe5331222f71dcbb7101a3a3e4591fca79241087b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51c887d6c520f1366d0982280c6516825b1cb9561a8a310661e984e1d6d47806edeff197d085e5edf704b9754e8d57c9f8fb449446032f9e6e429e9c40986aa4
|
7
|
+
data.tar.gz: 9bf9832f9a1ba125d7a36aef545c84b692284a586c7aa50c64ea4dc75f25dce69d762749fcb7bbba1612cf9c1a5483d317ab4a36d9a59717007089ee1c7dac18
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
## unreleased
|
2
|
+
|
3
|
+
## 4.6.0
|
4
|
+
|
5
|
+
- update jquery to 3.7.0
|
6
|
+
|
7
|
+
## 4.5.1
|
8
|
+
|
9
|
+
- update jquery to 3.6.1
|
10
|
+
- update jquery-ujs to 1.2.3
|
11
|
+
|
1
12
|
## 4.5.0
|
2
13
|
|
3
14
|
- update jquery to 3.6.0
|
@@ -25,7 +36,7 @@
|
|
25
36
|
- update jquery to 3.3.0
|
26
37
|
- Add possibility to test HTML: all, attribute prefix, attribute contains,
|
27
38
|
attribute ends with, child, and class selectors
|
28
|
-
- Fix matching
|
39
|
+
- Fix matching multiple calls for the same selector/function exception
|
29
40
|
|
30
41
|
## 4.3.1
|
31
42
|
|
data/VERSIONS.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
| Gem | jQuery | jQuery UJS | jQuery UI |
|
4
4
|
|--------|--------|------------| ----------|
|
5
|
+
| 4.6.0 | 1.12.4 & 2.2.4 & 3.7.0 | 1.2.3 | - |
|
6
|
+
| 4.5.1 | 1.12.4 & 2.2.4 & 3.6.1 | 1.2.3 | - |
|
5
7
|
| 4.5.0 | 1.12.4 & 2.2.4 & 3.6.0 | 1.2.2 | - |
|
6
8
|
| 4.4.0 | 1.12.4 & 2.2.4 & 3.5.1 | 1.2.2 | - |
|
7
9
|
| 4.3.5 | 1.12.4 & 2.2.4 & 3.4.1 | 1.2.2 | - |
|
data/lib/jquery/rails/version.rb
CHANGED