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: v2.2.8
Choose a base ref
...
head repository: tailwindlabs/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.9
Choose a head ref
  • 9 commits
  • 13 files changed
  • 5 contributors

Commits on Aug 27, 2021

  1. Ensure purge tests work even for version mismatches (#5316)

    We applied the same treatment for the sanity tests, where we ignore the
    first line (the tailwind header).
    
    An odd issue I have found is that diffing of big css files is _very_
    slow. When te tests pass, then the first test takes `3302 ms`, however,
    when it fails it takes `477482 ms` on my machine. That's almost 8
    minutes.
    RobinMalfait authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    96ef150 View commit details
    Browse the repository at this point in the history
  2. Fix missing !important when using @apply (#4854)

    * Add failing test for #4823
    
    * Fix important variant `@apply`
    
    Co-authored-by: Brad Cornes <[email protected]>
    adamwathan and bradlc authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    476d445 View commit details
    Browse the repository at this point in the history
  3. Ensure integration tests are up to date (#5317)

    * update (old) incorrect snapshots
    
    The version changed, so it is save to update these.
    
    * add `shadow` so that we can test `@tailwind base`
    
    We were only using `font-bold`, but that doesn't require any base rules.
    We try to only inject rules that are required, even for `base` related
    rules.
    Adding `shadow` will ensure that we can test that `base` rules have been
    added.
    RobinMalfait authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    8218aa6 View commit details
    Browse the repository at this point in the history
  4. Fix pathname parsing for tracked files (#5008)

    The trackedModified call in the tracking logic has a bug that
    incorrectly removes `null` from pathnames
    
    Currently:
    ```
    let pathname = parsed.href.replace(parsed.hash, '').replace(parsed.search, '')
    ```
    Where if `parsed.hash` or `parsed.search` are missing (which is
    mostly the case for FS files), the value is null
    eg `{ hash: null, search: null}`
      - In which case, we essentially trim `null`
    converting `/mypath/nulldir/file.js` -> `/mypath/dir/filejs` and
    breaking builds (see #4920 ).
    
    Fix checks if `hash` or `search` are set before replacing them
    
    Fixes #4920
    peteretelej authored Aug 27, 2021
    Configuration menu
    Copy the full SHA
    6561708 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e316dcb View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2021

  1. Configuration menu
    Copy the full SHA
    9ccb280 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    442c6d0 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2021

  1. Pin clean css version (#5338)

    * pin clean-css to version `5.1.4`
    
    * update fixtures
    RobinMalfait authored Aug 30, 2021
    Configuration menu
    Copy the full SHA
    97804a8 View commit details
    Browse the repository at this point in the history
  2. 2.2.9

    RobinMalfait committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    267f20c View commit details
    Browse the repository at this point in the history
Loading