Skip to content

v1.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 05 Jul 21:26
· 118 commits to refs/heads/main since this release
957961c

What's Changed

  • ci.yaml: add PrEval entry @Javagedes (#138)
    Change Details
      ## Description

    Adds a PrEval entry to all ci.yaml files to enable the new PrEval Policy 5.

    • Impacts functionality?
      • Functionality - Does the change ultimately impact how firmware functions?
      • Examples: Add a new library, publish a new PPI, update an algorithm, ...
    • Impacts security?
      • Security - Does the change have a direct security impact on an application,
        flow, or firmware?
      • Examples: Crypto algorithm change, buffer overflow fix, parameter
        validation improvement, ...
    • Breaking change?
      • Breaking change - Will anyone consuming this change experience a break
        in build or boot behavior?
      • Examples: Add a new library class, move a module to a different repo, call
        a function in a new library class in a pre-existing module, ...
    • Includes tests?
      • Tests - Does the change include any explicit test code?
      • Examples: Unit tests, integration tests, robot tests, ...
    • Includes documentation?
      • Documentation - Does the change contain explicit documentation additions
        outside direct code modifications (and comments)?
      • Examples: Update readme file, add feature readme file, link to documentation
        on an a separate Web page, ...

    How This Was Tested

    N/A

    Integration Instructions

    N/A

      </blockquote>
      <hr>
    </details>
    

⚠️ Breaking Changes

  • 202302 introduced IpmiCommandLib.h as part of the MdeModulePkg. @apop5 (#140)
    Change Details
      ## Description
    Brought IpmiCommandLib in mu_feature_ipmi into compliance with MdeModulePkg's
    Updated CI to run with mu_basecore 202302.
    
    IpmiGetSystemGuid has been deprecated. It has been replaced with IpmiGetSystemUuid
    from MdeModulePkg. As such, the returned GUID is now in EFI_GUID format instead of
    IPMI_GUID format.
    
    New Functions:
      IpmiGetChannelInfo
      IpmiGetLanConfigurationParameters
    
    Modified functions:
      IpmiSetPowerRestorePolicy
         Parameter names have changed to match MdeModulePkg
      ChassisControlResponse
         Parameters names have been changed to match MdeModulePkg
      IpmiSetSystemBootOptions
         A parameter has been removed to match MdeModulePkg
      IpmiGetSystemBootOptions
         A Parmeter has been removed to match MdeModulePkg
    

    For each item, place an "x" in between [ and ] if true. Example: [x].
    (you can also check items in the GitHub UI)

    • Impacts functionality?
      • Functionality - Does the change ultimately impact how firmware functions?
      • Examples: Add a new library, publish a new PPI, update an algorithm, ...
    • Impacts security?
      • Security - Does the change have a direct security impact on an application,
        flow, or firmware?
      • Examples: Crypto algorithm change, buffer overflow fix, parameter
        validation improvement, ...
    • Breaking change?
      • Breaking change - Will anyone consuming this change experience a break
        in build or boot behavior?
      • Examples: Add a new library class, move a module to a different repo, call
        a function in a new library class in a pre-existing module, ...
    • Includes tests?
      • Tests - Does the change include any explicit test code?
      • Examples: Unit tests, integration tests, robot tests, ...
    • Includes documentation?
      • Documentation - Does the change contain explicit documentation additions
        outside direct code modifications (and comments)?
      • Examples: Update readme file, add feature readme file, link to documentation
        on an a separate Web page, ...

    How This Was Tested

    Ran Local CI

    Integration Instructions

    Replace IpmiGetSystemGuid calls with IpmiGetSystemUuid, verify that use of function 
    expects an EFI_GUID to be returned instead of IPMI_GUID.
    
    Verify that consumers of functions are updated to match latest IpmiCommandLib
      IpmiSetPowerRestorePolicy
         Parameter names have changed to match MdeModulePkg
      ChassisControlResponse
         Parameters names have been changed to match MdeModulePkg
      IpmiSetSystemBootOptions
         A parameter has been removed to match MdeModulePkg
      IpmiGetSystemBootOptions
         A Parmeter has been removed to match MdeModulePkg
    
      IpmiCommandLib.h is removed and can be found in MdeModulePkg/Include/Library.
      
      </blockquote>
      <hr>
    </details>
    

Full Changelog: v0.3.2...v1.0.0