Skip to content

Commit d9a4f46

Browse files
v7.9.1 (#366)
* Bump the all-dependencies group with 6 updates Bumps the all-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [@mdn/browser-compat-data](https://github.com/mdn/browser-compat-data) | `5.3.30` | `5.4.5` | | [browserslist](https://github.com/browserslist/browserslist) | `4.22.1` | `4.22.2` | | [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.4.32` | | [postcss-cli](https://github.com/postcss/postcss-cli) | `10.1.0` | `11.0.0` | | [stylelint](https://github.com/stylelint/stylelint) | `15.11.0` | `16.0.1` | | [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `34.0.0` | `35.0.0` | Updates `@mdn/browser-compat-data` from 5.3.30 to 5.4.5 - [Release notes](https://github.com/mdn/browser-compat-data/releases) - [Changelog](https://github.com/mdn/browser-compat-data/blob/main/RELEASE_NOTES.md) - [Commits](mdn/browser-compat-data@v5.3.30...v5.4.5) Updates `browserslist` from 4.22.1 to 4.22.2 - [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md) - [Commits](https://github.com/browserslist/browserslist/commits) Updates `postcss` from 8.4.31 to 8.4.32 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](postcss/postcss@8.4.31...8.4.32) Updates `postcss-cli` from 10.1.0 to 11.0.0 - [Release notes](https://github.com/postcss/postcss-cli/releases) - [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md) - [Commits](postcss/postcss-cli@10.1.0...11.0.0) Updates `stylelint` from 15.11.0 to 16.0.1 - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint@15.11.0...16.0.1) Updates `stylelint-config-standard` from 34.0.0 to 35.0.0 - [Release notes](https://github.com/stylelint/stylelint-config-standard/releases) - [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md) - [Commits](stylelint/stylelint-config-standard@34.0.0...35.0.0) --- updated-dependencies: - dependency-name: "@mdn/browser-compat-data" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: browserslist dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: postcss-cli dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: stylelint-config-standard dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * v7.9.1 * nvmrc * relax version constraints * fix * fix * rename --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7054300 commit d9a4f46

12 files changed

+426
-3660
lines changed

.github/workflows/has-changes.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
has-changes:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
with:
1111
ref: ${{ github.head_ref }}
12-
- uses: actions/setup-node@v2
12+
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 16
14+
node-version: 'lts/*'
1515
- run: npm ci --ignore-scripts
1616
- run: npm run preparesite
1717
- name: Check if there are changes
1818
id: changes
1919
run: git diff --quiet --exit-code
2020
- name: Process changes
2121
if: failure()
22-
uses: actions/github-script@v6
22+
uses: actions/github-script@v7
2323
with:
2424
script: |
2525
core.setFailed('cssdb generated files have changed')

.github/workflows/test-node-12.yml

-24
This file was deleted.

.github/workflows/test-older-node.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: test-older-node
2+
on:
3+
push:
4+
5+
concurrency:
6+
group: test-older-node-branch-node-${{ github.ref }}
7+
cancel-in-progress: true
8+
9+
# TODO : delete this workflow on next major if we drop node 12, 14 and 16
10+
11+
jobs:
12+
test-older-node:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
node: [12, 14, 16]
17+
steps:
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-node@v4
20+
with:
21+
node-version: ${{ matrix.node }}
22+
23+
- run: |
24+
NPM_CONFIG_ENGINE_STRICT=false npm install --ignore-scripts
25+
- run: npm run test:json

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node: [14, 16, 18]
14+
node: [18, 'lts/*']
1515
steps:
16-
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v2
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node }}
2020

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16
1+
v20

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to cssdb
22

3+
### 7.9.1 (December 11, 2023)
4+
5+
- Updated `@mdn/browser-compat-data` to `5.4.5` (patch)
6+
- Updated `caniuse-lite` to `1.0.30001568` (patch)
7+
38
### 7.9.0 (October 31, 2023)
49

510
- Added: Stage 2 `logical-overflow`

cssdb.json

