8000 Comparing 0.1.2...0.1.3 · arduino-libraries/Arduino_SecureElement · GitHub
[go: up one dir, main page]

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/Arduino_SecureElement
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.2
Choose a base ref
...
head repository: arduino-libraries/Arduino_SecureElement
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.1.3
Choose a head ref
  • 16 commits
  • 7 files changed
  • 3 contributors

Commits on Mar 19, 2024

  1. Configuration menu
    Copy the full SHA
    18fb8b9 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Merge pull request #14 from pennam/fix-w

    Fix warning: backslash and newline separated by space
    pennam authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    0de65dc View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Configuration menu
    Copy the full SHA
    792bf69 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Merge pull request #15 from pennam/unused-var

    SElementArduinoCloudCertificate read: suppress unused variable warning
    pennam authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    ddec9b9 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Bump actions/upload-artifact from 3 to 4

    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] <support@github.com>
    dependabot[bot] authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    d2d1981 View commit details
    Browse the repository at this point in the history
  2. Bump actions/download-artifact from 3 to 4

    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] <support@github.com>
    dependabot[bot] authored and per1234 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    d07fce5 View commit details
    Browse the repository at this point in the history
  3. Bump geekyeggo/delete-artifact from 2 to 5

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 2 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@v2...v5)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and per1234 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    550164e View commit details
    Browse the repository at this point in the history
  4. Don't upload multiple times to same artifact in label sync workflow

    The "Sync Labels" GitHub Actions workflow is configured to allow the use of multiple shared label configuration files.
    This is done by using a job matrix in the GitHub Actions workflow to download each of the files from the source
    repository in a parallel GitHub Actions workflow job. A GitHub Actions workflow artifact was used to transfer the
    generated files between sequential jobs in the workflow. The "actions/upload-artifact" and "actions/download-artifact"
    actions are used for this purpose.
    
    Previously, a single artifact was used for the transfer of all the shared label configuration files, with each of the
    parallel jobs uploading its own generated files to that artifact. However, support for uploading multiple times to a
    single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now necessary to use a
    dedicated artifact for each of the builds. These can be downloaded in aggregate by using the artifact name globbing and
    merging features which were introduced in version 4.1.0 of the "actions/download-artifact" action.
    per1234 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    1cb7979 View commit details
    Browse the repository at this point in the history
  5. Don't upload multiple times to same artifact in sketch compilation wo…

    …rkflow
    
    The "Compile Examples" GitHub Actions workflow is configured to compile the example sketches for each of the supported
    boards. This is done by using a job matrix in the GitHub Actions workflow to generate a parallel job for each board.
    
    A GitHub Actions workflow artifact is used to transfer the sketches report files generated by the
    "arduino/compile-sketches" action between this workflow's job and the "Report Size Deltas" workflow that uses the
    "arduino/report-size-deltas" action to publish the data. The "actions/upload-artifact" action is used to upload the
    sketches report files to the workflow artifact.
    
    Previously, the sketches reports from all the boards were uploaded to a single artifact. However, support for uploading
    multiple times to a single artifact was dropped in version 4.0.0 of the "actions/upload-artifact" action. So it is now
    necessary for each of the jobs to use a separate artifact. The "arduino/report-size-deltas" action is configured to
    recognize these multiple artifacts by a regular expression that matches against a standardized prefix on the artifact
    names.
    per1234 committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    8693c9c View commit details
    Browse the repository at this point in the history
  6. Merge pull request #3 from arduino-libraries/dependabot/github_action…

    …s/actions/upload-artifact-4
    
    Bump actions/upload-artifact from 3 to 4
    per1234 authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    8cad183 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 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] <support@github.com>
    dependabot[bot] authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    c5f4583 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #17 from arduino-libraries/dependabot/github_actio…

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

Commits on Dec 2, 2024

  1. Add support for MKRWAN

    pennam committed Dec 2, 2024
    Configuration menu
    Copy the full SHA
    3d2a8db View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. ci: add mkrwan

    pennam committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    720f90e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #20 from pennam/mkrwan

    Add support for MKRWAN
    pennam authored Dec 3, 2024
    Configuration menu
    Copy the full SHA
    1b9b7fb View commit details
    Browse the repository at this point in the history
  3. Release v0.1.3

    pennam committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    1db5eb2 View commit details
    Browse the repository at this point in the history
Loading
0