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: rust-scraper/scraper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.19.0
Choose a base ref
...
head repository: rust-scraper/scraper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.20.0
Choose a head ref
  • 19 commits
  • 6 files changed
  • 5 contributors

Commits on Mar 4, 2024

  1. Bump indexmap from 2.2.3 to 2.2.5

    Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.2.3 to 2.2.5.
    - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
    - [Commits](indexmap-rs/indexmap@2.2.3...2.2.5)
    
    ---
    updated-dependencies:
    - dependency-name: indexmap
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    12405ec View commit details
    Browse the repository at this point in the history
  2. Bump ahash from 0.8.9 to 0.8.11

    Bumps [ahash](https://github.com/tkaitchuck/ahash) from 0.8.9 to 0.8.11.
    - [Release notes](https://github.com/tkaitchuck/ahash/releases)
    - [Commits](tkaitchuck/aHash@v0.8.9...v0.8.11)
    
    ---
    updated-dependencies:
    - dependency-name: ahash
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    b971a9d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #174 from causal-agent/dependabot/cargo/ahash-0.8.11

    Bump ahash from 0.8.9 to 0.8.11
    cfvescovo authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    93a0a62 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #173 from causal-agent/dependabot/cargo/indexmap-2…

    ….2.5
    
    Bump indexmap from 2.2.3 to 2.2.5
    cfvescovo authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    f3928e2 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Bump indexmap from 2.2.5 to 2.2.6

    Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.2.5 to 2.2.6.
    - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
    - [Commits](indexmap-rs/indexmap@2.2.5...2.2.6)
    
    ---
    updated-dependencies:
    - dependency-name: indexmap
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 25, 2024
    Configuration menu
    Copy the full SHA
    976e03f View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2024

  1. Bump html5ever from 0.26.0 to 0.27.0

    Bumps [html5ever](https://github.com/servo/html5ever) from 0.26.0 to 0.27.0.
    - [Commits](servo/html5ever@html5ever-v0.26.0...v0.27.0)
    
    ---
    updated-dependencies:
    - dependency-name: html5ever
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and teymour-aldridge committed Mar 30, 2024
    Configuration menu
    Copy the full SHA
    d67111f View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. Merge pull request #177 from causal-agent/dependabot/cargo/indexmap-2…

    ….2.6
    
    Bump indexmap from 2.2.5 to 2.2.6
    cfvescovo authored May 15, 2024
    Configuration menu
    Copy the full SHA
    948b0e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28c0069 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. Configuration menu
    Copy the full SHA
    45df63e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b8383d View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Merge pull request #184 from Noname-Official/patch-1

    Select and Text are not fused iterators
    cfvescovo authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    37b062e View commit details
    Browse the repository at this point in the history
  2. Version 0.19.1

    cfvescovo committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    e8e3cc4 View commit details
    Browse the repository at this point in the history
  3. is and has support

    cfvescovo committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    b3570f3 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Merge pull request #187 from causal-agent/support-has-selector

    `is` and `has` support
    cfvescovo authored Jul 22, 2024
    Configuration menu
    Copy the full SHA
    27dd786 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Make ElementRef Debug impl use Element

    The derived impl would print out the whole tree. This caused selectors
    to log many GBs per minute.
    gfaster committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    f5cc684 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. Merge pull request #190 from gfaster/master

    Make ElementRef Debug impl use Element
    cfvescovo authored Jul 31, 2024
    Configuration menu
    Copy the full SHA
    9242d09 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Bump indexmap from 2.2.6 to 2.3.0

    Bumps [indexmap](https://github.com/indexmap-rs/indexmap) from 2.2.6 to 2.3.0.
    - [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
    - [Commits](indexmap-rs/indexmap@2.2.6...2.3.0)
    
    ---
    updated-dependencies:
    - dependency-name: indexmap
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Aug 5, 2024
    Configuration menu
    Copy the full SHA
    fd01b10 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #194 from causal-agent/dependabot/cargo/indexmap-2…

    ….3.0
    
    Bump indexmap from 2.2.6 to 2.3.0
    cfvescovo authored Aug 5, 2024
    Configuration menu
    Copy the full SHA
    5b6703e View commit details
    Browse the repository at this point in the history
  3. Version 0.20.0

    cfvescovo committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    4d33a55 View commit details
    Browse the repository at this point in the history
Loading