Skip to content

Commit ef4baa5

Browse files
authored
Release 3.12.2 (#3545)
* Release v3.12.2
1 parent b93a085 commit ef4baa5

14 files changed

+377
-829
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Change Log
22

3+
### upcoming (2020-07-16)
4+
- [#3544](https://github.com/less/less.js/pull/3544) Fixes #3533 (#3544) (@matthew-dean)
5+
- [#3543](https://github.com/less/less.js/pull/3543) Fixes #3541 (#3543) (@matthew-dean)
6+
37
### v3.12.0 (2020-07-13)
48
- [#3540](https://github.com/less/less.js/pull/3540) v3.12.0-RC.2 (#3540) (@matthew-dean)
59
- [#3532](https://github.com/less/less.js/pull/3532) Fixes #3371 Allow conditional evaluation of function args (#3532) (@matthew-dean)
@@ -132,8 +136,8 @@
132136
- [#3213](https://github.com/less/less.js/pull/3213) Fixes #3147 #2715 (#3213) (@matthew-dean)
133137
- [#3220](https://github.com/less/less.js/pull/3220) Revert "Fixes #1421 - re-parses variable-interpolated elements to selectors" (@matthew-dean)
134138
- [#3217](https://github.com/less/less.js/pull/3217) Revert "Fixes #1421 - re-parses variable-interpolated elements to selectors (#3217)" (@matthew-dean)
135-
- [#3215](https://github.com/less/less.js/pull/3215) Revert "Fixes #3195 (#3215)" (@matthew-dean)
136139
- [#3212](https://github.com/less/less.js/pull/3212) Revert "Pull missed code merged into 3.x branch (#3212)" (@matthew-dean)
140+
- [#3215](https://github.com/less/less.js/pull/3215) Revert "Fixes #3195 (#3215)" (@matthew-dean)
137141
- [#3215](https://github.com/less/less.js/pull/3215) Fixes #3195 (#3215) (@matthew-dean)
138142
- [#3212](https://github.com/less/less.js/pull/3212) Pull missed code merged into 3.x branch (#3212) (@matthew-dean)
139143
- [#3217](https://github.com/less/less.js/pull/3217) Fixes #1421 - re-parses variable-interpolated elements to selectors (#3217) (@matthew-dean)

dist/less.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Less - Leaner CSS v3.12.0
2+
* Less - Leaner CSS v3.12.2
33
* http://lesscss.org
44
*
55
* Copyright (c) 2009-2020, Alexis Sellier <[email protected]>
@@ -10594,7 +10594,7 @@
1059410594
* It's not clear what should / must be public and why.
1059510595
*/
1059610596
var initial = {
10597-
version: [3, 12, 0],
10597+
version: [3, 12, 2],
1059810598
data: data,
1059910599
tree: tree,
1060010600
Environment: environment,
@@ -10641,6 +10641,14 @@
1064110641
}
1064210642
}
1064310643
}
10644+
/**
10645+
* Some of the functions assume a `this` context of the API object,
10646+
* which causes it to fail when wrapped for ES6 imports.
10647+
*
10648+
* An assumed `this` should be removed in the future.
10649+
*/
10650+
initial.parse = initial.parse.bind(api);
10651+
initial.render = initial.render.bind(api);
1064410652
return api;
1064510653
});
1064610654

dist/less.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/less.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages/*"
44
],
55
"npmClient": "npm",
6-
"version": "3.12.0"
6+
"version": "3.12.1"
77
}

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@less/root",
33
"private": true,
4-
"version": "3.12.0",
4+
"version": "3.12.2",
55
"description": "Less monorepo",
66
"homepage": "http://lesscss.org",
77
"scripts": {

packages/less/dist/less.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Less - Leaner CSS v3.12.0
2+
* Less - Leaner CSS v3.12.2
33
* http://lesscss.org
44
*
55
* Copyright (c) 2009-2020, Alexis Sellier <[email protected]>
@@ -10594,7 +10594,7 @@
1059410594
* It's not clear what should / must be public and why.
1059510595
*/
1059610596
var initial = {
10597-
version: [3, 12, 0],
10597+
version: [3, 12, 2],
1059810598
data: data,
1059910599
tree: tree,
1060010600
Environment: environment,
@@ -10641,6 +10641,14 @@
1064110641
}
1064210642
}
1064310643
}
10644+
/**
10645+
* Some of the functions assume a `this` context of the API object,
10646+
* which causes it to fail when wrapped for ES6 imports.
10647+
*
10648+
* An assumed `this` should be removed in the future.
10649+
*/
10650+
initial.parse = initial.parse.bind(api);
10651+
initial.render = initial.render.bind(api);
1064410652
return api;
1064510653
});
1064610654

packages/less/dist/less.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/less/dist/less.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)