-
Notifications
You must be signed in to change notification settings - Fork 14
Comparing changes
Open a pull request
base repository: arduino-libraries/ArduinoMDNS
base: 1.0.0
head repository: arduino-libraries/ArduinoMDNS
compare: master
- 18 commits
- 7 files changed
- 5 contributors
Commits on Nov 9, 2023
-
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.
Configuration menu - View commit details
-
Copy full SHA for d433259 - Browse repository at this point
Copy the full SHA d433259View commit details -
Merge pull request #25 from per1234/update-arduino-lint
Update Arduino Lint configuration following Library Manager submission
Configuration menu - View commit details
-
Copy full SHA for 3ab761b - Browse repository at this point
Copy the full SHA 3ab761bView commit details
Commits on Jan 8, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for af2e16a - Browse repository at this point
Copy the full SHA af2e16aView commit details
Commits on Jan 9, 2024
-
Merge pull request #29 from JetForMe/patch-1
Added missing includes IPAddress.h and Udp.h
Configuration menu - View commit details
-
Copy full SHA for 7ba8e3a - Browse repository at this point
Copy the full SHA 7ba8e3aView commit details
Commits on Feb 19, 2024
-
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>
Configuration menu - View commit details
-
Copy full SHA for 71ea822 - Browse repository at this point
Copy the full SHA 71ea822View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 4b4ddaa - Browse repository at this point
Copy the full SHA 4b4ddaaView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for 41b4fe9 - Browse repository at this point
Copy the full SHA 41b4fe9View commit details -
Fix regression re report-size-deltas after updating actions/upload-ar…
…tifact (#31) For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event .
Configuration menu - View commit details
-
Copy full SHA for 9709991 - Browse repository at this point
Copy the full SHA 9709991View commit details
Commits on Feb 21, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for 44aa0d4 - Browse repository at this point
Copy the full SHA 44aa0d4View commit details -
Revert "Fix regression: report size delta size on PR. (#32)"
This reverts commit 44aa0d4.
Configuration menu - View commit details
-
Copy full SHA for 34447cf - Browse repository at this point
Copy the full SHA 34447cfView commit details -
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).
Configuration menu - View commit details
-
Copy full SHA for 69c0caa - Browse repository at this point
Copy the full SHA 69c0caaView commit details -
Merge pull request #33 from arduino-libraries/fix-compile-examples
Fix size deltas report infrastructure configuration
Configuration menu - View commit details
-
Copy full SHA for 2caedd7 - Browse repository at this point
Copy the full SHA 2caedd7View commit details
Commits on Feb 23, 2024
-
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.
Configuration menu - View commit details
-
Copy full SHA for 6951948 - Browse repository at this point
Copy the full SHA 6951948View commit details
Commits on Mar 19, 2024
-
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>
Configuration menu - View commit details
-
Copy full SHA for 14122b4 - Browse repository at this point
Copy the full SHA 14122b4View commit details
Commits on Oct 8, 2024
-
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]>
Configuration menu - View commit details
-
Copy full SHA for d95d0b7 - Browse repository at this point
Copy the full SHA d95d0b7View commit details
Commits on Oct 9, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for 00ed2b6 - Browse repository at this point
Copy the full SHA 00ed2b6View commit details
Commits on May 9, 2025
-
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.
Configuration menu - View commit details
-
Copy full SHA for 10aa85f - Browse repository at this point
Copy the full SHA 10aa85fView commit details -
Merge pull request #48 from per1234/license-file
Add dedicated license file
Configuration menu - View commit details
-
Copy full SHA for 875d963 - Browse repository at this point
Copy the full SHA 875d963View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.0.0...master