Merge branch 'current' into next

This commit is contained in:
Jesse Hills 2024-09-11 17:27:46 +12:00
commit 293a1f6bc0
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
2 changed files with 80 additions and 13 deletions

View File

@ -455,30 +455,89 @@ check fails, please look at the Github Actions log and fix all errors that appea
**When will my PR be reviewed/merged?**
ESPHome is a big project; we encourage everybody to test, review and comment on PRs. Despite this, reviews can (and
often do) take some time.
ESPHome is a big project; :ref:`we encourage everybody to test, review and comment on PRs.<can_i_help_review>` Despite
this, reviews can (and often do) take some time.
**But howwww looonnnggg???**
Small PRs are easier to review and are often reviewed first. If you want your PR to be reviewed (and merged) quickly,
here are some tips:
- We would rather review ten ten-line PRs than one 100-line PR.
- Be sure to follow all :ref:`codebase_standards` as you make changes -- when reviewers have to spend time
commenting on/correcting your PR because you didn't name variables correctly or didn't prefix member variable
accesses with ``this->``, it wastes time we could be using to review other PRs which *do* follow the standards.
- *Keep PRs as small and as focused as possible.* Smaller PRs tend to be easier to understand and take less time to
review. Large PRs (many hundreds or thousands of lines) by their nature (of being large) tend to keep changing which
means reviewers have to revisit them over and over as they evolve. This isn't a tenable practice for project
maintainers. Break your work into multiple, smaller PRs and link these PRs together with comments in the description
so reviewers can follow the work more easily.
- The above bullet paraphrased: *we would rather review ten ten-line PRs than one 100-line PR.*
- *Be sure to follow all* :ref:`codebase_standards`. When reviewers have to spend time commenting on/correcting your PR
because you didn't name variables correctly or didn't prefix member variable accesses with ``this->``, it wastes time
we could be using to review other PRs which *do* follow the standards.
- If you wish to take on a big project, such as refactoring a substantial section of the codebase or integrating
another open source project with ESPHome, please discuss this with us on `Discord <https://discord.gg/KhAMKrd>`__ or
`create a discussion on GitHub <https://github.com/esphome/esphome/discussions>`__ **before** you do all the work and
attempt to submit a massive PR.
- While we realize it's not *always* possible, avoid submitting PRs which are thousands of lines in size. Such PRs are
simply too complex and take excessive amounts of time to review. Break your work into multiple, smaller PRs to make
the changes more tenable for reviewers.
- If you are not sure about how you should proceed with some changes, **please**
`discuss it with us on Discord <https://discord.gg/KhAMKrd>`__ before you go do a bunch of work that we can't (for
`discuss it with us on Discord <https://discord.gg/KhAMKrd>`__ *before* you go do a bunch of work that we can't (for
whatever reason) accept...and then you have to go back and re-do it all to get your PR merged. It's easier to make
corrections early-on -- and we want to help you!
.. _can_i_help_review:
Can I Help Review PRs?
**********************
**YES! PLEASE!!!**
While only maintainers can *merge* PRs, we value feedback from the community and it *is considered* as we review them.
Put another way, when a PR has several "This worked for me!" comments on it, we know that the author's work is doing
what it's supposed to, even if some other, underlying aspects might still need some fine-tuning to be consistent with
the rest of the codebase.
Testing
^^^^^^^
Often, the easiest way to help review PRs is by testing. Many (but not all) PRs can be used as
:doc:`/components/external_components` and can easily be added into your configuration for testing, like this:
.. code-block:: yaml
external_components:
- source: github://pr#2639
components: [ rtttl ]
...you just need to update the PR number and component name(s) in the YAML accordingly.
If you test a PR, please *share your results by leaving a comment on the PR!* If it doesn't work, be sure to include
any messages from the compiler and/or device logs so the author can troubleshoot the issue. *Comments which state no
more than "it doesn't work" are not helpful!*
Code Review
^^^^^^^^^^^
Beyond basic functionality (*"does it work?"*), here are a few other items we check for when reviewing PRs:
- Are file names & paths appropriate for/consistent with the codebase?
- Are namespace names consistent with the component/platform?
- Do all ``#define`` macro names match the namespace?
- Are all :ref:`codebase_standards` adhered to?
- Are there any calls to ``delay()`` with a duration longer than 10 milliseconds?
- Are any class methods doing work that they shouldn't be? For example, let's consider the ``dump_config()`` method:
- This method is intended to do **nothing** other than *print values* that were retrieved earlier (in ``setup()``).
- If this method has (for example) a ``this->read(...)`` call in it, it does not pass review and needs to be changed.
- Is the component/platform doing *exactly what it's supposed to*? Consider the example of a new serial bus interface a
contributor has implemented:
- The author has implemented this component with an action called ``superbus.send``.
- The author has concerns about too much traffic on the bus, so they have implemented a check in this action which
blocks duplicate message transmissions on the bus. The effect is that, if ``superbus.send`` is called repeatedly
with the same message, only the first call will actually send the message on the bus.
This behavior is not consistent with what ESPHome users expect. If the action ``superbus.send`` is called, it should
*always* send the message, regardless of the content. If there are concerns about (in this example) bus
utilization, perhaps messages can be queued instead of dropped/ignored.
.. _prs-are-being-drafted-when-changes-are-needed:
Why Was My PR was Marked as a Draft?
@ -563,7 +622,7 @@ Note that you can use this procedure for other branches, too, such as ``next`` o
Using ``git rebase`` will result in your changes having to be *force-pushed* back up to GitHub.
**Do not force-push** your branch once your PR is being reviewed; GitHub allows reviewers to mark files a "viewed"
**Do not force-push** your branch once your PR is being reviewed; GitHub allows reviewers to mark files as "viewed"
and, when you force-push, this history **is lost**, forcing your reviewer to re-review files they may have already
reviewed!
@ -750,6 +809,8 @@ the provided methods.
Finally, your component must have a ``dump_config`` method that prints the complete user configuration.
.. _delays_in_code:
A Note About Delays in Code
***************************
@ -818,8 +879,8 @@ ESPHome's maintainers work hard to maintain a high standard for its code. We try
- Components should dump their configuration using ``ESP_LOGCONFIG`` at startup in ``dump_config()``.
- ESPHome uses a unified formatting tool for all source files (but this tool can be difficult to install).
When creating a new PR in GitHub, see the Github Actions output to see what formatting needs to be changed
and what potential problems are detected.
When creating a new PR in GitHub, be sure to check the Github Actions output to see what formatting needs to be
changed and what potential problems are detected.
- Use of external libraries should be kept to a minimum:
- If the component you're developing has a simple communication interface, please consider implementing the library
@ -834,6 +895,12 @@ ESPHome's maintainers work hard to maintain a high standard for its code. We try
- Components **must** use the provided abstractions like ``sensor``, ``switch``, etc. Components specifically should
**not** directly access other components -- for example, to publish to MQTT topics.
- Implementations for new devices should contain reference links for the datasheet and other sample implementations.
- If you have used ``delay()`` or constructed code which blocks for a duration longer than ten milliseconds, be sure to
read :ref:`delays_in_code`.
- Comments in code should be used as appropriate, such as to help explain some complexity or to provide a brief summary
of what a class, method, etc. is doing. PRs which include large blocks of commented-out code will not be accepted.
Single lines of commented code may be useful from time to time (for example, to call out something which was
deliberately omitted for some reason) but should generally be avoided.
- Please test your changes :)
.. note::

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 54 KiB