-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update smoltcp requirement from 0.11.0 to 0.12.0 #87
Open
dependabot
wants to merge
1
commit into
master
Choose a base branch
from
dependabot/cargo/smoltcp-0.12.0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Updates the requirements on [smoltcp](https://github.com/smoltcp-rs/smoltcp) to permit the latest version. - [Release notes](https://github.com/smoltcp-rs/smoltcp/releases) - [Changelog](https://github.com/smoltcp-rs/smoltcp/blob/main/CHANGELOG.md) - [Commits](smoltcp-rs/smoltcp@v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: smoltcp dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
@dependabot merge
…On Thu, Nov 28, 2024, 6:48 PM dependabot[bot] ***@***.***> wrote:
Updates the requirements on smoltcp
<https://github.com/smoltcp-rs/smoltcp> to permit the latest version.
Release notes
*Sourced from smoltcp's releases
<https://github.com/smoltcp-rs/smoltcp/releases>.*
v0.12.0
Almost a year in the making, the highlights of the release are the
migration to core::net IP types, IPv6 multicast, TCP improvements, and
many fixes. Smoltcp now connects your gadgets to the Internet better than
ever.
- Minimum Supported Rust Version (MSRV) bumped to 1.80.
- iface
- IPv6 multicast (#914
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/914>, #976
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/976>, #988
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/988>, #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1009>, #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1012>)
- Add poll_egress() and poll_ingress_single() methods for
finer-grained control of what and how many packets are processed. (
#954 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/954>, #991
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/991>, #993
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/993>)
- Multicast join/leave no longer requires access to
device+timestamp. (#985
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/985>)
- Reset expiry of entries in the neighbor cache on packet reception
(#966 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/966>)
- Honor any_ip for ARP (#880
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/880>)
- Honor any_ip for IPv6 (#900
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/900>)
- Use own source address for ARP and NDISC Solicitations (#984
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/984>)
- fix panic when discarding HBH Option with multicast destination
address (#996
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/996>)
- fix panic with 6lowpan frag datagram_size < 40 (#997
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/997>)
- fix panic if no suitable IPv6 src_addr is found (#895
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/895>)
- Fix specific length IP packets not being fragmented (#1008
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1008>)
- tcp
- Add support for congestion control (#907
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/907>)
- Add support for simultaneous open (#1001
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1001>)
- Add support for Timestamp option (#939
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/939>)
- Send immediate ACKs after RMSS bytes of data (#1002
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1002>)
- Do not ignore FIN if segment is partially outside the window. (
#977 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/977>)
- Correctly set internal sACK flag for client sockets (#995
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/995>)
- Only reset remote_last_ts if some data is enqueued (#917
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/917>)
- Don't delay ACKs for significant window updates (#935
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/935>)
- Add listen_endpoint getter (#1005
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1005>)
- socket
- UDP,ICMP,raw: Add send_queue/recv_queue (#1003
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1003>)
- ICMP: split ICMPv4/v6 accept and process (#887
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/887>)
- UDP: Store local and use local address in metadata (#904
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/904>)
- DNS: fix panic if server list is too long (#986
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/986>)
- DNS: fix panic if no valid source address is found (#987
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/987>)
- phy
- Change mutability of RxToken's consume argument. (#924
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/924>)
- Add support for NetBSD (#883
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/883>)
- Add minimum support for iOS (#896
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/896>)
- Add BPF support for FreeBSD (#906
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/906>)
- disable checksums on loopback (#919
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/919>)
- wire
- Use core::net types for IP addresses. (#937
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/937>, #994
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/994>)
- Add missing exports in wire for DNS (#891
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/891>)
- rename Scope to MulticastScope (#898
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/898>)
- Re-export dhcpv4::Flags and dhcpv4::OpCode (#901
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/901>)
- Make Address:v6() constructor const (#975
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/975>)
- Ipv6RoutingHeader::clear_reserved: fix offsets for Type 2 routing
headers. (#882
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/882>)
Changelog
*Sourced from smoltcp's changelog
<https://github.com/smoltcp-rs/smoltcp/blob/main/CHANGELOG.md>.*
[0.12.0] - 2024-11-28
Almost a year in the making, the highlights of the release are the
migration to core::net IP types, IPv6 multicast, TCP improvements, and
many fixes. Smoltcp now connects your gadgets to the Internet better than
ever.
- Minimum Supported Rust Version (MSRV) bumped to 1.80.
- iface
- IPv6 multicast (#914
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/914>, #976
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/976>, #988
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/988>, #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1009>, #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1012>)
- Add poll_egress() and poll_ingress_single() methods for
finer-grained control of what and how many packets are processed. (
#954 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/954>, #991
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/991>, #993
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/993>)
- Multicast join/leave no longer requires access to
device+timestamp. (#985
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/985>)
- Reset expiry of entries in the neighbor cache on packet reception
(#966 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/966>)
- Honor any_ip for ARP (#880
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/880>)
- Honor any_ip for IPv6 (#900
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/900>)
- Use own source address for ARP and NDISC Solicitations (#984
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/984>)
- fix panic when discarding HBH Option with multicast destination
address (#996
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/996>)
- fix panic with 6lowpan frag datagram_size < 40 (#997
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/997>)
- fix panic if no suitable IPv6 src_addr is found (#895
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/895>)
- Fix specific length IP packets not being fragmented (#1008
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1008>)
- tcp
- Add support for congestion control (#907
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/907>)
- Add support for simultaneous open (#1001
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1001>)
- Add support for Timestamp option (#939
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/939>)
- Send immediate ACKs after RMSS bytes of data (#1002
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1002>)
- Do not ignore FIN if segment is partially outside the window. (
#977 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/977>)
- Correctly set internal sACK flag for client sockets (#995
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/995>)
- Only reset remote_last_ts if some data is enqueued (#917
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/917>)
- Don't delay ACKs for significant window updates (#935
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/935>)
- Add listen_endpoint getter (#1005
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1005>)
- socket
- UDP,ICMP,raw: Add send_queue/recv_queue (#1003
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1003>)
- ICMP: split ICMPv4/v6 accept and process (#887
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/887>)
- UDP: Store local and use local address in metadata (#904
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/904>)
- DNS: fix panic if server list is too long (#986
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/986>)
- DNS: fix panic if no valid source address is found (#987
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/987>)
- phy
- Change mutability of RxToken's consume argument. (#924
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/924>)
- Add support for NetBSD (#883
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/883>)
- Add minimum support for iOS (#896
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/896>)
- Add BPF support for FreeBSD (#906
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/906>)
- disable checksums on loopback (#919
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/919>)
- wire
- Use core::net types for IP addresses. (#937
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/937>, #994
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/994>)
- Add missing exports in wire for DNS (#891
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/891>)
- rename Scope to MulticastScope (#898
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/898>)
- Re-export dhcpv4::Flags and dhcpv4::OpCode (#901
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/901>)
- Make Address:v6() constructor const (#975
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/975>)
- Ipv6RoutingHeader::clear_reserved: fix offsets for Type 2 routing
headers. (#882
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/882>)
[0.11.0] - 2023-12-23 Additions
... (truncated)
Commits
- d2d6470
<smoltcp-rs/smoltcp@d2d6470>
Release v0.12.0
- 4dcee75
<smoltcp-rs/smoltcp@4dcee75>
Merge pull request #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1012> from
bergzand/pr/join_solicited_node
- 0385bad
<smoltcp-rs/smoltcp@0385bad>
iface: fix mld test.
- e9bf78c
<smoltcp-rs/smoltcp@e9bf78c>
iface: add test for ipv6 solicited node autojoin.
- e9cf1c5
<smoltcp-rs/smoltcp@e9cf1c5>
iface: make iterator chain a bit more readable.
- 2be5407
<smoltcp-rs/smoltcp@2be5407>
remove multicast groups that we *don't* want as solicited node.
- 2a5f90a
<smoltcp-rs/smoltcp@2a5f90a>
feat: Automatically join sol-node mcast addresses
- 2d5a200
<smoltcp-rs/smoltcp@2d5a200>
feat(ipv6): Extend with sol node mcast check
- 33bf798
<smoltcp-rs/smoltcp@33bf798>
Merge pull request #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1009> from
bergzand/pr/mldv2queryresp
- c07970b
<smoltcp-rs/smoltcp@c07970b>
Merge pull request #1014
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1014> from
willbicks/udp-metadata-doc
- Additional commits viewable in compare view
<smoltcp-rs/smoltcp@v0.11.0...v0.12.0>
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting @dependabot
rebase.
------------------------------
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- @dependabot rebase will rebase this PR
- @dependabot recreate will recreate this PR, overwriting any edits
that have been made to it
- @dependabot merge will merge this PR after your CI passes on it
- @dependabot squash and merge will squash and merge this PR after
your CI passes on it
- @dependabot cancel merge will cancel a previously requested merge
and block automerging
- @dependabot reopen will reopen this PR if it is closed
- @dependabot close will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- @dependabot show <dependency name> ignore conditions will show all
of the ignore conditions of the specified dependency
- @dependabot ignore this major version will close this PR and stop
Dependabot creating any more for this major version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this minor version will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this dependency will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the PR
or upgrade to it yourself)
------------------------------
You can view, comment on, or merge this pull request online at:
#87
Commit Summary
- 73249be
<73249be>
Update smoltcp requirement from 0.11.0 to 0.12.0
File Changes
(1 file <https://github.com/andrewdavidmackenzie/pingr/pull/87/files>)
- *M* picomon/Cargo.toml
<https://github.com/andrewdavidmackenzie/pingr/pull/87/files#diff-bc815227cb0395e7e29032efc6aa19b93b09ef78a19600e03f0c1122bf965272>
(2)
Patch Links:
- https://github.com/andrewdavidmackenzie/pingr/pull/87.patch
- https://github.com/andrewdavidmackenzie/pingr/pull/87.diff
—
Reply to this email directly, view it on GitHub
<#87>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKF4LEOPZPFJ5EK2JZDO232C5JO5AVCNFSM6AAAAABSVT4P72VHI2DSMVQWIX3LMV43ASLTON2WKOZSG4YDEOBYGQ3DGNQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
@dependabot merge
…On Fri, Nov 29, 2024 at 9:16 AM dependabot[bot] ***@***.***> wrote:
Updates the requirements on smoltcp
<https://github.com/smoltcp-rs/smoltcp> to permit the latest version.
Release notes
*Sourced from smoltcp's releases
<https://github.com/smoltcp-rs/smoltcp/releases>.*
v0.12.0
Almost a year in the making, the highlights of the release are the
migration to core::net IP types, IPv6 multicast, TCP improvements, and
many fixes. Smoltcp now connects your gadgets to the Internet better than
ever.
- Minimum Supported Rust Version (MSRV) bumped to 1.80.
- iface
- IPv6 multicast (#914
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/914>, #976
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/976>, #988
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/988>, #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1009>, #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1012>)
- Add poll_egress() and poll_ingress_single() methods for
finer-grained control of what and how many packets are processed. (
#954 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/954>, #991
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/991>, #993
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/993>)
- Multicast join/leave no longer requires access to
device+timestamp. (#985
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/985>)
- Reset expiry of entries in the neighbor cache on packet reception
(#966 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/966>)
- Honor any_ip for ARP (#880
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/880>)
- Honor any_ip for IPv6 (#900
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/900>)
- Use own source address for ARP and NDISC Solicitations (#984
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/984>)
- fix panic when discarding HBH Option with multicast destination
address (#996
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/996>)
- fix panic with 6lowpan frag datagram_size < 40 (#997
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/997>)
- fix panic if no suitable IPv6 src_addr is found (#895
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/895>)
- Fix specific length IP packets not being fragmented (#1008
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1008>)
- tcp
- Add support for congestion control (#907
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/907>)
- Add support for simultaneous open (#1001
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1001>)
- Add support for Timestamp option (#939
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/939>)
- Send immediate ACKs after RMSS bytes of data (#1002
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1002>)
- Do not ignore FIN if segment is partially outside the window. (
#977 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/977>)
- Correctly set internal sACK flag for client sockets (#995
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/995>)
- Only reset remote_last_ts if some data is enqueued (#917
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/917>)
- Don't delay ACKs for significant window updates (#935
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/935>)
- Add listen_endpoint getter (#1005
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1005>)
- socket
- UDP,ICMP,raw: Add send_queue/recv_queue (#1003
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1003>)
- ICMP: split ICMPv4/v6 accept and process (#887
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/887>)
- UDP: Store local and use local address in metadata (#904
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/904>)
- DNS: fix panic if server list is too long (#986
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/986>)
- DNS: fix panic if no valid source address is found (#987
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/987>)
- phy
- Change mutability of RxToken's consume argument. (#924
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/924>)
- Add support for NetBSD (#883
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/883>)
- Add minimum support for iOS (#896
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/896>)
- Add BPF support for FreeBSD (#906
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/906>)
- disable checksums on loopback (#919
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/919>)
- wire
- Use core::net types for IP addresses. (#937
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/937>, #994
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/994>)
- Add missing exports in wire for DNS (#891
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/891>)
- rename Scope to MulticastScope (#898
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/898>)
- Re-export dhcpv4::Flags and dhcpv4::OpCode (#901
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/901>)
- Make Address:v6() constructor const (#975
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/975>)
- Ipv6RoutingHeader::clear_reserved: fix offsets for Type 2 routing
headers. (#882
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/882>)
Changelog
*Sourced from smoltcp's changelog
<https://github.com/smoltcp-rs/smoltcp/blob/main/CHANGELOG.md>.*
[0.12.0] - 2024-11-28
Almost a year in the making, the highlights of the release are the
migration to core::net IP types, IPv6 multicast, TCP improvements, and
many fixes. Smoltcp now connects your gadgets to the Internet better than
ever.
- Minimum Supported Rust Version (MSRV) bumped to 1.80.
- iface
- IPv6 multicast (#914
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/914>, #976
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/976>, #988
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/988>, #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1009>, #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1012>)
- Add poll_egress() and poll_ingress_single() methods for
finer-grained control of what and how many packets are processed. (
#954 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/954>, #991
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/991>, #993
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/993>)
- Multicast join/leave no longer requires access to
device+timestamp. (#985
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/985>)
- Reset expiry of entries in the neighbor cache on packet reception
(#966 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/966>)
- Honor any_ip for ARP (#880
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/880>)
- Honor any_ip for IPv6 (#900
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/900>)
- Use own source address for ARP and NDISC Solicitations (#984
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/984>)
- fix panic when discarding HBH Option with multicast destination
address (#996
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/996>)
- fix panic with 6lowpan frag datagram_size < 40 (#997
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/997>)
- fix panic if no suitable IPv6 src_addr is found (#895
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/895>)
- Fix specific length IP packets not being fragmented (#1008
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1008>)
- tcp
- Add support for congestion control (#907
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/907>)
- Add support for simultaneous open (#1001
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1001>)
- Add support for Timestamp option (#939
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/939>)
- Send immediate ACKs after RMSS bytes of data (#1002
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1002>)
- Do not ignore FIN if segment is partially outside the window. (
#977 <https://redirect.github.com/smoltcp-rs/smoltcp/pull/977>)
- Correctly set internal sACK flag for client sockets (#995
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/995>)
- Only reset remote_last_ts if some data is enqueued (#917
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/917>)
- Don't delay ACKs for significant window updates (#935
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/935>)
- Add listen_endpoint getter (#1005
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1005>)
- socket
- UDP,ICMP,raw: Add send_queue/recv_queue (#1003
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/1003>)
- ICMP: split ICMPv4/v6 accept and process (#887
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/887>)
- UDP: Store local and use local address in metadata (#904
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/904>)
- DNS: fix panic if server list is too long (#986
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/986>)
- DNS: fix panic if no valid source address is found (#987
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/987>)
- phy
- Change mutability of RxToken's consume argument. (#924
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/924>)
- Add support for NetBSD (#883
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/883>)
- Add minimum support for iOS (#896
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/896>)
- Add BPF support for FreeBSD (#906
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/906>)
- disable checksums on loopback (#919
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/919>)
- wire
- Use core::net types for IP addresses. (#937
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/937>, #994
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/994>)
- Add missing exports in wire for DNS (#891
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/891>)
- rename Scope to MulticastScope (#898
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/898>)
- Re-export dhcpv4::Flags and dhcpv4::OpCode (#901
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/901>)
- Make Address:v6() constructor const (#975
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/975>)
- Ipv6RoutingHeader::clear_reserved: fix offsets for Type 2 routing
headers. (#882
<https://redirect.github.com/smoltcp-rs/smoltcp/pull/882>)
[0.11.0] - 2023-12-23 Additions
... (truncated)
Commits
- d2d6470
<smoltcp-rs/smoltcp@d2d6470>
Release v0.12.0
- 4dcee75
<smoltcp-rs/smoltcp@4dcee75>
Merge pull request #1012
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1012> from
bergzand/pr/join_solicited_node
- 0385bad
<smoltcp-rs/smoltcp@0385bad>
iface: fix mld test.
- e9bf78c
<smoltcp-rs/smoltcp@e9bf78c>
iface: add test for ipv6 solicited node autojoin.
- e9cf1c5
<smoltcp-rs/smoltcp@e9cf1c5>
iface: make iterator chain a bit more readable.
- 2be5407
<smoltcp-rs/smoltcp@2be5407>
remove multicast groups that we *don't* want as solicited node.
- 2a5f90a
<smoltcp-rs/smoltcp@2a5f90a>
feat: Automatically join sol-node mcast addresses
- 2d5a200
<smoltcp-rs/smoltcp@2d5a200>
feat(ipv6): Extend with sol node mcast check
- 33bf798
<smoltcp-rs/smoltcp@33bf798>
Merge pull request #1009
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1009> from
bergzand/pr/mldv2queryresp
- c07970b
<smoltcp-rs/smoltcp@c07970b>
Merge pull request #1014
<https://redirect.github.com/smoltcp-rs/smoltcp/issues/1014> from
willbicks/udp-metadata-doc
- Additional commits viewable in compare view
<smoltcp-rs/smoltcp@v0.11.0...v0.12.0>
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting @dependabot
rebase.
Dependabot will merge this PR once CI passes on it, as requested by
@andrewdavidmackenzie <https://github.com/andrewdavidmackenzie>.
------------------------------
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- @dependabot rebase will rebase this PR
- @dependabot recreate will recreate this PR, overwriting any edits
that have been made to it
- @dependabot merge will merge this PR after your CI passes on it
- @dependabot squash and merge will squash and merge this PR after
your CI passes on it
- @dependabot cancel merge will cancel a previously requested merge
and block automerging
- @dependabot reopen will reopen this PR if it is closed
- @dependabot close will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- @dependabot show <dependency name> ignore conditions will show all
of the ignore conditions of the specified dependency
- @dependabot ignore this major version will close this PR and stop
Dependabot creating any more for this major version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this minor version will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen the
PR or upgrade to it yourself)
- @dependabot ignore this dependency will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the PR
or upgrade to it yourself)
------------------------------
You can view, comment on, or merge this pull request online at:
#87
Commit Summary
- 73249be
<73249be>
Update smoltcp requirement from 0.11.0 to 0.12.0
File Changes
(1 file <https://github.com/andrewdavidmackenzie/pingr/pull/87/files>)
- *M* picomon/Cargo.toml
<https://github.com/andrewdavidmackenzie/pingr/pull/87/files#diff-bc815227cb0395e7e29032efc6aa19b93b09ef78a19600e03f0c1122bf965272>
(2)
Patch Links:
- https://github.com/andrewdavidmackenzie/pingr/pull/87.patch
- https://github.com/andrewdavidmackenzie/pingr/pull/87.diff
—
Reply to this email directly, view it on GitHub
<#87>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKF4LHXQNBVWNIKWCGSYQL2DAPFLAVCNFSM6AAAAABSVT4P72VHI2DSMVQWIX3LMV43ASLTON2WKOZSG4YDEOBYGQ3DGNQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updates the requirements on smoltcp to permit the latest version.
Release notes
Sourced from smoltcp's releases.
Changelog
Sourced from smoltcp's changelog.
... (truncated)
Commits
d2d6470
Release v0.12.04dcee75
Merge pull request #1012 from bergzand/pr/join_solicited_node0385bad
iface: fix mld test.e9bf78c
iface: add test for ipv6 solicited node autojoin.e9cf1c5
iface: make iterator chain a bit more readable.2be5407
remove multicast groups that we don't want as solicited node.2a5f90a
feat: Automatically join sol-node mcast addresses2d5a200
feat(ipv6): Extend with sol node mcast check33bf798
Merge pull request #1009 from bergzand/pr/mldv2queryrespc07970b
Merge pull request #1014 from willbicks/udp-metadata-docDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot will merge this PR once CI passes on it, as requested by @andrewdavidmackenzie.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)