Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 8710e43

Browse files
committed
1.8.3 (some url option fixes)
1 parent e6ec0f5 commit 8710e43

File tree

2 files changed

+53
-24
lines changed

2 files changed

+53
-24
lines changed

CHANGELOG.md

Lines changed: 51 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.8.3 - 2015-08-06
2+
3+
- Fixed: `url` option (postcss-url) have been updated in order to benefit from
4+
severals fixes.
5+
16
# 1.8.2 - 2015-07-23
27

38
- Fixed: CLI watcher now works watchs correctl multiples `@import`
@@ -12,11 +17,13 @@ unexpected usage with a recommendation for
1217

1318
# 1.8.0 - 2015-06-29
1419

15-
- Fixed: replacement of `postcss-log-warnings` (deprecated) by `postcss-reporter`
20+
- Fixed: replacement of `postcss-log-warnings` (deprecated) by
21+
`postcss-reporter`
1622
([#162](https://github.com/cssnext/cssnext/issues/162))
1723
- Fixed: CLI now add `to` option automatically
1824
([#159](https://github.com/cssnext/cssnext/issues/159))
19-
If you were happy with the previous CLI behavior (which was not rebasing url), you should probably just add the `--no-url` to keep the CSS as it was.
25+
If you were happy with the previous CLI behavior (which was not rebasing url),
26+
you should probably just add the `--no-url` to keep the CSS as it was.
2027
- Changed: `compress` option now use cssnano v2.x
2128
([#166](https://github.com/cssnext/cssnext/issues/166))
2229
- Added: CLI output file dirname is now automatically created (using `mkdirp`)
@@ -32,8 +39,10 @@ Changed from `〉` to `›`
3239
- Added: warning to deprecate previous (wrong) custom selectors syntax.
3340
Previously they were working with **and without** pseudo syntax ':'
3441
[which is incorrect according to specs](https://github.com/postcss/postcss-custom-selectors/issues/5#issuecomment-90774654)
35-
Now you must use `@custom-selector :--{name}` syntax instead of `@custom-selector --{name}`
36-
The support of syntax without : and the warning message will be remove in the next major release
42+
Now you must use `@custom-selector :--{name}` syntax instead of
43+
`@custom-selector --{name}`
44+
The support of syntax without : and the warning message will be remove in the
45+
next major release
3746
([#97](https://github.com/cssnext/cssnext/issues/97))
3847
- Added: `plugins` option that allows you to pipe your own transformations
3948
([#118](https://github.com/cssnext/cssnext/issues/118))
@@ -59,12 +68,14 @@ replacement of colors lib by chalk in 1.5.0
5968

6069
# 1.5.0 - 2015-05-23
6170

62-
- Changed: `compress` option use [cssnano](https://github.com/ben-eb/cssnano) instead of CSSWring.
71+
- Changed: `compress` option use [cssnano](https://github.com/ben-eb/cssnano)
72+
instead of CSSWring.
6373

6474
# 1.4.0 - 2015-05-01
6575

6676
- Added: support for `:matches()` selector pseudo class
67-
- Added: support for `:not()` selector pseudo class level 4 (transpiled to level 3)
77+
- Added: support for `:not()` selector pseudo class level 4
78+
(transpiled to level 3)
6879

6980
# 1.3.1 - 2015-05-01
7081

@@ -76,7 +87,8 @@ replacement of colors lib by chalk in 1.5.0
7687

7788
# 1.2.3 - 2015-04-10
7889

79-
- Fixed: --watch doesn't output console.log() related to watcherd/unwatched files anymore
90+
- Fixed: --watch doesn't output console.log() related to watcherd/unwatched
91+
files anymore
8092

8193
# 1.2.2 - 2015-04-09
8294

@@ -105,7 +117,8 @@ replacement of colors lib by chalk in 1.5.0
105117
# 1.0.0 - 2015-02-06
106118

107119
- Changed: upgraded to postcss v4.x
108-
- Changed: `import` is not considered as a `feature` anymore, but is now directly an option for the API.
120+
- Changed: `import` is not considered as a `feature` anymore, but is now
121+
directly an option for the API.
109122
It is still enabled by default.
110123

111124
Before
@@ -130,9 +143,11 @@ cssnext({
130143
})
131144
```
132145

133-
- Added: `url` option: non absolute url() are now rebased according to `from` (and `to` options if provided). Enabled by default.
146+
- Added: `url` option: non absolute url() are now rebased according to `from`
147+
(and `to` options if provided). Enabled by default.
134148
- Added: `compress` option now accept CSSWring options directly.
135-
- Added: `browsers` option can enable or disable features and is propagated to autoprefixer
149+
- Added: `browsers` option can enable or disable features and is propagated to
150+
autoprefixer
136151
- Added: px fallback for `rem` unit
137152

138153
# 0.6.6 - 2014-12-22
@@ -142,8 +157,10 @@ cssnext({
142157

143158
# 0.6.5 - 2014-12-16
144159

145-
- Added: [media queries range](http://dev.w3.org/csswg/mediaqueries/#mq-ranges) feature ([ref](https://github.com/postcss/postcss-media-minmax))
146-
- Added: [filter](http://www.w3.org/TR/filter-effects/) feature ([ref](https://github.com/iamvdo/pleeease-filters))
160+
- Added: [media queries range](http://dev.w3.org/csswg/mediaqueries/#mq-ranges)
161+
feature ([ref](https://github.com/postcss/postcss-media-minmax))
162+
- Added: [filter](http://www.w3.org/TR/filter-effects/) feature
163+
([ref](https://github.com/iamvdo/pleeease-filters))
147164

148165
# 0.6.4 - 2014-12-11
149166

@@ -152,7 +169,8 @@ cssnext({
152169

153170
# 0.6.3 - 2014-12-09
154171

155-
- Changed: upgrade to csswring v2.0.0 (postcss 3 ready). This is removing the boring warnings.
172+
- Changed: upgrade to csswring v2.0.0 (postcss 3 ready). This is removing the
173+
boring warnings.
156174
- Changed: update postcss-custom-selectors reference (with an S)
157175

158176
# 0.6.2 - 2014-12-04
@@ -161,20 +179,24 @@ cssnext({
161179

162180
# 0.6.1 - 2014-12-01
163181

164-
- Changed: update to postcss-calc v3 (which add `precision` & `preserve`) & some useless minor updates
182+
- Changed: update to postcss-calc v3 (which add `precision` & `preserve`) &
183+
some useless minor updates
165184
- Changed: standalone version is now uglified (`dist/cssnext.js`)
166185

167186
# 0.6.0 - 2014-11-24
168187

169-
- Changed: upgrade to postcss-import v3 which allow to easily consume node_modules
188+
- Changed: upgrade to postcss-import v3 which allow to easily consume
189+
node_modules
170190
- Changed: "prefixes" feature is now "autoprefixer"
171191
- Added: cssnext can be used as a postcss plugin
172192

173193
# 0.5.0 - 2014-11-13
174194

175-
- Fixed: cssnext returns a string only if the first parameter is a real string (typeof === string)
195+
- Fixed: cssnext returns a string only if the first parameter is a real string
196+
(typeof === string)
176197
- Changed: upgrade to postcss 3
177-
- Changed: if sourcemap is set to true, default map is now true since postcss v3.0.0 have by default `{inline: true, sourceContent: true}`
198+
- Changed: if sourcemap is set to true, default map is now true since postcss
199+
v3.0.0 have by default `{inline: true, sourceContent: true}`
178200
- Changed: upgrade read-file-stdin from 0.0.4 to 0.2.0
179201

180202
# 0.4.4 - 2014-11-11
@@ -211,7 +233,8 @@ Before
211233
```js
212234
var output = cssnext(input, {
213235
features: {
214-
// providing `true` (or omitting this value) instead of the following object was the default behavior
236+
// providing `true` (or omitting this value) instead of the following object
237+
// was the default behavior
215238
color: {
216239
color: true
217240
hexAlpha: true
@@ -237,7 +260,8 @@ var output = cssnext(input, {
237260
})
238261
```
239262

240-
- Changed: cssnext options are not passed to all plugins anymore. You know need to specify feature options by passing object to `features` properties
263+
- Changed: cssnext options are not passed to all plugins anymore. You know need
264+
to specify feature options by passing object to `features` properties
241265
([#39](https://github.com/cssnext/cssnext/issues/39)).
242266

243267
Before
@@ -262,9 +286,13 @@ var output = cssnext(input, {
262286
})
263287
```
264288

265-
- Added: more control on sourcemap is possible using the new `map` option (direct postcss option). Using this option make `sourcemap` one to be ignored and change the return value of `cssnext()` (object instead of string)
289+
- Added: more control on sourcemap is possible using the new `map` option
290+
(direct postcss option).
291+
Using this option make `sourcemap` one to be ignored and change the return value
292+
of `cssnext()` (object instead of string)
266293

267-
This change have been made to avoid collision between options (of each features).
294+
This change have been made to avoid collision between options
295+
(of each features).
268296

269297
# 0.3.1 - 2014-08-27
270298

@@ -273,7 +301,8 @@ This change have been made to avoid collision between options (of each features)
273301

274302
# 0.3.0 - 2014-08-26
275303

276-
- Added: better custom properties fallbacks (thanks to postcss-custom-properties 0.3.0)
304+
- Added: better custom properties fallbacks
305+
(thanks to postcss-custom-properties 0.3.0)
277306

278307
# 0.2.3 - 2014-08-26
279308

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cssnext",
3-
"version": "1.8.2",
3+
"version": "1.8.3",
44
"description": "Use tomorrow's CSS syntax, today",
55
"keywords": [
66
"css",
@@ -60,7 +60,7 @@
6060
"postcss-reporter": "^0.1.0",
6161
"postcss-selector-matches": "^1.2.1",
6262
"postcss-selector-not": "^1.0.1",
63-
"postcss-url": "^3.0.0",
63+
"postcss-url": "^4.0.1",
6464
"read-file-stdin": "^0.2.0",
6565
"to-slug-case": "^0.1.2",
6666
"to-space-case": "^0.1.3",

0 commit comments

Comments
 (0)