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.4.14
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.4.15
Choose a head ref
  • 6 commits
  • 47 files changed
  • 5 contributors

Commits on Oct 17, 2024

  1. Bump dependencies to fix vulnerabilities (#14697)

    This PR fixes some package vulnerabilities that you will see when
    running `npm install`. This PR fixes that by bumping dependencies to get
    rid of the vulnerabilities.
    RobinMalfait authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    c8c3a22 View commit details
    Browse the repository at this point in the history
  2. Add CODEOWNERS file (#14702)

    This PR adds a new `CODEOWNERS` file so that the
    `@tailwindlabs/engineering` will be automatically requested for review
    when changes are made to the repository.
    RobinMalfait authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    825cd83 View commit details
    Browse the repository at this point in the history
  3. update changelog

    RobinMalfait committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    8b41e82 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Fix config types for boxShadow (#14856)

    `boxShadow` accepts multiple shadows just like `dropShadow` does. This
    patch fixes the TS typings to reflect that.
    
    See demo showing that multiple shadows are supported (complete with it
    incorrectly complaining that the config is bad) here:
    https://play.tailwindcss.com/VHqWbbEIrz?file=config
    
    ---------
    
    Co-authored-by: Philipp Spiess <hello@philippspiess.com>
    tremby and philipp-spiess authored Nov 7, 2024
    Configuration menu
    Copy the full SHA
    4de0769 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Add variable fallback to fix Chrome issue (#15003)

    This works around an issue in Chrome where `::selection` does not read
    from variables defined on `::selection` thus breaking all uses of color
    utilities with the selection variant. e.g. `selection::bg-red-200`.
    
    We now add a fallback value of `1` to all uses of
    `var(--tw-bg-opacity)`, `var(--tw-text-opacity)`,
    `var(--tw-border-opacity)`, etc… since Chrome treats the variable as if
    it did not exist because it's not defined on the parent.
    
    In Chrome 131 (until the change is rolled back) existing utilities like
    these will not work:
    - `selection:text-opacity-50`
    - `selection:[--tw-text-opacity:0.5]`
    
    Fixes #15000
    
    ---------
    
    Co-authored-by: Adam Wathan <adam.wathan@gmail.com>
    thecrypticace and adamwathan authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    d093dce View commit details
    Browse the repository at this point in the history
  2. v3.4.15

    thecrypticace committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    6069a81 View commit details
    Browse the repository at this point in the history
Loading