jquery-rails 4.4.0 → 4.5.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcc6d11eb09cef26ed783513d708893c0d8fcede0b5027fc5906e59feeb880b9
4
- data.tar.gz: 0e0c30ec8043042ccdc6099fb6f5f2b6055f8b52a42298fb35144280d15661da
3
+ metadata.gz: dc824faad0a0e721766ec6ae2c9e3f6dceaff6d5528066fb82905dbb9febe2e4
4
+ data.tar.gz: 5e5d2d38463e03b1ad8e64f758912175dc61aedfd4e671d82d43199edfcb39bf
5
5
  SHA512:
6
- metadata.gz: a417086a5430147e22d452f1d192494d89890b7417257f759c721023f71a3f620a4f7328a5a5bd1c7e746786b861bc90aa1ba0174749b0a3f9dcef72a5e2ea78
7
- data.tar.gz: badccf9a2417c5ac5623f667317ac33e2e27cf8aaf562be71a139f207006fd8469234e2cd48fdcd9860e658710dff4bd53272066e688033fceddeced9267af6d
6
+ metadata.gz: 9038bfa9cfed8472d97b801c2389712d27c964720e75d79894c51422fc58187816757c830fe58aff0968f123a1d500203e4dc0ca18efeeb794693f2d96718702
7
+ data.tar.gz: 11775380be70000f3abf0e64c4a831f935e3be40f90d12eede256a8e44ae3b019cf8e932d8ff5ed6dd7f2ca01215590d55885e24bff7f43662746456d691e893
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## unreleased
2
+
3
+ - update jquery to 3.6.1
4
+ - update jquery-usj to 1.2.3
5
+
6
+ ## 4.5.0
7
+
8
+ - update jquery to 3.6.0
9
+
1
10
  ## 4.4.0
2
11
 
3
12
  - update jquery to 3.5.1 (note: [3.5.0 contains important security updates](https://github.com/advisories/GHSA-jpcq-cgw6-v4j6))
@@ -21,7 +30,7 @@
21
30
  - update jquery to 3.3.0
22
31
  - Add possibility to test HTML: all, attribute prefix, attribute contains,
23
32
  attribute ends with, child, and class selectors
24
- - Fix matching mutiple calls for the same selector/function exception
33
+ - Fix matching multiple calls for the same selector/function exception
25
34
 
26
35
  ## 4.3.1
27
36
 
data/VERSIONS.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  | Gem | jQuery | jQuery UJS | jQuery UI |
4
4
  |--------|--------|------------| ----------|
5
+ | 4.5.1 | 1.12.4 & 2.2.4 & 3.6.1 | 1.2.3 | - |
6
+ | 4.5.0 | 1.12.4 & 2.2.4 & 3.6.0 | 1.2.2 | - |
5
7
  | 4.4.0 | 1.12.4 & 2.2.4 & 3.5.1 | 1.2.2 | - |
6
8
  | 4.3.5 | 1.12.4 & 2.2.4 & 3.4.1 | 1.2.2 | - |
7
9
  | 4.3.4 | 1.12.4 & 2.2.4 & 3.4.0 | 1.2.2 | - |
@@ -1,9 +1,9 @@
1
1
  module Jquery
2
2
  module Rails
3
- VERSION = "4.4.0"
3
+ VERSION = "4.5.1"
4
4
  JQUERY_VERSION = "1.12.4"
5
5
  JQUERY_2_VERSION = "2.2.4"
6
- JQUERY_3_VERSION = "3.5.1"
7
- JQUERY_UJS_VERSION = "1.2.2"
6
+ JQUERY_3_VERSION = "3.6.1"
7
+ JQUERY_UJS_VERSION = "1.2.3"
8
8
  end
9
9
  end