Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reimplement idna on top of ICU4X #923

Merged
merged 40 commits into from
Jun 3, 2024
Merged

Reimplement idna on top of ICU4X #923

merged 40 commits into from
Jun 3, 2024

Conversation

hsivonen
Copy link
Collaborator

@hsivonen hsivonen commented Apr 9, 2024

Opening as draft PR to enable early feedback while the dependency remains unlanded in ICU4X.

The motivation of reformulating the idna crate on top of ICU4X is to be able to move Firefox's IDNA handling to use ICU4X (instead of the current combination of ICU4C and very old code). The ICU4X normalizer is faster than unicode-normalization and the ICU4X normalizer represents UTS 46 data as a normalization as opposed to representing it separately like the idna crate currently does.

The benchmarks in the idna crate itself show this PR to result in faster performance. This is also more correct than the old code: I removed skipping of the ContextJ tests from the harness that runs the UTS 46 test suite.

See the added README for removed capabilities. I searched for GitHub for public code using the idna crate, and I believe the removals to be mostly not need action from the ecosystem and to be tolerable when they do.

For projects that use ICU4X for normalization (or collation), this change has the benefit of deduplicating data across normalization and IDNA handling. There is the ecosystem risk of causing projects that use unicode-normalization for normalization in ways other than as a dependency of idna to end up with more data. One way to mitigate that (already preliminarily discussed with the maintainer) would be to introduce a cargo feature to unicode-normalization that would delegate the unicode-normalization internals to ICU4X (better performance, more crates in the dependency tree).

Not properly investigated yet: Binary size impact.

@valenting
Copy link
Collaborator

I think you need to explicitly add a dependency for the icu crate, instead of using a relative path

idna/Cargo.toml Outdated Show resolved Hide resolved
Copy link
Collaborator

@valenting valenting left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to add a direct dependency on the icu crates

@hsivonen
Copy link
Collaborator Author

Yeah, the dependency declaration will change when this becomes a non-draft.

@hsivonen
Copy link
Collaborator Author

hsivonen commented Apr 24, 2024

Using the demo https://github.com/hsivonen/urldemo (strip=true, lto=true, opt_level="z") and binaryen wasm-opt -Oz on the result, I get 215085 bytes with this patch and 310986 without, so this should not only improve performance but should also make (Wasm at least) binary size smaller.

@hsivonen hsivonen marked this pull request as ready for review May 23, 2024 07:11
Copy link

codecov bot commented May 23, 2024

Codecov Report

Attention: Patch coverage is 78.66795% with 221 lines in your changes are missing coverage. Please review.

Please upload report for BASE (main@de947ab). Learn more about missing BASE report.

Files Patch % Lines
idna/src/uts46.rs 76.89% 165 Missing ⚠️
idna/src/punycode.rs 73.13% 18 Missing ⚠️
idna/tests/deprecated.rs 82.35% 18 Missing ⚠️
idna/src/lib.rs 44.44% 10 Missing ⚠️
idna/tests/uts46.rs 85.41% 7 Missing ⚠️
idna/src/deprecated.rs 96.29% 3 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##             main     #923   +/-   ##
=======================================
  Coverage        ?   79.94%           
=======================================
  Files           ?       22           
  Lines           ?     4208           
  Branches        ?        0           
=======================================
  Hits            ?     3364           
  Misses          ?      844           
  Partials        ?        0           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@hsivonen
Copy link
Collaborator Author

I looked at the red lines for non-test code in the coverage report, and it's not as awful as the percentages suggest. In particular, it looks like const-evaluated code shows up as uncovered. Could be better, of course.

@hsivonen
Copy link
Collaborator Author

