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: hamidrezakp/rust-cssparser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: servo/rust-cssparser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 9 commits
  • 12 files changed
  • 6 contributors

Commits on Nov 7, 2024

  1. [unicode-range] Avoid integer overflow (panic in debug builds)

    If a long string of hex digits are passed to unicode-range, the code tries to
    parse them into a number before checking whether there are more than the 6 digits
    allowed by the syntax, and this may lead to integer overflow.
    
    To avoid this, check the number of digits and error out earlier if there are
    too many to possibly be valid.
    
    (See https://bugzilla.mozilla.org/show_bug.cgi?id=1900403)
    jfkthame authored and emilio committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    4765111 View commit details
    Browse the repository at this point in the history
  2. Fix clippy lints.

    emilio committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    bb07131 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fb149b View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. Minor optimization of Delimiters::from_byte to avoid an extra branch. (

    …servo#397)
    
    Co-authored-by: AlaskanEmily <emcdonough@mozilla.com>
    AlaskanEmily and AlaskanEmily authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    fa6f5eb View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2025

  1. Fix clippy lints (servo#401)

    emilio authored Feb 21, 2025
    Configuration menu
    Copy the full SHA
    008a91c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5e477ab View commit details
    Browse the repository at this point in the history
  3. Implement MallocSizeOf for cssparser types (servo#399)

    * Implement MallocSizeOf for cssparser types
    
    * Fix clippy lints
    
    Signed-off-by: Nico Burns <nico@nicoburns.com>
    
    ---------
    
    Signed-off-by: Nico Burns <nico@nicoburns.com>
    nicoburns authored Feb 21, 2025
    Configuration menu
    Copy the full SHA
    0d80021 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    958a3f0 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2025

  1. Bump version 0.35.0 (servo#404)

    Signed-off-by: Nico Burns <nico@nicoburns.com>
    nicoburns authored Mar 20, 2025
    Configuration menu
    Copy the full SHA
    3dd4f63 View commit details
    Browse the repository at this point in the history
Loading