Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.2
Choose a base ref
...
head repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.3
Choose a head ref
  • 12 commits
  • 17 files changed
  • 6 contributors

Commits on Jun 10, 2022

  1. Fix casing of import of corePluginList type definition (#8587)

    * Fix: Wrong import of CorePluginList type file
    
    * Update changelog
    
    Co-authored-by: Jordan Pittman <jordan@cryptica.me>
    maximeg and thecrypticace authored Jun 10, 2022
    Copy the full SHA
    ad98a61 View commit details

Commits on Jun 12, 2022

  1. Fix extraction of multi-word utilities with arbitrary values and quot…

    …es (#8604)
    
    * Fix extraction of multi-word utilityies with arbitrary values and quotes
    
    * Update  changelog
    
    * Fix changelog entry
    
    This wasn’t in 3.1.2 oops
    thecrypticace authored Jun 12, 2022
    Copy the full SHA
    a9c7e52 View commit details
  2. Ignore PostCSS nodes returned by addVariant (#8608)

    * Fix issue with returning postcss nodes in addVariant
    
    It’s not a supported use case but it didn’t use to break so let’s just fail silently
    
    * Update changelog
    thecrypticace authored Jun 12, 2022
    Copy the full SHA
    037396b View commit details
  3. Copy the full SHA
    d116563 View commit details

Commits on Jun 13, 2022

  1. Fix missing spaces around arithmetic operators (#8615)

    * add tests for spaced around operators in CSS math functions
    
    * fix CSS math functons besides calc not getting the love they deserve
    
    * improve comment
    
    * update changelog
    
    * update changelog
    
    Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
    dcastil and RobinMalfait authored Jun 13, 2022
    Copy the full SHA
    aad299c View commit details
  2. Detect alpha value in CSS theme() function when using quotes (#8625)

    * Allow alpha value inside quotes
    
    * Optimize regex
    
    * Add test
    
    * Update changelog
    thecrypticace authored Jun 13, 2022
    Copy the full SHA
    1c24d7a View commit details

Commits on Jun 14, 2022

  1. Copy the full SHA
    2712d87 View commit details
  2. Copy the full SHA
    47327f4 View commit details
  3. Fix "Maximum call stack size exceeded" bug (#8636)

    * Fix potential call stack size issue
    
    * Update defaultExtractor.js
    
    * add test to verify "Maximum call stack size exceeded" is fixed
    
    * update changelog
    
    Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
    adamwathan and RobinMalfait authored Jun 14, 2022
    Copy the full SHA
    22eaad1 View commit details
  4. Remove text opacity CSS variables from ::marker (#8622)

    * Refactor
    
    * Allow parallel variant fns to mutate the container
    
    * Remove text color variable from marker pseudo class
    
    wip
    
    * Update changelog
    thecrypticace authored Jun 14, 2022
    Copy the full SHA
    15dc5a3 View commit details
  5. update changelog

    thecrypticace committed Jun 14, 2022
    Copy the full SHA
    bd45445 View commit details
  6. 3.1.3

    thecrypticace committed Jun 14, 2022
    Copy the full SHA
    76340ce View commit details
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -9,6 +9,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Nothing yet!

## [3.1.3] - 2022-06-14

### Fixed

- Fix extraction of multi-word utilities with arbitrary values and quotes ([#8604](https://github.com/tailwindlabs/tailwindcss/pull/8604))
- Fix casing of import of `corePluginList` type definition ([#8587](https://github.com/tailwindlabs/tailwindcss/pull/8587))
- Ignore PostCSS nodes returned by `addVariant` ([#8608](https://github.com/tailwindlabs/tailwindcss/pull/8608))
- Fix missing spaces around arithmetic operators ([#8615](https://github.com/tailwindlabs/tailwindcss/pull/8615))
- Detect alpha value in CSS `theme()` function when using quotes ([#8625](https://github.com/tailwindlabs/tailwindcss/pull/8625))
- Fix "Maximum call stack size exceeded" bug ([#8636](https://github.com/tailwindlabs/tailwindcss/pull/8636))
- Allow functions returning parallel variants to mutate the container ([#8622](https://github.com/tailwindlabs/tailwindcss/pull/8622))
- Remove text opacity CSS variables from `::marker` ([#8622](https://github.com/tailwindlabs/tailwindcss/pull/8622))

## [3.1.2] - 2022-06-10

### Fixed
@@ -1968,7 +1981,8 @@ No release notes

- Everything!

[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.1.2...HEAD
[unreleased]: https://github.com/tailwindlabs/tailwindcss/compare/v3.1.3...HEAD
[3.1.3]: https://github.com/tailwindlabs/tailwindcss/compare/v3.1.2...v3.1.3
[3.1.2]: https://github.com/tailwindlabs/tailwindcss/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/tailwindlabs/tailwindcss/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/tailwindlabs/tailwindcss/compare/v3.0.24...v3.1.0
Loading