I did the minimum possible version bump for url before realizing that url now rejects URLs whose domain violates the ContextJ rule. (Additionally, the error classification for URLs that violate the forbidden domain code point rule changed, but that change doesn't change whether or not these is an error.)

@hsivonen hsivonen requested a review from valenting May 23, 2024 07:57
@hsivonen
Copy link
Collaborator Author

From the point of view of url users, the changes are:

  • Change in dependency tree. I believe not a semver break per community standards.
  • Change in MSRV. Not a semver break per community standards.
  • Change in which error kind is reported for forbidden domain code point. Rather silly to treat as a semver break.
  • URLs whose domain violates the ContextJ rule are now rejected (as they should have been all along). Semver break or not?

@hsivonen
Copy link
Collaborator Author

The dependency version increment is about dealing with an issue in the transitive dependency declarations which caused a problem in the case where a dependent already had the _data crates downloaded at 1.4.0.

Note that 1.5 versions have also already been released.

GitHub shows this changeset as "Changes requested". I believe I've addressed the request already, but I don't see what GitHub UI action I need to take to dismiss the "Changes requested" state.

@djc
Copy link
Contributor

djc commented May 29, 2024

From the point of view of url users, the changes are:

* Change in dependency tree. I believe not a semver break per community standards.

* Change in MSRV. Not a semver break per community standards.

* Change in which error kind is reported for forbidden domain code point. Rather silly to treat as a semver break.

* URLs whose domain violates the ContextJ rule are now rejected (as they should have been all along). Semver break or not?

Doesn't sound like a semver break is needed.

GitHub shows this changeset as "Changes requested". I believe I've addressed the request already, but I don't see what GitHub UI action I need to take to dismiss the "Changes requested" state.

I think only the maintainers themselves can dismiss this.

@valenting valenting added this pull request to the merge queue Jun 3, 2024
Merged via the queue into servo:main with commit 3d6dbbb Jun 3, 2024
14 checks passed
@tnull tnull mentioned this pull request Jun 10, 2024
scouten-adobe added a commit to contentauth/c2pa-rs that referenced this pull request Jun 13, 2024
mauricefisher64 pushed a commit to contentauth/c2pa-rs that referenced this pull request Jun 13, 2024
url crate version 2.5.1 introduces new license "Unicode-3.0" which needs to be reviewed before we can accept it

Related to servo/rust-url#923
Boshen pushed a commit to oxc-project/oxc that referenced this pull request Jun 17, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [criterion2](https://bheisler.github.io/criterion.rs/book/index.html) ([source](https://togithub.com/Boshen/criterion2.rs)) | workspace.dependencies | minor | `0.10.0` -> `0.11.0` |
| [memchr](https://togithub.com/BurntSushi/memchr) | workspace.dependencies | patch | `2.7.2` -> `2.7.4` |
| [oxc-browserslist](https://togithub.com/oxc-project/oxc-browserslist) | workspace.dependencies | patch | `0.17.0` -> `0.17.1` |
| [url](https://togithub.com/servo/rust-url) | workspace.dependencies | patch | `2.5.0` -> `2.5.1` |

---

### Release Notes

<details>
<summary>Boshen/criterion2.rs (criterion2)</summary>

### [`v0.11.0`](https://togithub.com/Boshen/criterion2.rs/blob/HEAD/CHANGELOG.md#0110---2024-06-14)

[Compare Source](https://togithub.com/Boshen/criterion2.rs/compare/v0.10.0...v0.11.0)

##### Added

-   \[**breaking**] remove csv_output ([#&#8203;33](https://togithub.com/Boshen/criterion2.rs/pull/33))
-   rm crate `criterion-macro`

##### Other

-   *(deps)* update dependency rust to v1.79.0 ([#&#8203;35](https://togithub.com/Boshen/criterion2.rs/pull/35))
-   *(deps)* update rust crates ([#&#8203;32](https://togithub.com/Boshen/criterion2.rs/pull/32))
-   *(deps)* lock file maintenance rust crates ([#&#8203;31](https://togithub.com/Boshen/criterion2.rs/pull/31))
-   check unused dependencies

</details>

<details>
<summary>BurntSushi/memchr (memchr)</summary>

### [`v2.7.4`](https://togithub.com/BurntSushi/memchr/compare/2.7.3...2.7.4)

[Compare Source](https://togithub.com/BurntSushi/memchr/compare/2.7.3...2.7.4)

### [`v2.7.3`](https://togithub.com/BurntSushi/memchr/compare/2.7.2...2.7.3)

[Compare Source](https://togithub.com/BurntSushi/memchr/compare/2.7.2...2.7.3)

</details>

<details>
<summary>oxc-project/oxc-browserslist (oxc-browserslist)</summary>

### [`v0.17.1`](https://togithub.com/oxc-project/oxc-browserslist/blob/HEAD/CHANGELOG.md#0171---2024-06-17)

[Compare Source](https://togithub.com/oxc-project/oxc-browserslist/compare/oxc-browserslist-v0.17.0...oxc-browserslist-v0.17.1)

##### Other

-   *(deps)* update npm packages ([#&#8203;45](https://togithub.com/oxc-project/oxc-browserslist/pull/45))

</details>

<details>
<summary>servo/rust-url (url)</summary>

### [`v2.5.1`](https://togithub.com/servo/rust-url/releases/tag/v2.5.1)

[Compare Source](https://togithub.com/servo/rust-url/compare/v2.5.0...v2.5.1)

#### What's Changed

-   Be more detailed in documentation of set_query by [@&#8203;philippeitis](https://togithub.com/philippeitis) in [servo/rust-url#737
-   perf(punycode): avoid double allocation in decode_to_string by [@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate) in [servo/rust-url#894
-   Use SPECIAL_PATH_SEGMENT when encoding path in from_file_path by [@&#8203;valenting](https://togithub.com/valenting) in [servo/rust-url#902
-   Add dependabot by [@&#8203;oriontvv](https://togithub.com/oriontvv) in [servo/rust-url#903
-   Bump codecov/codecov-action from 3 to 4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [servo/rust-url#904
-   Bump actions/upload-artifact from 2 to 4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [servo/rust-url#905
-   Bump actions/checkout from 3 to 4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [servo/rust-url#906
-   Fix non-base64 data URLs with % characters not followed by hex digits by [@&#8203;SmaugPool](https://togithub.com/SmaugPool) in [servo/rust-url#797
-   Rename `master` branch to `main` by [@&#8203;mrobinson](https://togithub.com/mrobinson) in [servo/rust-url#914
-   Add bench for to_ascii on an already-Punycode name by [@&#8203;hsivonen](https://togithub.com/hsivonen) in [servo/rust-url#915
-   Update URLs by [@&#8203;atouchet](https://togithub.com/atouchet) in [servo/rust-url#916
-   Fix lint by [@&#8203;valenting](https://togithub.com/valenting) in [servo/rust-url#920
-   Fix multiple issues on wasm32, and runs url tests in CI by [@&#8203;micolous](https://togithub.com/micolous) in [servo/rust-url#886
-   Non-special URLs can have their paths erased by [@&#8203;DylanOToole2](https://togithub.com/DylanOToole2) in [servo/rust-url#921
-   docs: document SyntaxViolation variants, remove bare URLs by [@&#8203;aatifsyed](https://togithub.com/aatifsyed) in [servo/rust-url#924
-   docs: Document possible replacements of the base URL by [@&#8203;mo8it](https://togithub.com/mo8it) in [servo/rust-url#926
-   Reimplement idna on top of ICU4X by [@&#8203;hsivonen](https://togithub.com/hsivonen) in [servo/rust-url#923

#### New Contributors

-   [@&#8203;philippeitis](https://togithub.com/philippeitis) made their first contribution in [servo/rust-url#737
-   [@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate) made their first contribution in [servo/rust-url#894
-   [@&#8203;oriontvv](https://togithub.com/oriontvv) made their first contribution in [servo/rust-url#903
-   [@&#8203;dependabot](https://togithub.com/dependabot) made their first contribution in [servo/rust-url#904
-   [@&#8203;SmaugPool](https://togithub.com/SmaugPool) made their first contribution in [servo/rust-url#797
-   [@&#8203;hsivonen](https://togithub.com/hsivonen) made their first contribution in [servo/rust-url#915
-   [@&#8203;micolous](https://togithub.com/micolous) made their first contribution in [servo/rust-url#886
-   [@&#8203;DylanOToole2](https://togithub.com/DylanOToole2) made their first contribution in [servo/rust-url#921
-   [@&#8203;aatifsyed](https://togithub.com/aatifsyed) made their first contribution in [servo/rust-url#924
-   [@&#8203;mo8it](https://togithub.com/mo8it) made their first contribution in [servo/rust-url#926

**Full Changelog**: servo/rust-url@v2.5.0...v2.5.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/oxc-project/oxc).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
valenting added a commit to valenting/rust-url that referenced this pull request Jun 17, 2024
This reverts commit 3d6dbbb.

See servo#937 for reasons behind this backout.
github-merge-queue bot pushed a commit that referenced this pull request Jun 18, 2024
* Revert "Reimplement idna on top of ICU4X (#923)"

This reverts commit 3d6dbbb.

See #937 for reasons behind this backout.

* Bump url version to 2.5.2

* Pin unicode-width to 0.1.12 to avoid build failure in rust 1.56

* Remove ambiguous_wide_pointer_comparisons to maybe resolve clippy error

* fix clippy
bors added a commit to rust-lang/cargo that referenced this pull request Jul 2, 2024
chore(deps): update compatible

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [annotate-snippets](https://togithub.com/rust-lang/annotate-snippets-rs) | workspace.dependencies | patch | `0.11.3` -> `0.11.4` |
| [clap](https://togithub.com/clap-rs/clap) | workspace.dependencies | patch | `4.5.6` -> `4.5.8` |
| [curl-sys](https://togithub.com/alexcrichton/curl-rust) | workspace.dependencies | patch | `0.4.72+curl-8.6.0` -> `0.4.73` |
| [libloading](https://togithub.com/nagisa/rust_libloading) | workspace.dependencies | patch | `0.8.3` -> `0.8.4` |
| [memchr](https://togithub.com/BurntSushi/memchr) | workspace.dependencies | patch | `2.7.2` -> `2.7.4` |
| [proptest](https://proptest-rs.github.io/proptest/proptest/index.html) ([source](https://togithub.com/proptest-rs/proptest)) | workspace.dependencies | minor | `1.4.0` -> `1.5.0` |
| [serde_json](https://togithub.com/serde-rs/json) | workspace.dependencies | patch | `1.0.117` -> `1.0.120` |
| [snapbox](https://togithub.com/assert-rs/trycmd/tree/main/crates/snapbox) ([source](https://togithub.com/assert-rs/trycmd)) | workspace.dependencies | patch | `0.6.9` -> `0.6.10` |
| [url](https://togithub.com/servo/rust-url) | workspace.dependencies | patch | `2.5.0` -> `2.5.2` |

---

### Release Notes

<details>
<summary>rust-lang/annotate-snippets-rs (annotate-snippets)</summary>

### [`v0.11.4`](https://togithub.com/rust-lang/annotate-snippets-rs/blob/HEAD/CHANGELOG.md#0114---2024-06-15)

[Compare Source](https://togithub.com/rust-lang/annotate-snippets-rs/compare/0.11.3...0.11.4)

##### Fixes

-   Annotations for `\r\n` are now correctly handled [#&#8203;131](https://togithub.com/rust-lang/annotate-snippets-rs/pull/131)

</details>

<details>
<summary>clap-rs/clap (clap)</summary>

### [`v4.5.8`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#458---2024-06-28)

[Compare Source](https://togithub.com/clap-rs/clap/compare/v4.5.7...v4.5.8)

##### Fixes

-   Reduce extra flushes

### [`v4.5.7`](https://togithub.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#457---2024-06-10)

[Compare Source](https://togithub.com/clap-rs/clap/compare/v4.5.6...v4.5.7)

##### Fixes

-   Clean up error message when too few arguments for `num_args`

</details>

<details>
<summary>alexcrichton/curl-rust (curl-sys)</summary>

### [`v0.4.73`](https://togithub.com/alexcrichton/curl-rust/compare/curl-sys-0.4.72...curl-sys-0.4.73)

[Compare Source](https://togithub.com/alexcrichton/curl-rust/compare/curl-sys-0.4.72...curl-sys-0.4.73)

</details>

<details>
<summary>nagisa/rust_libloading (libloading)</summary>

### [`v0.8.4`](https://togithub.com/nagisa/rust_libloading/compare/0.8.3...0.8.4)

[Compare Source](https://togithub.com/nagisa/rust_libloading/compare/0.8.3...0.8.4)

</details>

<details>
<summary>BurntSushi/memchr (memchr)</summary>

### [`v2.7.4`](https://togithub.com/BurntSushi/memchr/compare/2.7.3...2.7.4)

[Compare Source](https://togithub.com/BurntSushi/memchr/compare/2.7.3...2.7.4)

### [`v2.7.3`](https://togithub.com/BurntSushi/memchr/compare/2.7.2...2.7.3)

[Compare Source](https://togithub.com/BurntSushi/memchr/compare/2.7.2...2.7.3)

</details>

<details>
<summary>proptest-rs/proptest (proptest)</summary>

### [`v1.5.0`](https://togithub.com/proptest-rs/proptest/compare/v1.4.0...v1.5.0)

[Compare Source](https://togithub.com/proptest-rs/proptest/compare/v1.4.0...v1.5.0)

</details>

<details>
<summary>serde-rs/json (serde_json)</summary>

### [`v1.0.120`](https://togithub.com/serde-rs/json/releases/tag/v1.0.120)

[Compare Source](https://togithub.com/serde-rs/json/compare/v1.0.119...v1.0.120)

-   Correctly specify required version of `indexmap` dependency ([#&#8203;1152](https://togithub.com/serde-rs/json/issues/1152), thanks [`@&#8203;cforycki](https://togithub.com/cforycki))`

### [`v1.0.119`](https://togithub.com/serde-rs/json/releases/tag/v1.0.119)

[Compare Source](https://togithub.com/serde-rs/json/compare/v1.0.118...v1.0.119)

-   Add `serde_json::Map::shift_insert` ([#&#8203;1149](https://togithub.com/serde-rs/json/issues/1149), thanks [`@&#8203;joshka](https://togithub.com/joshka))`

### [`v1.0.118`](https://togithub.com/serde-rs/json/releases/tag/v1.0.118)

[Compare Source](https://togithub.com/serde-rs/json/compare/v1.0.117...v1.0.118)

-   Implement Hash for serde_json::Value ([#&#8203;1127](https://togithub.com/serde-rs/json/issues/1127), thanks [`@&#8203;edwardycl](https://togithub.com/edwardycl))`

</details>

<details>
<summary>assert-rs/trycmd (snapbox)</summary>

### [`v0.6.10`](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.9...snapbox-v0.6.10)

[Compare Source](https://togithub.com/assert-rs/trycmd/compare/snapbox-v0.6.9...snapbox-v0.6.10)

</details>

<details>
<summary>servo/rust-url (url)</summary>

### [`v2.5.2`](https://togithub.com/servo/rust-url/releases/tag/v2.5.2)

[Compare Source](https://togithub.com/servo/rust-url/compare/v2.5.1...v2.5.2)

#### What's Changed

-   fix panic on `xn--55555577` by [`@&#8203;Byron](https://togithub.com/Byron)` in [servo/rust-url#940
-   Update idna to 1.0.1 by [`@&#8203;valenting](https://togithub.com/valenting)` in [servo/rust-url#945
-   Revert "Reimplement idna on top of ICU4X" by [`@&#8203;valenting](https://togithub.com/valenting)` in [servo/rust-url#946

This release reverts recent IDNA changes and the MSRV back to rust 1.56
The idna v1.0.1 crate now lives on the [idna-v1x](https://togithub.com/servo/rust-url/tree/idna-v1x) branch.

**Full Changelog**: servo/rust-url@v2.5.1...v2.5.2

### [`v2.5.1`](https://togithub.com/servo/rust-url/releases/tag/v2.5.1)

[Compare Source](https://togithub.com/servo/rust-url/compare/v2.5.0...v2.5.1)

#### What's Changed

-   Be more detailed in documentation of set_query by [`@&#8203;philippeitis](https://togithub.com/philippeitis)` in [servo/rust-url#737
-   perf(punycode): avoid double allocation in decode_to_string by [`@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate)` in [servo/rust-url#894
-   Use SPECIAL_PATH_SEGMENT when encoding path in from_file_path by [`@&#8203;valenting](https://togithub.com/valenting)` in [servo/rust-url#902
-   Add dependabot by [`@&#8203;oriontvv](https://togithub.com/oriontvv)` in [servo/rust-url#903
-   Bump codecov/codecov-action from 3 to 4 by [`@&#8203;dependabot](https://togithub.com/dependabot)` in [servo/rust-url#904
-   Bump actions/upload-artifact from 2 to 4 by [`@&#8203;dependabot](https://togithub.com/dependabot)` in [servo/rust-url#905
-   Bump actions/checkout from 3 to 4 by [`@&#8203;dependabot](https://togithub.com/dependabot)` in [servo/rust-url#906
-   Fix non-base64 data URLs with % characters not followed by hex digits by [`@&#8203;SmaugPool](https://togithub.com/SmaugPool)` in [servo/rust-url#797
-   Rename `master` branch to `main` by [`@&#8203;mrobinson](https://togithub.com/mrobinson)` in [servo/rust-url#914
-   Add bench for to_ascii on an already-Punycode name by [`@&#8203;hsivonen](https://togithub.com/hsivonen)` in [servo/rust-url#915
-   Update URLs by [`@&#8203;atouchet](https://togithub.com/atouchet)` in [servo/rust-url#916
-   Fix lint by [`@&#8203;valenting](https://togithub.com/valenting)` in [servo/rust-url#920
-   Fix multiple issues on wasm32, and runs url tests in CI by [`@&#8203;micolous](https://togithub.com/micolous)` in [servo/rust-url#886
-   Non-special URLs can have their paths erased by [`@&#8203;DylanOToole2](https://togithub.com/DylanOToole2)` in [servo/rust-url#921
-   docs: document SyntaxViolation variants, remove bare URLs by [`@&#8203;aatifsyed](https://togithub.com/aatifsyed)` in [servo/rust-url#924
-   docs: Document possible replacements of the base URL by [`@&#8203;mo8it](https://togithub.com/mo8it)` in [servo/rust-url#926
-   Reimplement idna on top of ICU4X by [`@&#8203;hsivonen](https://togithub.com/hsivonen)` in [servo/rust-url#923

#### New Contributors

-   [`@&#8203;philippeitis](https://togithub.com/philippeitis)` made their first contribution in [servo/rust-url#737
-   [`@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate)` made their first contribution in [servo/rust-url#894
-   [`@&#8203;oriontvv](https://togithub.com/oriontvv)` made their first contribution in [servo/rust-url#903
-   [`@&#8203;dependabot](https://togithub.com/dependabot)` made their first contribution in [servo/rust-url#904
-   [`@&#8203;SmaugPool](https://togithub.com/SmaugPool)` made their first contribution in [servo/rust-url#797
-   [`@&#8203;hsivonen](https://togithub.com/hsivonen)` made their first contribution in [servo/rust-url#915
-   [`@&#8203;micolous](https://togithub.com/micolous)` made their first contribution in [servo/rust-url#886
-   [`@&#8203;DylanOToole2](https://togithub.com/DylanOToole2)` made their first contribution in [servo/rust-url#921
-   [`@&#8203;aatifsyed](https://togithub.com/aatifsyed)` made their first contribution in [servo/rust-url#924
-   [`@&#8203;mo8it](https://togithub.com/mo8it)` made their first contribution in [servo/rust-url#926

**Full Changelog**: servo/rust-url@v2.5.0...v2.5.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/rust-lang/cargo).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
montekki pushed a commit to matter-labs/zksync-withdrawal-finalizer that referenced this pull request Jul 23, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [url](https://togithub.com/servo/rust-url) | workspace.dependencies |
patch | `2.5.0` -> `2.5.2` |

---

### Release Notes

<details>
<summary>servo/rust-url (url)</summary>

### [`v2.5.2`](https://togithub.com/servo/rust-url/releases/tag/v2.5.2)

[Compare
Source](https://togithub.com/servo/rust-url/compare/v2.5.1...v2.5.2)

#### What's Changed

- fix panic on `xn--55555577` by
[@&#8203;Byron](https://togithub.com/Byron) in
[servo/rust-url#940
- Update idna to 1.0.1 by
[@&#8203;valenting](https://togithub.com/valenting) in
[servo/rust-url#945
- Revert "Reimplement idna on top of ICU4X" by
[@&#8203;valenting](https://togithub.com/valenting) in
[servo/rust-url#946

This release reverts recent IDNA changes and the MSRV back to rust 1.56
The idna v1.0.1 crate now lives on the
[idna-v1x](https://togithub.com/servo/rust-url/tree/idna-v1x) branch.

**Full Changelog**:
servo/rust-url@v2.5.1...v2.5.2

### [`v2.5.1`](https://togithub.com/servo/rust-url/releases/tag/v2.5.1)

[Compare
Source](https://togithub.com/servo/rust-url/compare/v2.5.0...v2.5.1)

#### What's Changed

- Be more detailed in documentation of set_query by
[@&#8203;philippeitis](https://togithub.com/philippeitis) in
[servo/rust-url#737
- perf(punycode): avoid double allocation in decode_to_string by
[@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate) in
[servo/rust-url#894
- Use SPECIAL_PATH_SEGMENT when encoding path in from_file_path by
[@&#8203;valenting](https://togithub.com/valenting) in
[servo/rust-url#902
- Add dependabot by [@&#8203;oriontvv](https://togithub.com/oriontvv) in
[servo/rust-url#903
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[servo/rust-url#904
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[servo/rust-url#905
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[servo/rust-url#906
- Fix non-base64 data URLs with % characters not followed by hex digits
by [@&#8203;SmaugPool](https://togithub.com/SmaugPool) in
[servo/rust-url#797
- Rename `master` branch to `main` by
[@&#8203;mrobinson](https://togithub.com/mrobinson) in
[servo/rust-url#914
- Add bench for to_ascii on an already-Punycode name by
[@&#8203;hsivonen](https://togithub.com/hsivonen) in
[servo/rust-url#915
- Update URLs by [@&#8203;atouchet](https://togithub.com/atouchet) in
[servo/rust-url#916
- Fix lint by [@&#8203;valenting](https://togithub.com/valenting) in
[servo/rust-url#920
- Fix multiple issues on wasm32, and runs url tests in CI by
[@&#8203;micolous](https://togithub.com/micolous) in
[servo/rust-url#886
- Non-special URLs can have their paths erased by
[@&#8203;DylanOToole2](https://togithub.com/DylanOToole2) in
[servo/rust-url#921
- docs: document SyntaxViolation variants, remove bare URLs by
[@&#8203;aatifsyed](https://togithub.com/aatifsyed) in
[servo/rust-url#924
- docs: Document possible replacements of the base URL by
[@&#8203;mo8it](https://togithub.com/mo8it) in
[servo/rust-url#926
- Reimplement idna on top of ICU4X by
[@&#8203;hsivonen](https://togithub.com/hsivonen) in
[servo/rust-url#923

#### New Contributors

- [@&#8203;philippeitis](https://togithub.com/philippeitis) made their
first contribution in
[servo/rust-url#737
- [@&#8203;bishopcheckmate](https://togithub.com/bishopcheckmate) made
their first contribution in
[servo/rust-url#894
- [@&#8203;oriontvv](https://togithub.com/oriontvv) made their first
contribution in
[servo/rust-url#903
- [@&#8203;dependabot](https://togithub.com/dependabot) made their first
contribution in
[servo/rust-url#904
- [@&#8203;SmaugPool](https://togithub.com/SmaugPool) made their first
contribution in
[servo/rust-url#797
- [@&#8203;hsivonen](https://togithub.com/hsivonen) made their first
contribution in
[servo/rust-url#915
- [@&#8203;micolous](https://togithub.com/micolous) made their first
contribution in
[servo/rust-url#886
- [@&#8203;DylanOToole2](https://togithub.com/DylanOToole2) made their
first contribution in
[servo/rust-url#921
- [@&#8203;aatifsyed](https://togithub.com/aatifsyed) made their first
contribution in
[servo/rust-url#924
- [@&#8203;mo8it](https://togithub.com/mo8it) made their first
contribution in
[servo/rust-url#926

**Full Changelog**:
servo/rust-url@v2.5.0...v2.5.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/matter-labs/zksync-withdrawal-finalizer).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants