Skip to content

Conversation

@matheusaaguiar
Copy link
Collaborator

@matheusaaguiar matheusaaguiar commented Aug 19, 2025

Partially solves #15795.
Deprecation warnings for:

@cameel
Copy link
Collaborator

cameel commented Aug 19, 2025

Just a quick heads up: note that the issues you listed in the description should not be closed when this PR is merged. They're about feature removals and adding a warning is just an intermediate step, not a complete solution.

@matheusaaguiar matheusaaguiar force-pushed the deprecation_warnings branch 3 times, most recently from 3c00eb6 to f052fe2 Compare August 20, 2025 22:52
@matheusaaguiar matheusaaguiar force-pushed the deprecation_warnings branch 2 times, most recently from 6d32b8c to 2531e30 Compare September 3, 2025 02:24
@github-actions
Copy link

This pull request is stale because it has been open for 14 days with no activity.
It will be closed in 7 days unless the stale label is removed.

@github-actions github-actions bot added the stale The issue/PR was marked as stale because it has been open for too long. label Sep 26, 2025
@matheusaaguiar matheusaaguiar removed the stale The issue/PR was marked as stale because it has been open for too long. label Sep 27, 2025
@github-actions
Copy link

This pull request is stale because it has been open for 14 days with no activity.
It will be closed in 7 days unless the stale label is removed.

@github-actions github-actions bot added the stale The issue/PR was marked as stale because it has been open for too long. label Oct 12, 2025
@matheusaaguiar matheusaaguiar removed the stale The issue/PR was marked as stale because it has been open for too long. label Oct 13, 2025
Comment on lines 295 to 297
call to the contract with empty calldata. This is the function that is executed
on plain Ether transfers (e.g. via ``.send()`` or ``.transfer()``). If no such
function exists, but a payable :ref:`fallback function <fallback-function>`
Copy link
Member

Choose a reason for hiding this comment

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

Perhaps not in this PR but I think we will have to go through the docs regarding send and transfer and see where we have to update them wrt best practices regarding send and transfer

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Yeah, I was thinking about this. We will need to update parts of the docs to reflect the deprecation of these functionalities.
I guess a separate PR for that would be better for organization purposes.

Copy link
Member

Choose a reason for hiding this comment

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

Yeah. It has to be done before we release though. :)

backward-compatibility with older compiler versions, prefer using the dialect string.
.. warning::
The ``memory-safe-assembly`` special comment will be deprecated in the next breaking version (0.9).
So, if you are not concerned with backward-compatibility with older compiler versions, prefer using the dialect string.
Copy link
Member

Choose a reason for hiding this comment

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

Out of curiosity, do we have a backwards-compatible way of handling this?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I don't think so.

@clonker
Copy link
Member

clonker commented Oct 28, 2025

Please go over the docs again, we will deprecate things before 0.9 and with 0.9 or a later version they will be removed. So "Note that XYZ will be deprecated in 0.9" should be "Note that XYZ are deprecated and scheduled for removal in 0.9".

I find it a bit problematic to show deprecated code in the examples. This should be updated to be according to best practices. I am not sure if this PR is the right place for it, but if you find it's not, it should be done in a follow-up.

Generally I'd have liked that alongside the .. warning of a deprecation you not only say that it is deprecated but also give a hint what to do instead. For example:

.. warning::
    The following patterns are deprecated and will be removed in v0.9:

    - ``address.send()`` - Use ... instead
    - ``address.transfer()`` - Use ...

Also the code-emitted warnings have to be updated to reflect that things are deprecated now and will be removed in a future breaking release. Please present alternatives there (like for the send stuff to use call) and if possible it would be great to provide a link to the docs where this is described. Otherwise users are left stranded. Think what you would like to see if a compiler presents you with a deprecation warning.

Implementation-wise it looks good.

@matheusaaguiar matheusaaguiar force-pushed the deprecation_warnings branch 4 times, most recently from c203f66 to 3fb9ccd Compare October 29, 2025 12:44
Copy link
Collaborator Author

@matheusaaguiar matheusaaguiar left a comment

Choose a reason for hiding this comment

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

I have changed according to most of your suggestions @clonker. There are still some places where we need to properly rewrite or erase the docs to reflect the deprecation in the examples (send/transfer and virtual modifiers).

Copy link
Member

@clonker clonker left a comment

Choose a reason for hiding this comment

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

some more comments :)

Copy link
Member

@clonker clonker left a comment

