Skip to content

Commit d885911

Browse files
Merge branch 'master' into extended-transform
2 parents 12f2cb9 + e0135f0 commit d885911

28 files changed

+11231
-7334
lines changed

.github/workflows/ci-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
strategy:
2626
matrix:
27-
node-version: [12, 18]
27+
node-version: [14, 18]
2828

2929
steps:
3030
- uses: actions/checkout@v3

.github/workflows/release-oxide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
include:
139139
- target: x86_64-unknown-linux-gnu
140140
strip: strip
141-
image: docker.io/centos/nodejs-12-centos7
141+
image: docker.io/centos/nodejs-14-centos7
142142
- target: aarch64-unknown-linux-gnu
143143
strip: aarch64-linux-gnu-strip
144144
image: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian

.github/workflows/release-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [12]
19+
node-version: [14]
2020

2121
steps:
2222
- uses: actions/checkout@v3

.swcrc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,6 @@
1111
"parser": {
1212
"syntax": "typescript",
1313
"tsx": false
14-
},
15-
"minify": {
16-
"compress": {
17-
"unused": true
18-
}
1914
}
2015
}
2116
}

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Fixed
1515

16+
- Fix issue where some pseudo-element variants generated the wrong selector ([#10943](https://github.com/tailwindlabs/tailwindcss/pull/10943), [#10962](https://github.com/tailwindlabs/tailwindcss/pull/10962))
17+
18+
### Added
19+
20+
- [Oxide] Use `lightningcss` for nesting and vendor prefixes in PostCSS plugin ([#10399](https://github.com/tailwindlabs/tailwindcss/pull/10399))
21+
22+
### Changed
23+
24+
- [Oxide] Disable color opacity plugins by default in the `oxide` engine ([#10618](https://github.com/tailwindlabs/tailwindcss/pull/10618))
25+
- [Oxide] Enable relative content paths for the `oxide` engine ([#10621](https://github.com/tailwindlabs/tailwindcss/pull/10621))
26+
27+
## [3.3.2] - 2023-04-25
28+
29+
### Fixed
30+
1631
- Don’t move unknown pseudo-elements to the end of selectors ([#10943](https://github.com/tailwindlabs/tailwindcss/pull/10943), [#10962](https://github.com/tailwindlabs/tailwindcss/pull/10962))
1732
- Inherit gradient stop positions when using variants ([#11002](https://github.com/tailwindlabs/tailwindcss/pull/11002))
1833
- Honor default `to` position of gradient when using implicit transparent colors ([#11002](https://github.com/tailwindlabs/tailwindcss/pull/11002))
1934
- Ensure `@tailwindcss/oxide` doesn't leak in the stable engine ([#10988](https://github.com/tailwindlabs/tailwindcss/pull/10988))
35+
- Ensure multiple `theme(spacing[5])` calls with bracket notation in arbitrary properties work ([#11039](https://github.com/tailwindlabs/tailwindcss/pull/11039))
36+
- Normalize arbitrary modifiers ([#11057](https://github.com/tailwindlabs/tailwindcss/pull/11057))
37+
38+
### Changed
39+
40+
- Drop support for Node.js v12 ([#11089](https://github.com/tailwindlabs/tailwindcss/pull/11089))
2041

2142
### Changed
2243

@@ -2245,7 +2266,8 @@ No release notes
22452266

22462267
- Everything!
22472268

2248-
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.1...HEAD
2269+
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.2...HEAD
2270+
[3.3.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.1...v3.3.2
22492271
[3.3.1]: https://github.com/tailwindlabs/tailwindcss/compare/v3.3.0...v3.3.1
22502272
[3.3.0]: https://github.com/tailwindlabs/tailwindcss/compare/v3.2.7...v3.3.0
22512273
[3.2.7]: https://github.com/tailwindlabs/tailwindcss/compare/v3.2.6...v3.2.7

integrations/content-resolution/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"postcss": "^8.4.21",
22-
"postcss-cli": "^9.1.0"
21+
"postcss": "^8.4.23",
22+
"postcss-cli": "^10.1.0"
2323
}
2424
}

integrations/postcss-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"postcss": "^8.4.21",
22-
"postcss-cli": "^9.1.0"
21+
"postcss": "^8.4.23",
22+
"postcss-cli": "^10.1.0"
2323
}
2424
}

integrations/rollup-sass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"rollup": "^3.20.0",
21+
"rollup": "^3.21.0",
2222
"rollup-plugin-postcss": "^4.0.2",
23-
"sass": "^1.59.3"
23+
"sass": "^1.62.0"
2424
}
2525
}

integrations/rollup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"rollup": "^3.20.0",
21+
"rollup": "^3.21.0",
2222
"rollup-plugin-postcss": "^4.0.2"
2323
}
2424
}

integrations/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
},
2222
"devDependencies": {
2323
"isomorphic-fetch": "^3.0.0",
24-
"vite": "^4.2.1"
24+
"vite": "^4.3.4"
2525
}
2626
}

0 commit comments

Comments
 (0)