Skip to content

Commit 0a48eea

Browse files
committed
Update fetcher version
This include the fix for 483569511, currently in dev but we don't have a choice
1 parent 6400887 commit 0a48eea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

chromiumoxide_fetcher/src/version/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl BrowserVersion {
4949
// To map a revision to a chromium version you can use the site https://chromiumdash.appspot.com/commits.
5050

5151
match kind {
52-
BrowserKind::Chromium => Self::Revision(Revision::new(1520176)),
52+
BrowserKind::Chromium => Self::Revision(Revision::new(1585606)),
5353
BrowserKind::Chrome => Self::Channel(Channel::Stable),
5454
BrowserKind::ChromeHeadlessShell => Self::Channel(Channel::Stable),
5555
}

chromiumoxide_fetcher/tests/chromium.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ async fn verify_chromium_revision_available() {
3131
#[ignore]
3232
#[tokio::test]
3333
async fn find_chromium_revision_available() {
34-
let min = 1520176; // Enter the minimum revision
35-
let max = 1520176; // Enter the maximum revision
34+
let min = 1583927; // Enter the minimum revision
35+
let max = 1586699; // Enter the maximum revision
3636

3737
let host = BrowserHost::current(BrowserKind::Chromium);
38-
'outer: for revision in (min..max).rev() {
38+
'outer: for revision in (min..=max).rev() {
3939
println!("Checking revision {}", revision);
4040

4141
let build_info = BuildInfo::revision(Revision::from(revision));

0 commit comments

Comments
 (0)