autoprefixer-rails 10.4.2.0 → 10.4.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57c218760a92a4c4449c643e59d5c9b99d187c228aaa68c563d03c468fc2a055
4
- data.tar.gz: fa282be312c5ad55816deb7475a3d2f3357266a806ac96a624f125f2f0d0fc4b
3
+ metadata.gz: e5cd7c80a6311842ce80f7c7139e8e57eec69759fe4d0efe2250c47eca7b154f
4
+ data.tar.gz: c0ba140c37bdf7636d4b978332549ad35fbfaf02059c67bc6d28cc474e4d0125
5
5
  SHA512:
6
- metadata.gz: f20ccf58b1661fe3082f9d0487979c42146b21115df430269ca6d7a3a35dfa2f44cb04c1f4f3eb01eaf00bd360f4823d00106101c38bb80a8c278e4d9b764ed4
7
- data.tar.gz: beb69b97fb7f92d970fae59bfefff484b1f59973bfcf26b049ecbc738a61db9044e660040531b0f959cb50f17f6ec5412ee8b1f226ba30b0cec359e902ac9bfa
6
+ metadata.gz: a26f1084d80956bd910428088cfb96b1e5fdd78a950259027153ebf9fa06d373eb4a0d4e9573e3ebbdc719fb176c7c6625009fbbd3e69a3d056bf3b7a89fb461
7
+ data.tar.gz: d4d1e1b5feab933d3e33b487f257feeb3bf336f69291c9f611f58d2d4d0d9cbcf42673299ac3b2a789c83f6bca5c60737d734d9f917a9ccdc5e790e1ce50b3f2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 10.4.13.0
4
+ * Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.
5
+ * Fixed support of unit-less zero angle in backgrounds (by 一丝).
6
+ * Fixed `text-decoration` prefixes by moving to MDN data (by Romain Menke).
7
+ * Fixed `unicode-bidi` prefixes by moving to MDN data.
8
+ * Fixed `css-unicode-bidi` issue from latest Can I Use.
9
+ * Do not print `color-adjust` warning if `print-color-adjust` also is in rule.
10
+
11
+ ## 10.4.7.0
12
+ * Fixed `print-color-adjust` support in Firefox.
13
+ * Fixed `print-color-adjust` support.
14
+ * Fixed `NaN` in grid (by @SukkaW).
15
+
3
16
  ## 10.4.2.0
4
17
  * Fixed missed `-webkit-` prefix for `width: stretch`.
5
18
  * Fixed `::file-selector-button` data (by Luke Warlow).
data/README.md CHANGED
@@ -15,8 +15,8 @@ and Ruby on Rails integration with this JavaScript tool.
15
15
  [Autoprefixer]: https://github.com/postcss/autoprefixer
16
16
  [Can I Use]: http://caniuse.com/
17
17
  [PostCSS]: https://postcss.org/
18
- [ci-img]: https://travis-ci.org/ai/autoprefixer-rails.svg
19
- [ci]: https://travis-ci.org/ai/autoprefixer-rails
18
+ [ci-img]: https://github.com/ai/autoprefixer-rails/actions/workflows/ci.yml/badge.svg
19
+ [ci]: https://github.com/ai/autoprefixer-rails/actions/workflows/ci.yml
20
20
 
21
21
  ## Differences
22
22
 
@@ -4,9 +4,9 @@ require "pathname"
4
4
  require "execjs"
5
5
  require "json"
6
6
 
7
- IS_SECTION = /^\s*\[(.+)\]\s*$/.freeze
8
-
9
7
  module AutoprefixerRails
8
+ IS_SECTION = /^\s*\[(.+)\]\s*$/.freeze
9
+
10
10
  # Ruby to JS wrapper for Autoprefixer processor instance
11
11
  class Processor
12
12
  SUPPORTED_RUNTIMES = [ExecJS::Runtimes::Node, ExecJS::Runtimes::MiniRacer]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutoprefixerRails # :nodoc:
4
- VERSION = "10.4.2.0" unless defined? AutoprefixerRails::VERSION
4
+ VERSION = "10.4.13.0" unless defined? AutoprefixerRails::VERSION
5
5
  end