Choose a reason for hiding this comment

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

Unfortunately still some things to do:

Here we have documentation of send and transfer but no mention that they're deprecated:

  • docs/units-and-global-variables.rst (Members of Address Types section)
  • docs/cheatsheet.rst (Address Related section)

Hope I didn't miss anything else in the documentation beyond these two. Wouldn't hurt to double-check.

Then there needs to be a changelog entry. We should probably also start a docs/090-breaking-changes.rst and document this there.

@matheusaaguiar matheusaaguiar force-pushed the deprecation_warnings branch 2 times, most recently from b59a2b4 to 86da905 Compare October 31, 2025 17:44
@matheusaaguiar
Copy link
Collaborator Author

We should probably also start a docs/090-breaking-changes.rst and document this there.

I have started to do that, but will submit in a separate PR along other doc revisions, if you think it is ok.

I created #16274 to track the work needed in order to update the docs for the breaking changes of v.0.9.

Copy link
Member

@clonker clonker left a comment

Choose a reason for hiding this comment

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

Thanks for creating the tracking issue! Some more minor things I found in a final pass.

2424_error,
_assembly.location(),
"Natspec memory safe annotation for inline assembly is deprecated and scheduled for removal in the next breaking version (0.9)."
"Natspec 'memory-safe-assembly' special comment for inline assembly is deprecated and scheduled for removal in the next breaking version (0.9)."
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@clonker I've reworded the warning message here to be more in line with the suggestion you made for the changelog entry....what do you think?

Copy link
Member

@clonker clonker Nov 4, 2025

Choose a reason for hiding this comment

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

Nice! Thinking about it again, it would be even better to mention that the assembly block annotation should be used instead. Like "Use the 'memory-safe' assembly block annotation instead". Or go with the whole sentence as in the docs.

Copy link
Member

@clonker clonker left a comment

Choose a reason for hiding this comment

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

I think in principle it is already good to go but we can still improve things a tiny bit so that the style is uniform, then there are no rough edges left. Then rebase, squash, merge :) for the future I think it would be beneficial to collect the introduced docstrings and/or warnings separately in a comment on the PR, then it's easier to check that the style is uniform. What do you think?

Documentation:

Note that send and transfer are deprecated and scheduled for removal in the next breaking version (0.9).
You are encouraged to use the :ref:call function <address_related> with an optionally provided maximum
amount of gas (default forwards all remaining gas) and an empty calldata parameter, e.g., call{value: amount}("").

Initially I suggested the "you are encouraged to" bit, but perhaps it's better to keep it brief and just say "Use the call function with an ...". I'll leave that up to you.

send/transfer is deprecated and scheduled for removal in the next breaking version (0.9).
You are encouraged to use the :ref:call function <address_call_functions> with an optionally provided maximum
amount of gas (default forwards all remaining gas) and an empty calldata parameter, e.g., call{value: amount}("").
Same as above.

virtual modifiers are deprecated and scheduled for removal in the next breaking version (0.9).

You might want to unify the style and add a "Note that" or remove it in all places.

The memory-safe-assembly special comment is deprecated and scheduled for
removal in the next breaking version (0.9).
For new code targeting recent compilers, prefer specifying the assembly block annotation.

Same as above, maybe instead of "prefer specifying" it should be "specify".

The ABI coder v1 is deprecated and scheduled for removal in the next breaking version (0.9).

Optionally you can expand and say "Use ABI coder v2 instead."

Warnings:

Natspec 'memory-safe-assembly' special comment for inline assembly is deprecated and scheduled for removal in the next breaking version (0.9).

Add a sentence what to use instead (ie the assembly block annotation).

ABI coder v1 is deprecated and scheduled for removal in the next breaking version (0.9).

Add a sentence what to use instead (ie ABI coder v2).

Virtual modifiers are deprecated and scheduled for removal in the next breaking version (0.9).

This is good. Although also here one can think about adding that there is no replacement (or is there?). I'll leave that up to you.

Comparison of variables of contract type is deprecated and scheduled for removal in the next breaking version (0.9). Instead, use an explicit cast to address type.

Just a small language / word order thing, I would write "Use an explicit cast to address type and compare the addresses instead."

'send/transfer' is deprecated and scheduled for removal in the next breaking version (0.9). It is encouraged to use 'call{{value: }}()' instead.

Same as the first point in the documentation, I'd unify it and make it more imperative, ie, "Use 'call{{value: }}()' instead".

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.

4 participants