Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump autoprefixer from 9.1.3 to 9.3.1 #50

Merged
merged 1 commit into from
Nov 6, 2018

Conversation

dependabot-preview[bot]
Copy link
Contributor

Bumps autoprefixer from 9.1.3 to 9.3.1.

Release notes

Sourced from autoprefixer's releases.

9.3.1

  • Fix Grid prefixes with repeat() value (by bogdan0083).

9.3 “Labor omnia vincit”

Coat of Arms of Oklahoma

Autoprefixer 9.3 brings place-self support for Grid Layout

place-self

Dan503 and bogdan0083 found a way to impement support for another Grid property

.grid > .center {
  place-self: center;
}
.grid > .center {
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  place-self: center;
}

Other Changes

Dan503 and bogdan0083 also detected and fixed issue with Grid row/column span inheritance.

9.2.1

  • Fix broken AST.

9.2 “Onyi est glavnaya krepost”

Coat of Arms of Omsk

Autoprefixer 9.2 brings many new improvements for -ms- prefixes for Grid Layout.

New Ways to Enable/Disable Grid Layout

In previous versions, you had needed to pass grid: true to enable prefixes for Grid Layout. But not all users have access to Autoprefixer options. CodePen, Create Reat App or Angular CLI doesn’t allow you to do it.

In Autoprefixer 9.2 fanich37 added special control comments:

/* autoprefixer grid: on */
.grid {
    display: grid;
    grid-gap: 33px;
    grid-template:
</table> ... (truncated)
Changelog

Sourced from autoprefixer's changelog.

9.3.1

  • Fix Grid prefixes with repeat() value (by Bogdan Dolin).

9.3 “Labor omnia vincit”

  • Add place-self support (by Bogdan Dolin).
  • Fix Grid row/column span inheritance bug (by Bogdan Dolin).

9.2.1

  • Fix broken AST.

9.2 “Onyi est glavnaya krepost”

  • Add /* autoprefixer grid: on */ control comment (by Andrey Alexandrov).
  • Add duplicate grid-area support (by Bogdan Dolin).
  • Fix grid-gap support for rules with different specifity (by Bogdan Dolin).
  • Disable Grid in [**supports**](https://github.com/supports) at-rule with non-supported Grid features.
  • Improve Grid warnings (by Daniel Tonon).
  • Improve docs (by Joshua Hall, Mat Gadd, Roy Revelt, and Ivan).

9.1.5

  • Remove @babel/register from dependencies.

9.1.4

  • Use Babel 7.
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Nov 6, 2018
@Kocal Kocal force-pushed the master branch 3 times, most recently from 79ef7ec to 5ca4927 Compare November 6, 2018 19:56
@Kocal Kocal merged commit e05e538 into master Nov 6, 2018
@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/autoprefixer-9.3.1 branch November 6, 2018 20:01
Kocal pushed a commit that referenced this pull request Nov 6, 2018
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 9.1.3 to 9.3.1.
<details>
<summary>Release notes</summary>

*Sourced from [autoprefixer's releases](https://github.com/postcss/autoprefixer/releases).*

> ## 9.3.1
> * Fix Grid prefixes with `repeat()` value (by [**bogdan0083**](https://github.com/bogdan0083)).
>
> ## 9.3 “Labor omnia vincit”
> <img src="https://user-images.githubusercontent.com/19343/47355871-8df3cd00-d690-11e8-8ca3-5574d0104ff3.png" alt="Coat of Arms of Oklahoma" width="200" height="202" align="right">
>
> Autoprefixer 9.3 brings `place-self` support for Grid Layout
>
> ## `place-self`
>
> [**Dan503**](https://github.com/Dan503) and [**bogdan0083**](https://github.com/bogdan0083) [found](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1143) a way to impement support for another Grid property
>
> ```css
> .grid > .center {
>   place-self: center;
> }
> ```
>
> ```css
> .grid > .center {
>   -ms-grid-row-align: center;
>   -ms-grid-column-align: center;
>   place-self: center;
> }
> ```
>
> ## Other Changes
>
> [**Dan503**](https://github.com/Dan503) and [**bogdan0083**](https://github.com/bogdan0083) also [detected and fixed](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1146) issue with Grid row/column span inheritance.
>
> ## 9.2.1
> * Fix broken AST.
>
> ## 9.2 “Onyi est glavnaya krepost”
> <img src="https://user-images.githubusercontent.com/19343/46919884-e271bb00-cfb3-11e8-8473-6c30fcfc5207.png" alt="Coat of Arms of Omsk" width="240" height="204" align="right" />
>
> Autoprefixer 9.2 brings many new improvements for `-ms-` prefixes for Grid Layout.
>
> ## New Ways to Enable/Disable Grid Layout
>
> In previous versions, you had needed to pass `grid: true` to enable prefixes for Grid Layout. But not all users have access to Autoprefixer options. CodePen, Create Reat App or Angular CLI doesn’t allow you to do it.
>
> In Autoprefixer 9.2 [**fanich37**](https://github.com/fanich37) added special control comments:
>
> ```css
> /* autoprefixer grid: on */
> .grid {
>     display: grid;
>     grid-gap: 33px;
>     grid-template:
></table> ... (truncated)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [autoprefixer's changelog](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md).*

> ## 9.3.1
> * Fix Grid prefixes with `repeat()` value (by Bogdan Dolin).
>
> ## 9.3 “Labor omnia vincit”
> * Add `place-self` support (by Bogdan Dolin).
> * Fix Grid row/column span inheritance bug (by Bogdan Dolin).
>
> ## 9.2.1
> * Fix broken AST.
>
> ## 9.2 “Onyi est glavnaya krepost”
> * Add `/* autoprefixer grid: on */` control comment (by Andrey Alexandrov).
> * Add duplicate `grid-area` support (by Bogdan Dolin).
> * Fix `grid-gap` support for rules with different specifity (by Bogdan Dolin).
> * Disable Grid in `[**supports**](https://github.com/supports)` at-rule with non-supported Grid features.
> * Improve Grid warnings (by Daniel Tonon).
> * Improve docs (by Joshua Hall, Mat Gadd, Roy Revelt, and Ivan).
>
> ## 9.1.5
> * Remove `@babel/register` from dependencies.
>
> ## 9.1.4
> * Use Babel 7.
</details>
<details>
<summary>Commits</summary>

- [`1371f49`](postcss/autoprefixer@1371f49) Release 9.3.1 version
- [`e6067b7`](postcss/autoprefixer@e6067b7) Update dependencies
- [`c0eb6c6`](postcss/autoprefixer@c0eb6c6) [css-grid] Fix bug when grid-rows/columns are prefixed with wrong values ([#1149](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1149))
- [`cac7636`](postcss/autoprefixer@cac7636) Release 9.3 version
- [`b3080dd`](postcss/autoprefixer@b3080dd) Update dependencies
- [`1956607`](postcss/autoprefixer@1956607) [css-grid] Fix/row column span inheritance bug ([#1147](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1147))
- [`6b8a25d`](postcss/autoprefixer@6b8a25d) [css-grid] Implement hack for place-self property ([#1144](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1144))
- [`41e3a04`](postcss/autoprefixer@41e3a04) Release 9.2.1 version
- [`6453afe`](postcss/autoprefixer@6453afe) Update dependencies
- [`1ec9169`](postcss/autoprefixer@1ec9169) Fix broken Node#parent
- Additional commits viewable in [compare view](postcss/autoprefixer@9.1.3...9.3.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=autoprefixer&package-manager=npm_and_yarn&previous-version=9.1.3&new-version=9.3.1)](https://dependabot.com/compatibility-score.html?dependency-name=autoprefixer&package-manager=npm_and_yarn&previous-version=9.1.3&new-version=9.3.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
Kocal pushed a commit that referenced this pull request Nov 7, 2018
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 9.1.3 to 9.3.1.
<details>
<summary>Release notes</summary>

*Sourced from [autoprefixer's releases](https://github.com/postcss/autoprefixer/releases).*

> ## 9.3.1
> * Fix Grid prefixes with `repeat()` value (by [**bogdan0083**](https://github.com/bogdan0083)).
>
> ## 9.3 “Labor omnia vincit”
> <img src="https://user-images.githubusercontent.com/19343/47355871-8df3cd00-d690-11e8-8ca3-5574d0104ff3.png" alt="Coat of Arms of Oklahoma" width="200" height="202" align="right">
>
> Autoprefixer 9.3 brings `place-self` support for Grid Layout
>
> ## `place-self`
>
> [**Dan503**](https://github.com/Dan503) and [**bogdan0083**](https://github.com/bogdan0083) [found](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1143) a way to impement support for another Grid property
>
> ```css
> .grid > .center {
>   place-self: center;
> }
> ```
>
> ```css
> .grid > .center {
>   -ms-grid-row-align: center;
>   -ms-grid-column-align: center;
>   place-self: center;
> }
> ```
>
> ## Other Changes
>
> [**Dan503**](https://github.com/Dan503) and [**bogdan0083**](https://github.com/bogdan0083) also [detected and fixed](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1146) issue with Grid row/column span inheritance.
>
> ## 9.2.1
> * Fix broken AST.
>
> ## 9.2 “Onyi est glavnaya krepost”
> <img src="https://user-images.githubusercontent.com/19343/46919884-e271bb00-cfb3-11e8-8473-6c30fcfc5207.png" alt="Coat of Arms of Omsk" width="240" height="204" align="right" />
>
> Autoprefixer 9.2 brings many new improvements for `-ms-` prefixes for Grid Layout.
>
> ## New Ways to Enable/Disable Grid Layout
>
> In previous versions, you had needed to pass `grid: true` to enable prefixes for Grid Layout. But not all users have access to Autoprefixer options. CodePen, Create Reat App or Angular CLI doesn’t allow you to do it.
>
> In Autoprefixer 9.2 [**fanich37**](https://github.com/fanich37) added special control comments:
>
> ```css
> /* autoprefixer grid: on */
> .grid {
>     display: grid;
>     grid-gap: 33px;
>     grid-template:
></table> ... (truncated)
</details>
<details>
<summary>Changelog</summary>

*Sourced from [autoprefixer's changelog](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md).*

> ## 9.3.1
> * Fix Grid prefixes with `repeat()` value (by Bogdan Dolin).
>
> ## 9.3 “Labor omnia vincit”
> * Add `place-self` support (by Bogdan Dolin).
> * Fix Grid row/column span inheritance bug (by Bogdan Dolin).
>
> ## 9.2.1
> * Fix broken AST.
>
> ## 9.2 “Onyi est glavnaya krepost”
> * Add `/* autoprefixer grid: on */` control comment (by Andrey Alexandrov).
> * Add duplicate `grid-area` support (by Bogdan Dolin).
> * Fix `grid-gap` support for rules with different specifity (by Bogdan Dolin).
> * Disable Grid in `[**supports**](https://github.com/supports)` at-rule with non-supported Grid features.
> * Improve Grid warnings (by Daniel Tonon).
> * Improve docs (by Joshua Hall, Mat Gadd, Roy Revelt, and Ivan).
>
> ## 9.1.5
> * Remove `@babel/register` from dependencies.
>
> ## 9.1.4
> * Use Babel 7.
</details>
<details>
<summary>Commits</summary>

- [`1371f49`](postcss/autoprefixer@1371f49) Release 9.3.1 version
- [`e6067b7`](postcss/autoprefixer@e6067b7) Update dependencies
- [`c0eb6c6`](postcss/autoprefixer@c0eb6c6) [css-grid] Fix bug when grid-rows/columns are prefixed with wrong values ([#1149](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1149))
- [`cac7636`](postcss/autoprefixer@cac7636) Release 9.3 version
- [`b3080dd`](postcss/autoprefixer@b3080dd) Update dependencies
- [`1956607`](postcss/autoprefixer@1956607) [css-grid] Fix/row column span inheritance bug ([#1147](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1147))
- [`6b8a25d`](postcss/autoprefixer@6b8a25d) [css-grid] Implement hack for place-self property ([#1144](https://github-redirect.dependabot.com/postcss/autoprefixer/issues/1144))
- [`41e3a04`](postcss/autoprefixer@41e3a04) Release 9.2.1 version
- [`6453afe`](postcss/autoprefixer@6453afe) Update dependencies
- [`1ec9169`](postcss/autoprefixer@1ec9169) Fix broken Node#parent
- Additional commits viewable in [compare view](postcss/autoprefixer@9.1.3...9.3.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=autoprefixer&package-manager=npm_and_yarn&previous-version=9.1.3&new-version=9.3.1)](https://dependabot.com/compatibility-score.html?dependency-name=autoprefixer&package-manager=npm_and_yarn&previous-version=9.1.3&new-version=9.3.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

---

**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants