-
Notifications
You must be signed in to change notification settings - Fork 50
Comparing changes
Open a pull request
base repository: arduino-libraries/ArduinoECCX08
base: 1.3.8
head repository: arduino-libraries/ArduinoECCX08
compare: master
- 16 commits
- 8 files changed
- 4 contributors
Commits on Feb 16, 2024
-
Configure Dependabot to check for outdated actions used in workflows (#…
…56) Dependabot will periodically check the versions of all actions used in the repository's workflows. If any are found to be outdated, it will submit a pull request to update them. NOTE: Dependabot's PRs will occasionally propose to pin to the patch version of the action (e.g., updating to ). When the action author has provided a major version ref, use that instead (e.g., ). Dependabot will automatically close its PR once the workflow has been updated. More information: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
Configuration menu - View commit details
-
Copy full SHA for edf43b7 - Browse repository at this point
Copy the full SHA edf43b7View commit details -
Bump actions/download-artifact from 2 to 4 (#57)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v2...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 60d4b82 - Browse repository at this point
Copy the full SHA 60d4b82View commit details -
Bump actions/checkout from 2 to 4 (#58)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout 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 519f727 - Browse repository at this point
Copy the full SHA 519f727View commit details -
Bump actions/upload-artifact from 2 to 4 (#59)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...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 e79aa4f - Browse repository at this point
Copy the full SHA e79aa4fView commit details -
Bump geekyeggo/delete-artifact from 1 to 4 (#60)
Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 1 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@v1...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 ae8d40c - Browse repository at this point
Copy the full SHA ae8d40cView commit details -
Bump carlosperate/download-file-action from 1 to 2 (#61)
Bumps [carlosperate/download-file-action](https://github.com/carlosperate/download-file-action) from 1 to 2. - [Release notes](https://github.com/carlosperate/download-file-action/releases) - [Commits](carlosperate/download-file-action@v1...v2) --- updated-dependencies: - dependency-name: carlosperate/download-file-action 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 a351e07 - Browse repository at this point
Copy the full SHA a351e07View commit details -
Fix regression re report-size-deltas after updating actions/upload-ar…
…tifact. (#62) 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 66f991a - Browse repository at this point
Copy the full SHA 66f991aView commit details
Commits on Feb 21, 2024
-
Fix regression: report size delta size on PR. (#63)
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 b26acea - Browse repository at this point
Copy the full SHA b26aceaView commit details -
Revert "Fix regression: report size delta size on PR. (#63)"
This reverts commit b26acea.
Configuration menu - View commit details
-
Copy full SHA for cf1f6f4 - Browse repository at this point
Copy the full SHA cf1f6f4View 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 2e0fa45 - Browse repository at this point
Copy the full SHA 2e0fa45View commit details -
Merge pull request #64 from arduino-libraries/fix-compile-examples
Fix size deltas report infrastructure configuration
Configuration menu - View commit details
-
Copy full SHA for 00ff506 - Browse repository at this point
Copy the full SHA 00ff506View commit details
Commits on Mar 19, 2024
-
Bump geekyeggo/delete-artifact from 4 to 5 (#65)
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 18b9826 - Browse repository at this point
Copy the full SHA 18b9826View commit details
Commits on Oct 9, 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 58e4c36 - Browse repository at this point
Copy the full SHA 58e4c36View commit details -
Merge pull request #68 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 9971d60 - Browse repository at this point
Copy the full SHA 9971d60View 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 81994bc - Browse repository at this point
Copy the full SHA 81994bcView commit details -
Merge pull request #71 from per1234/license-file
Add dedicated license file
Configuration menu - View commit details
-
Copy full SHA for f7657d0 - Browse repository at this point
Copy the full SHA f7657d0View 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.3.8...master