+61-36
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@
268268
"edge": "111",
269269
"firefox": "113",
270270
"ios_saf": "15",
271+
"op_mob": "75",
271272
"opera": "97",
272273
"safari": "15",
273274
"samsung": "22.0"
@@ -327,6 +328,7 @@
327328
"edge": "111",
328329
"firefox": "113",
329330
"ios_saf": "16.2",
331+
"op_mob": "75",
330332
"opera": "97",
331333
"safari": "16.2",
332334
"samsung": "22.0"
@@ -474,9 +476,14 @@
474476
"specification": "https://www.w3.org/TR/selectors-4/#dir-pseudo",
475477
"stage": 2,
476478
"browser_support": {
479+
"and_chr": "120",
477480
"and_ff": "49",
481+
"android": "120",
482+
"chrome": "120",
483+
"edge": "120",
478484
"firefox": "49",
479485
"ios_saf": "16.4",
486+
"opera": "106",
480487
"safari": "16.4"
481488
},
482489
"docs": {
@@ -489,7 +496,7 @@
489496
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class"
490497
}
491498
],
492-
"vendors_implementations": 2
499+
"vendors_implementations": 3
493500
},
494501
{
495502
"id": "display-two-values",
@@ -505,8 +512,10 @@
505512
"edge": "115",
506513
"firefox": "70",
507514
"ios_saf": "15",
515+
"op_mob": "77",
508516
"opera": "101",
509-
"safari": "15"
517+
"safari": "15",
518+
"samsung": "23.0"
510519
},
511520
"docs": {
512521
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/display/two-value_syntax_of_display"
@@ -716,8 +725,15 @@
716725
"specification": "https://www.w3.org/TR/css-fonts-4/#font-format-values",
717726
"stage": 2,
718727
"browser_support": {
728+
"and_chr": "108",
729+
"android": "108",
730+
"chrome": "108",
731+
"edge": "108",
719732
"ios_saf": "5",
720-
"safari": "4"
733+
"op_mob": "73",
734+
"opera": "94",
735+
"safari": "4",
736+
"samsung": "21.0"
721737
},
722738
"docs": {
723739
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face"
@@ -729,7 +745,7 @@
729745
"link": "https://github.com/valtlai/postcss-font-format-keywords"
730746
}
731747
],
732-
"vendors_implementations": 1
748+
"vendors_implementations": 2
733749
},
734750
{
735751
"id": "font-variant-property",
@@ -745,6 +761,7 @@
745761
"edge": "117",
746762
"firefox": "34",
747763
"ios_saf": "9.3",
764+
"op_mob": "78",
748765
"opera": "103",
749766
"safari": "9.1"
750767
},
@@ -820,6 +837,7 @@
820837
"chrome": "111",
821838
"edge": "111",
822839
"ios_saf": "16.2",
840+
"op_mob": "75",
823841
"opera": "97",
824842
"safari": "16.2",
825843
"samsung": "22.0"
@@ -889,9 +907,11 @@
889907
"stage": 2,
890908
"browser_support": {
891909
"and_chr": "105",
910+
"and_ff": "121",
892911
"android": "105",
893912
"chrome": "105",
894913
"edge": "105",
914+
"firefox": "121",
895915
"ios_saf": "15.4",
896916
"op_mob": "72",
897917
"opera": "91",
@@ -1113,6 +1133,7 @@
11131133
"edge": "111",
11141134
"firefox": "113",
11151135
"ios_saf": "15",
1136+
"op_mob": "75",
11161137
"opera": "97",
11171138
"safari": "15",
11181139
"samsung": "22.0"
@@ -1143,6 +1164,7 @@
11431164
"edge": "111",
11441165
"firefox": "113",
11451166
"ios_saf": "15",
1167+
"op_mob": "75",
11461168
"opera": "97",
11471169
"safari": "15",
11481170
"samsung": "22.0"
@@ -1159,38 +1181,6 @@
11591181
],
11601182
"vendors_implementations": 3
11611183
},
1162-
{
1163-
"id": "logical-properties-and-values",
1164-
"title": "Logical Properties and Values",
1165-
"description": "Flow-relative (left-to-right or right-to-left) properties and values",
1166-
"specification": "https://www.w3.org/TR/css-logical-1/",
1167-
"stage": 2,
1168-
"browser_support": {
1169-
"and_chr": "89",
1170-
"and_ff": "66",
1171-
"android": "89",
1172-
"chrome": "89",
1173-
"edge": "89",
1174-
"firefox": "66",
1175-
"ios_saf": "15",
1176-
"oculus": "15.0",
1177-
"op_mob": "63",
1178-
"opera": "75",
1179-
"safari": "15",
1180-
"samsung": "15.0"
1181-
},
1182-
"docs": {
1183-
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties"
1184-
},
1185-
"example": "span:first-child {\n margin-inline-start: 10px;\n}",
1186-
"polyfills": [
1187-
{
1188-
"type": "PostCSS Plugin",
1189-
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical"
1190-
}
1191-
],
1192-
"vendors_implementations": 3
1193-
},
11941184
{
11951185
"id": "logical-overflow",
11961186
"title": "Logical Overflow",
@@ -1245,6 +1235,38 @@
12451235
],
12461236
"vendors_implementations": 3
12471237
},
1238+
{
1239+
"id": "logical-properties-and-values",
1240+
"title": "Logical Properties and Values",
1241+
"description": "Flow-relative (left-to-right or right-to-left) properties and values",
1242+
"specification": "https://www.w3.org/TR/css-logical-1/",
1243+
"stage": 2,
1244+
"browser_support": {
1245+
"and_chr": "89",
1246+
"and_ff": "66",
1247+
"android": "89",
1248+
"chrome": "89",
1249+
"edge": "89",
1250+
"firefox": "66",
1251+
"ios_saf": "15",
1252+
"oculus": "15.0",
1253+
"op_mob": "63",
1254+
"opera": "75",
1255+
"safari": "15",
1256+
"samsung": "15.0"
1257+
},
1258+
"docs": {
1259+
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties"
1260+
},
1261+
"example": "span:first-child {\n margin-inline-start: 10px;\n}",
1262+
"polyfills": [
1263+
{
1264+
"type": "PostCSS Plugin",
1265+
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical"
1266+
}
1267+
],
1268+
"vendors_implementations": 3
1269+
},
12481270
{
12491271
"id": "logical-resize",
12501272
"title": "Logical values in the `resize` property",
@@ -1493,6 +1515,7 @@
14931515
"edge": "111",
14941516
"firefox": "113",
14951517
"ios_saf": "15.4",
1518+
"op_mob": "75",
14961519
"opera": "97",
14971520
"safari": "15.4",
14981521
"samsung": "22.0"
@@ -1729,6 +1752,7 @@
17291752
"stage": 2,
17301753
"browser_support": {
17311754
"and_chr": "18",
1755+
"and_ff": "79",
17321756
"android": "37",
17331757
"chrome": "1",
17341758
"edge": "13",
@@ -1959,6 +1983,7 @@
19591983
"edge": "111",
19601984
"firefox": "108",
19611985
"ios_saf": "15.4",
1986+
"op_mob": "75",
19621987
"opera": "97",
19631988
"safari": "15.4",
19641989
"samsung": "22.0"

0 commit comments

Comments
 (0)