Skip to content

Commit 86c812b

Browse files
committed
Build: Drop remnants of jQuery <1.12 / <2.2
1 parent 98925aa commit 86c812b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/node.js.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
- name: Test
5050
run: |
5151
npm run test:unit -- -h -b ${{ matrix.BROWSER }} \
52-
--jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 \
53-
--jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 \
52+
--jquery 1.12.4 \
53+
--jquery 2.2.4 \
5454
--jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 \
5555
--jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 \
5656
--jquery 3.x-git --jquery git \
@@ -85,8 +85,8 @@ jobs:
8585
- name: Test
8686
run: |
8787
npm run test:unit -- -h -b edge `
88-
--jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 `
89-
--jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 `
88+
--jquery 1.12.4 `
89+
--jquery 2.2.4 `
9090
--jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 `
9191
--jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 `
9292
--jquery 3.x-git --jquery git `
@@ -121,8 +121,8 @@ jobs:
121121
- name: Test
122122
run: |
123123
npm run test:unit -- -b safari \
124-
--jquery 1.8.3 --jquery 1.9.1 --jquery 1.10.2 --jquery 1.11.3 --jquery 1.12.4 \
125-
--jquery 2.0.3 --jquery 2.1.4 --jquery 2.2.4 \
124+
--jquery 1.12.4 \
125+
--jquery 2.2.4 \
126126
--jquery 3.0.0 --jquery 3.1.1 --jquery 3.2.1 --jquery 3.3.1 \
127127
--jquery 3.4.1 --jquery 3.5.1 --jquery 3.6.4 --jquery 3.7.1 \
128128
--jquery 3.x-git --jquery git \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jQuery Color
22

3-
Supported jQuery versions: 1.12+ (only the latest version within each jQuery major is tested)
3+
Supported jQuery versions: 1.12+ / 2.2+
44

55
## Browser Support
66

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/data/testinit.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ QUnit.config.urlConfig.push( {
66

77
// Keep in sync with test/runner/flags/jquery.js
88
value: [
9-
"1.8.3", "1.9.1", "1.10.2", "1.11.3", "1.12.4",
10-
"2.0.3", "2.1.4", "2.2.4",
9+
"1.12.4",
10+
"2.2.4",
1111
"3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1", "3.6.4", "3.7.1",
1212
"3.x-git", "git"
1313
],

test/runner/flags/jquery.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Keep in sync with test/data/testinit.js
22
export const jquery = [
3-
"1.8.3", "1.9.1", "1.10.2", "1.11.3", "1.12.4",
4-
"2.0.3", "2.1.4", "2.2.4",
3+
"1.12.4",
4+
"2.2.4",
55
"3.0.0", "3.1.1", "3.2.1", "3.3.1", "3.4.1", "3.5.1", "3.6.4", "3.7.1",
66
"3.x-git", "git"
77
];

0 commit comments

Comments
 (0)