Skip to content

Commit

Permalink
v7.9.1 (#366)
Browse files Browse the repository at this point in the history
* 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] <support@github.com>

* v7.9.1

* nvmrc

* relax version constraints

* fix

* fix

* rename

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
romainmenke and dependabot[bot] committed Dec 11, 2023
1 parent 7054300 commit d9a4f46
Show file tree
Hide file tree
Showing 12 changed files with 426 additions and 3,660 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/has-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ jobs:
has-changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 'lts/*'
- run: npm ci --ignore-scripts
- run: npm run preparesite
- name: Check if there are changes
id: changes
run: git diff --quiet --exit-code
- name: Process changes
if: failure()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
core.setFailed('cssdb generated files have changed')
24 changes: 0 additions & 24 deletions .github/workflows/test-node-12.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/test-older-node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test-older-node
on:
push:

concurrency:
group: test-older-node-branch-node-${{ github.ref }}
cancel-in-progress: true

# TODO : delete this workflow on next major if we drop node 12, 14 and 16

jobs:
test-older-node:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- run: |
NPM_CONFIG_ENGINE_STRICT=false npm install --ignore-scripts
- run: npm run test:json
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
node: [18, 'lts/*']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v20
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changes to cssdb

### 7.9.1 (December 11, 2023)

- Updated `@mdn/browser-compat-data` to `5.4.5` (patch)
- Updated `caniuse-lite` to `1.0.30001568` (patch)

### 7.9.0 (October 31, 2023)

- Added: Stage 2 `logical-overflow`
Expand Down
97 changes: 61 additions & 36 deletions cssdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@
"edge": "111",
"firefox": "113",
"ios_saf": "15",
"op_mob": "75",
"opera": "97",
"safari": "15",
"samsung": "22.0"
Expand Down Expand Up @@ -327,6 +328,7 @@
"edge": "111",
"firefox": "113",
"ios_saf": "16.2",
"op_mob": "75",
"opera": "97",
"safari": "16.2",
"samsung": "22.0"
Expand Down Expand Up @@ -474,9 +476,14 @@
"specification": "https://www.w3.org/TR/selectors-4/#dir-pseudo",
"stage": 2,
"browser_support": {
"and_chr": "120",
"and_ff": "49",
"android": "120",
"chrome": "120",
"edge": "120",
"firefox": "49",
"ios_saf": "16.4",
"opera": "106",
"safari": "16.4"
},
"docs": {
Expand All @@ -489,7 +496,7 @@
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-dir-pseudo-class"
}
],
"vendors_implementations": 2
"vendors_implementations": 3
},
{
"id": "display-two-values",
Expand All @@ -505,8 +512,10 @@
"edge": "115",
"firefox": "70",
"ios_saf": "15",
"op_mob": "77",
"opera": "101",
"safari": "15"
"safari": "15",
"samsung": "23.0"
},
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/display/two-value_syntax_of_display"
Expand Down Expand Up @@ -716,8 +725,15 @@
"specification": "https://www.w3.org/TR/css-fonts-4/#font-format-values",
"stage": 2,
"browser_support": {
"and_chr": "108",
"android": "108",
"chrome": "108",
"edge": "108",
"ios_saf": "5",
"safari": "4"
"op_mob": "73",
"opera": "94",
"safari": "4",
"samsung": "21.0"
},
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face"
Expand All @@ -729,7 +745,7 @@
"link": "https://github.com/valtlai/postcss-font-format-keywords"
}
],
"vendors_implementations": 1
"vendors_implementations": 2
},
{
"id": "font-variant-property",
Expand All @@ -745,6 +761,7 @@
"edge": "117",
"firefox": "34",
"ios_saf": "9.3",
"op_mob": "78",
"opera": "103",
"safari": "9.1"
},
Expand Down Expand Up @@ -820,6 +837,7 @@
"chrome": "111",
"edge": "111",
"ios_saf": "16.2",
"op_mob": "75",
"opera": "97",
"safari": "16.2",
"samsung": "22.0"
Expand Down Expand Up @@ -889,9 +907,11 @@
"stage": 2,
"browser_support": {
"and_chr": "105",
"and_ff": "121",
"android": "105",
"chrome": "105",
"edge": "105",
"firefox": "121",
"ios_saf": "15.4",
"op_mob": "72",
"opera": "91",
Expand Down Expand Up @@ -1113,6 +1133,7 @@
"edge": "111",
"firefox": "113",
"ios_saf": "15",
"op_mob": "75",
"opera": "97",
"safari": "15",
"samsung": "22.0"
Expand Down Expand Up @@ -1143,6 +1164,7 @@
"edge": "111",
"firefox": "113",
"ios_saf": "15",
"op_mob": "75",
"opera": "97",
"safari": "15",
"samsung": "22.0"
Expand All @@ -1159,38 +1181,6 @@
],
"vendors_implementations": 3
},
{
"id": "logical-properties-and-values",
"title": "Logical Properties and Values",
"description": "Flow-relative (left-to-right or right-to-left) properties and values",
"specification": "https://www.w3.org/TR/css-logical-1/",
"stage": 2,
"browser_support": {
"and_chr": "89",
"and_ff": "66",
"android": "89",
"chrome": "89",
"edge": "89",
"firefox": "66",
"ios_saf": "15",
"oculus": "15.0",
"op_mob": "63",
"opera": "75",
"safari": "15",
"samsung": "15.0"
},
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties"
},
"example": "span:first-child {\n margin-inline-start: 10px;\n}",
"polyfills": [
{
"type": "PostCSS Plugin",
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical"
}
],
"vendors_implementations": 3
},
{
"id": "logical-overflow",
"title": "Logical Overflow",
Expand Down Expand Up @@ -1245,6 +1235,38 @@
],
"vendors_implementations": 3
},
{
"id": "logical-properties-and-values",
"title": "Logical Properties and Values",
"description": "Flow-relative (left-to-right or right-to-left) properties and values",
"specification": "https://www.w3.org/TR/css-logical-1/",
"stage": 2,
"browser_support": {
"and_chr": "89",
"and_ff": "66",
"android": "89",
"chrome": "89",
"edge": "89",
"firefox": "66",
"ios_saf": "15",
"oculus": "15.0",
"op_mob": "63",
"opera": "75",
"safari": "15",
"samsung": "15.0"
},
"docs": {
"mdn": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties"
},
"example": "span:first-child {\n margin-inline-start: 10px;\n}",
"polyfills": [
{
"type": "PostCSS Plugin",
"link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical"
}
],
"vendors_implementations": 3
},
{
"id": "logical-resize",
"title": "Logical values in the `resize` property",
Expand Down Expand Up @@ -1493,6 +1515,7 @@
"edge": "111",
"firefox": "113",
"ios_saf": "15.4",
"op_mob": "75",
"opera": "97",
"safari": "15.4",
"samsung": "22.0"
Expand Down Expand Up @@ -1729,6 +1752,7 @@
"stage": 2,
"browser_support": {
"and_chr": "18",
"and_ff": "79",
"android": "37",
"chrome": "1",
"edge": "13",
Expand Down Expand Up @@ -1959,6 +1983,7 @@
"edge": "111",
"firefox": "108",
"ios_saf": "15.4",
"op_mob": "75",
"opera": "97",
"safari": "15.4",
"samsung": "22.0"
Expand Down
Loading

0 comments on commit d9a4f46

Please sign in to comment.