Skip to content

Commit

Permalink
Merge pull request #1280 from cssnano/release-515
Browse files Browse the repository at this point in the history
Publish cssnano 5.0.15
  • Loading branch information
ludofischer committed Jan 7, 2022
2 parents 8423abc + a202077 commit 46b400c
Show file tree
Hide file tree
Showing 45 changed files with 310 additions and 115 deletions.
19 changes: 19 additions & 0 deletions packages/cssnano-preset-advanced/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## 5.1.10 (2022-01-07)

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- fix: update postcss-calc to 8.2

Remove a crash when postcss-calc cannot parse the value

- Updated dependencies
- cssnano-preset-default@5.1.10
- postcss-merge-idents@5.0.2

## 5.1.9 (2021-12-16)

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cssnano-preset-advanced/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-preset-advanced",
"version": "5.1.9",
"version": "5.1.10",
"main": "dist/index.js",
"description": "Advanced optimisations for cssnano; may or may not break your CSS!",
"scripts": {
Expand All @@ -15,9 +15,9 @@
"license": "MIT",
"dependencies": {
"autoprefixer": "^10.3.7",
"cssnano-preset-default": "^5.1.9",
"cssnano-preset-default": "^5.1.10",
"postcss-discard-unused": "^5.0.1",
"postcss-merge-idents": "^5.0.1",
"postcss-merge-idents": "^5.0.2",
"postcss-reduce-idents": "^5.0.1",
"postcss-zindex": "^5.0.1"
},
Expand Down
34 changes: 34 additions & 0 deletions packages/cssnano-preset-default/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Change Log

## 5.1.10 (2022-01-07)

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- fix: update postcss-calc to 8.2

Remove a crash when postcss-calc cannot parse the value

- Updated dependencies
- cssnano-utils@3.0.0
- postcss-colormin@5.2.3
- postcss-discard-overridden@5.0.2
- postcss-merge-rules@5.0.4
- postcss-minify-font-values@5.0.2
- postcss-minify-gradients@5.0.4
- postcss-minify-params@5.0.3
- postcss-minify-selectors@5.1.1
- postcss-normalize-display-values@5.0.2
- postcss-normalize-positions@5.0.2
- postcss-normalize-repeat-style@5.0.2
- postcss-normalize-string@5.0.2
- postcss-normalize-timing-functions@5.0.2
- postcss-normalize-unicode@5.0.2
- postcss-normalize-whitespace@5.0.2
- postcss-ordered-values@5.0.3
- postcss-reduce-transforms@5.0.2

## 5.1.9 (2021-12-16)

### Patch Changes
Expand Down
38 changes: 19 additions & 19 deletions packages/cssnano-preset-default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-preset-default",
"version": "5.1.9",
"version": "5.1.10",
"main": "dist/index.js",
"description": "Safe defaults for cssnano which require minimal configuration.",
"scripts": {
Expand All @@ -15,32 +15,32 @@
"license": "MIT",
"dependencies": {
"css-declaration-sorter": "^6.0.3",
"cssnano-utils": "^2.0.1",
"postcss-calc": "^8.0.0",
"postcss-colormin": "^5.2.2",
"cssnano-utils": "^3.0.0",
"postcss-calc": "^8.2.0",
"postcss-colormin": "^5.2.3",
"postcss-convert-values": "^5.0.2",
"postcss-discard-comments": "^5.0.1",
"postcss-discard-duplicates": "^5.0.1",
"postcss-discard-empty": "^5.0.1",
"postcss-discard-overridden": "^5.0.1",
"postcss-discard-overridden": "^5.0.2",
"postcss-merge-longhand": "^5.0.4",
"postcss-merge-rules": "^5.0.3",
"postcss-minify-font-values": "^5.0.1",
"postcss-minify-gradients": "^5.0.3",
"postcss-minify-params": "^5.0.2",
"postcss-minify-selectors": "^5.1.0",
"postcss-merge-rules": "^5.0.4",
"postcss-minify-font-values": "^5.0.2",
"postcss-minify-gradients": "^5.0.4",
"postcss-minify-params": "^5.0.3",
"postcss-minify-selectors": "^5.1.1",
"postcss-normalize-charset": "^5.0.1",
"postcss-normalize-display-values": "^5.0.1",
"postcss-normalize-positions": "^5.0.1",
"postcss-normalize-repeat-style": "^5.0.1",
"postcss-normalize-string": "^5.0.1",
"postcss-normalize-timing-functions": "^5.0.1",
"postcss-normalize-unicode": "^5.0.1",
"postcss-normalize-display-values": "^5.0.2",
"postcss-normalize-positions": "^5.0.2",
"postcss-normalize-repeat-style": "^5.0.2",
"postcss-normalize-string": "^5.0.2",
"postcss-normalize-timing-functions": "^5.0.2",
"postcss-normalize-unicode": "^5.0.2",
"postcss-normalize-url": "^5.0.4",
"postcss-normalize-whitespace": "^5.0.1",
"postcss-ordered-values": "^5.0.2",
"postcss-normalize-whitespace": "^5.0.2",
"postcss-ordered-values": "^5.0.3",
"postcss-reduce-initial": "^5.0.2",
"postcss-reduce-transforms": "^5.0.1",
"postcss-reduce-transforms": "^5.0.2",
"postcss-svgo": "^5.0.3",
"postcss-unique-selectors": "^5.0.2"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/cssnano-preset-lite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## 2.0.2 (2022-01-07)

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- Updated dependencies
- cssnano-utils@3.0.0
- postcss-normalize-whitespace@5.0.2

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

Expand Down
6 changes: 3 additions & 3 deletions packages/cssnano-preset-lite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-preset-lite",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/index.js",
"description": "Safe and minimum transformation",
"scripts": {
Expand All @@ -14,10 +14,10 @@
],
"license": "MIT",
"dependencies": {
"cssnano-utils": "^2.0.1",
"cssnano-utils": "^3.0.0",
"postcss-discard-comments": "^5.0.1",
"postcss-discard-empty": "^5.0.1",
"postcss-normalize-whitespace": "^5.0.1"
"postcss-normalize-whitespace": "^5.0.2"
},
"repository": "cssnano/cssnano",
"homepage": "https://github.com/cssnano/cssnano",
Expand Down
12 changes: 10 additions & 2 deletions packages/cssnano-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 3.0.0 (2022-01-07)

### Major Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

## [2.0.1](https://github.com/cssnano/cssnano/compare/cssnano-utils@2.0.0...cssnano-utils@2.0.1) (2021-05-19)

Expand Down
2 changes: 1 addition & 1 deletion packages/cssnano-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano-utils",
"version": "2.0.1",
"version": "3.0.0",
"repository": "cssnano/cssnano",
"main": "dist/index.js",
"description": "Utility methods and plugin for cssnano projects",
Expand Down
18 changes: 18 additions & 0 deletions packages/cssnano/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## 5.0.15

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- fix: update postcss-calc to 8.2

Remove a crash when postcss-calc cannot parse the value

- Updated dependencies
- cssnano-preset-default@5.1.10

## 5.0.14 (2021-12-20)

### Bug fixes
Expand Down
8 changes: 4 additions & 4 deletions packages/cssnano/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cssnano",
"version": "5.0.14",
"version": "5.0.15",
"description": "A modular minifier, built on top of the PostCSS ecosystem.",
"main": "dist/index.js",
"scripts": {
Expand All @@ -24,7 +24,7 @@
],
"license": "MIT",
"dependencies": {
"cssnano-preset-default": "^5.1.9",
"cssnano-preset-default": "^5.1.10",
"lilconfig": "^2.0.3",
"yaml": "^1.10.2"
},
Expand All @@ -49,8 +49,8 @@
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"cssnano-preset-advanced": "^5.1.9",
"cssnano-preset-lite": "^2.0.1",
"cssnano-preset-advanced": "^5.1.10",
"cssnano-preset-lite": "^2.0.2",
"postcss": "^8.2.15"
},
"peerDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/postcss-colormin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 5.2.3 (2022-01-07)

### Patch Changes

- refactor: use Map as a cache

## 5.2.2 (2021-12-16)

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-colormin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-colormin",
"version": "5.2.2",
"version": "5.2.3",
"description": "Minify colors in your CSS files with PostCSS.",
"main": "dist/index.js",
"files": [
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-discard-overridden/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 5.0.2 (2022-01-07)

### Patch Changes

- refactor: use Map as a cache

## [5.0.1](https://github.com/cssnano/cssnano/compare/postcss-discard-overridden@5.0.0...postcss-discard-overridden@5.0.1) (2021-05-19)

Expand Down
2 changes: 1 addition & 1 deletion packages/postcss-discard-overridden/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-discard-overridden",
"version": "5.0.1",
"version": "5.0.2",
"description": "PostCSS plugin to discard overridden @keyframes or @counter-style.",
"main": "dist/index.js",
"files": [
Expand Down
15 changes: 13 additions & 2 deletions packages/postcss-merge-idents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 5.0.2 (2022-01-07)

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- Updated dependencies
- cssnano-utils@3.0.0

## [5.0.1](https://github.com/cssnano/cssnano/compare/postcss-merge-idents@5.0.0...postcss-merge-idents@5.0.1) (2021-05-19)

Expand Down
4 changes: 2 additions & 2 deletions packages/postcss-merge-idents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-merge-idents",
"version": "5.0.1",
"version": "5.0.2",
"description": "Merge keyframe and counter style identifiers.",
"main": "dist/index.js",
"files": [
Expand All @@ -27,7 +27,7 @@
},
"repository": "cssnano/cssnano",
"dependencies": {
"cssnano-utils": "^2.0.1",
"cssnano-utils": "^3.0.0",
"postcss-value-parser": "^4.2.0"
},
"bugs": {
Expand Down
14 changes: 14 additions & 0 deletions packages/postcss-merge-rules/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 5.0.4 (2022-01-07)

### Patch Changes

- refactor: remove getMatch function from cssnano-utils

The getMatch function allows nested arrays to emulate a map.
It is better to replace this function with a regular Map().
It's unlikely this function is used outside of cssnano as it requires
a very specific nested array struture.

- Updated dependencies
- cssnano-utils@3.0.0

# 5.0.3 (2021-11-16)

### Chore
Expand Down
4 changes: 2 additions & 2 deletions packages/postcss-merge-rules/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-merge-rules",
"version": "5.0.3",
"version": "5.0.4",
"description": "Merge CSS rules with PostCSS.",
"main": "dist/index.js",
"files": [
Expand Down Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"browserslist": "^4.16.6",
"caniuse-api": "^3.0.0",
"cssnano-utils": "^2.0.1",
"cssnano-utils": "^3.0.0",
"postcss-selector-parser": "^6.0.5"
},
"bugs": {
Expand Down
7 changes: 5 additions & 2 deletions packages/postcss-minify-font-values/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 5.0.2 (2022-01-07)

### Patch Changes

- refactor: use Map as a cache

## [5.0.1](https://github.com/cssnano/cssnano/compare/postcss-minify-font-values@5.0.0...postcss-minify-font-values@5.0.1) (2021-05-19)

Expand Down

0 comments on commit 46b400c

Please sign in to comment.