Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arduino-libraries/ArduinoMDNS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: arduino-libraries/ArduinoMDNS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 18 commits
  • 7 files changed
  • 5 contributors

Commits on Nov 9, 2023

  1. Update Arduino Lint configuration following Library Manager submission

    The "Check Arduino" workflow uses Arduino Lint (via the arduino/arduino-lint-action) to check for problems with the library.
    
    Different rules are appropriate for libraries that are being prepared for submission to Arduino Library Manager when compared to after submission, when the rules must instead check for problems related to publishing new releases of an already registered library. For this reason, the action has a `library-manager` input for configuring which phase the library is in.
    
    The library was recently registered in Arduino Library Manager, which caused the "Check Arduino" workflow runs to start failing due to still using the "submit" action configuration. The problem is resolved by updating the workflow to use the "update" action configuration.
    per1234 authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    d433259 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #25 from per1234/update-arduino-lint

    Update Arduino Lint configuration following Library Manager submission
    per1234 authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3ab761b View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Added missing includes IPAddress.h and Udp.h

    So as to allow for any order when using MDNS.h, it should include any headers it requires. It needs symbols from both IPAddress.h and Udp.h. IPAddress.h is included by Udp.h, but including it explicitly adds a bit of clarity to someone reading the code.
    JetForMe authored Jan 8, 2024
    Configuration menu
    Copy the full SHA
    af2e16a View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Merge pull request #29 from JetForMe/patch-1

    Added missing includes IPAddress.h and Udp.h
    facchinm authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    7ba8e3a View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. Bump actions/upload-artifact from 3 to 4 (#26)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    71ea822 View commit details
    Browse the repository at this point in the history
  2. Bump actions/download-artifact from 3 to 4 (#27)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    4b4ddaa View commit details
    Browse the repository at this point in the history
  3. Bump geekyeggo/delete-artifact from 2 to 4 (#28)

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 to 4.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
    - [Commits](GeekyEggo/delete-artifact@v2...v4)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    41b4fe9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9709991 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Fix regression: report size delta size on PR. (#32)

    The necessary steps have in fact been documented here: https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#workflow-triggered-by-pull_request-event but I have overlooked them when I fixed the upload issue. With this PR the size deltas are - once again - reported within the PR.
    aentinger authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    44aa0d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    34447cf View commit details
    Browse the repository at this point in the history
  3. Correct workflow artifact name pattern in size deltas report workflow

    The "sketches-reports-source" input of the "arduino/report-size-deltas" GitHub Actions action defines the regular
    expression that matches the names of the sketches report workflow artifacts produced by the "Compile Examples" workflow.
    
    The key string in the names of these artifacts was set to "sketches-report" when the "Compile Examples" workflow was
    adjusted for compatibility with the breaking changes introduced by updating to version 4.x of the workflow's
    "actions/upload-artifact" GitHub Actions action dependency. The pattern set in the size deltas report workflow was
    "sketches-reports". The "s" at the end of that pattern caused it to no longer match against the key string in the
    artifact names after that adjustment of the "Compile Examples" workflow, resulting in size deltas reports no longer
    being generated by the workflow.
    
    Although a minimal fix would be to simply remove the "s" from the end of the pattern, the decision was made to use a
    more strict regular expression. This will make it easier for maintainers and contributors to understand that this value
    is a regular expression and the exact nature of how that regular expression functions (which is less clear when relying
    on the "arduino/report-size-deltas" action's partial pattern matching behavior).
    aentinger committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    69c0caa View commit details
    Browse the repository at this point in the history
  4. Merge pull request #33 from arduino-libraries/fix-compile-examples

    Fix size deltas report infrastructure configuration
    aentinger authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    2caedd7 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Remove CI build for Portenta H7 / M4 core (#34)

    The reason behind this is that the M4 core can not access memory area that's relevant for the Ethernet driver. Put simply, Ethernet does not work from the Portenta H7 / M4 core.
    aentinger authored Feb 23, 2024
    Configuration menu
    Copy the full SHA
    6951948 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Bump geekyeggo/delete-artifact from 4 to 5 (#35)

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 4 to 5.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
    - [Commits](GeekyEggo/delete-artifact@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 19, 2024
    Configuration menu
    Copy the full SHA
    14122b4 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Bump arduino/arduino-lint-action from 1 to 2

    Bumps [arduino/arduino-lint-action](https://github.com/arduino/arduino-lint-action) from 1 to 2.
    - [Release notes](https://github.com/arduino/arduino-lint-action/releases)
    - [Commits](arduino/arduino-lint-action@v1...v2)
    
    ---
    updated-dependencies:
    - dependency-name: arduino/arduino-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    d95d0b7 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Merge pull request #39 from arduino-libraries/dependabot/github_actio…

    …ns/arduino/arduino-lint-action-2
    
    Bump arduino/arduino-lint-action from 1 to 2
    per1234 authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    00ed2b6 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. Add dedicated license file

    Standardization in license documentation is important because, in addition to making it easy for humans to find this
    vital information, it allows machines to automate the process of license type determination, which is useful both for
    discovering suitable open source projects as well as checking open source license compliance.
    
    Previously, the open source license of this project was not documented in a dedicated license file. Due to this, even
    though the project is licensed under a standardized open source license, the open license type could not be identified
    with 100% confidence by machines (e.g., the Licensee Gem used by the GitHub website), which meant identification could
    only be made by a human carefully evaluating the license text.
    
    The project's license is hereby documented in a standardized license file. The result is that the project's open source
    license type can now be automatically identified. This does not result in any change to the project licensing.
    per1234 committed May 9, 2025
    Configuration menu
    Copy the full SHA
    10aa85f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #48 from per1234/license-file

    Add dedicated license file
    per1234 authored May 9, 2025
    Configuration menu
    Copy the full SHA
    875d963 View commit details
    Browse the repository at this point in the history
Loading