<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Tianocore/edk2.git/RedfishPkg, branch dependabot/github_actions/actions/github-script-9</title>
<subtitle>EDK II (mirror)</subtitle>
<id>https://git.radix-linux.su/Tianocore/edk2.git/atom?h=dependabot%2Fgithub_actions%2Factions%2Fgithub-script-9</id>
<link rel='self' href='https://git.radix-linux.su/Tianocore/edk2.git/atom?h=dependabot%2Fgithub_actions%2Factions%2Fgithub-script-9'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/'/>
<updated>2026-04-28T01:46:24+00:00</updated>
<entry>
<title>RedfishPkg/RedfishHttpDxe: Improve RedfishHttpOperation error handling</title>
<updated>2026-04-28T01:46:24+00:00</updated>
<author>
<name>Matthew Graham</name>
<email>Matthew.Graham@amd.com</email>
</author>
<published>2026-04-14T20:38:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=112a43a92d92509cd71a3c9369ee465fd0f951d2'/>
<id>urn:sha1:112a43a92d92509cd71a3c9369ee465fd0f951d2</id>
<content type='text'>
Improve RedfishHttpOperation error handling by
returning EFI_DEVICE_ERROR if CreateRedfishPayload
is NULL

Cc: Abner Chang &lt;abner.chang@amd.com&gt;
Cc: Nickle Wang &lt;nicklew@nvidia.com&gt;
Cc: Igor Kulchytskyy &lt;igork@ami.com&gt;
Signed-off-by: Matthew Graham &lt;Matthew.Graham@amd.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/RedfishDiscoverDxe: Do not require TCP6 if IPv6 HTTP off</title>
<updated>2026-04-27T15:42:55+00:00</updated>
<author>
<name>Matthew Graham</name>
<email>Matthew.Graham@amd.com</email>
</author>
<published>2026-04-24T06:12:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=53783077e291f2fa5028eacd402fc983239b55ff'/>
<id>urn:sha1:53783077e291f2fa5028eacd402fc983239b55ff</id>
<content type='text'>
Redfish discover required TCP4, TCP6, and REST EX on every
controller. Platforms that disable IPv6 HTTP
(PcdIPv6HttpSupport FALSE) do not install TCP6, so driver
Supported/Start/Stop failed and discovery did not run over
IPv4. Skip the TCP6 row in the required-protocol walk when
gEfiNetworkPkgTokenSpaceGuid.PcdIPv6HttpSupport is FALSE,
consistent with NetworkPkg's IPv6 HTTP gating.

Cc: Abner Chang &lt;abner.chang@amd.com&gt;
Cc: Nickle Wang &lt;nicklew@nvidia.com&gt;
Cc: Igor Kulchytskyy &lt;igork@ami.com&gt;
Signed-off-by: Matthew Graham &lt;Matthew.Graham@amd.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/ConfigHandler: Remove [Depex] section from INF file</title>
<updated>2026-04-23T18:22:03+00:00</updated>
<author>
<name>Abner Chang</name>
<email>abner.chang@amd.com</email>
</author>
<published>2026-04-04T15:11:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=2fb6e81c06b63cb8ab96ab82f1df2674492530a4'/>
<id>urn:sha1:2fb6e81c06b63cb8ab96ab82f1df2674492530a4</id>
<content type='text'>
UEFI driver shouldn't have the [Depex] section in INF file.
Remove Redfish Credential Protocol in dependency section
and locate it when the UEFI driver is connected to execute.

Signed-off-by: Abner Chang &lt;abner.chang@amd.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/PlatformConfig: Delete a few debug messages</title>
<updated>2026-04-06T22:57:03+00:00</updated>
<author>
<name>Abner Chang</name>
<email>abner.chang@amd.com</email>
</author>
<published>2026-04-06T20:02:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=268266d8dcbef518221750c0299058b6bfe72f91'/>
<id>urn:sha1:268266d8dcbef518221750c0299058b6bfe72f91</id>
<content type='text'>
Delete a few debug messages when searching x-uefi string.
This reduces the messages when DEBUG_MANAGEABILITY is
enabled.

Signed-off-by: Abner Chang &lt;abner.chang@amd.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg: Replace include guards with #pragma once</title>
<updated>2026-02-23T21:01:28+00:00</updated>
<author>
<name>Michael Kubacki</name>
<email>michael.kubacki@microsoft.com</email>
</author>
<published>2026-02-03T18:59:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=6181c85fa98fd1ea9e7292ad5390a2ec4f1da318'/>
<id>urn:sha1:6181c85fa98fd1ea9e7292ad5390a2ec4f1da318</id>
<content type='text'>
Replace traditional `#ifndef`/`#define`/`#endif` include guards with
`#pragma` once.

`#pragma once` is a widely supported preprocessor directive that
prevents header files from being included multiple times. It is
supported by all toolchains used to build edk2: GCC, Clang/LLVM, and
MSVC.

Compared to macro-based include guards, `#pragma once`:

- Eliminates the risk of macro name collisions or copy/paste errors
  where two headers inadvertently use the same guard macro.
- Eliminate inconsistency in the way include guard macros are named
  (e.g., some files use `__FILE_H__`, others use `FILE_H_`, etc.).
- Reduces boilerplate (three lines replaced by one).
- Avoids polluting the macro namespace with guard symbols.
- Can improve build times as the preprocessor can skip re-opening the
  file entirely, rather than re-reading it to find the matching
  `#endif` ("multiple-include optimization").
  - Note that some compilers may already optimize traditional include
    guards, by recognzining the idiomatic pattern.

This change is made acknowledging that overall portability of the
code will technically be reduced, as `#pragma once` is not part of the
C/C++ standards.

However, this is considered acceptable given:

1. edk2 already defines a subset of supported compilers in
   BaseTools/Conf/tools_def.template, all of which have supported
   `#pragma once` for over two decades.
2. There have been concerns raised to the project about inconsistent
   include guard naming and potential macro collisions.

Approximate compiler support dates:

- MSVC: Supported since Visual C++ 4.2 (1996)
- GCC: Supported since 3.4 (2004)
  (http://gnu.ist.utl.pt/software/gcc/gcc-3.4/changes.html)
- Clang (LLVM based): Since initial release in 2007

Signed-off-by: Michael Kubacki &lt;michael.kubacki@microsoft.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/RedfishPlatformConfigDxe: reduce false alarm</title>
<updated>2026-01-28T00:40:04+00:00</updated>
<author>
<name>Nickle Wang</name>
<email>nicklew@nvidia.com</email>
</author>
<published>2026-01-24T06:36:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=97a81fd05c47d338261a8e4c627303cbd6b1fbce'/>
<id>urn:sha1:97a81fd05c47d338261a8e4c627303cbd6b1fbce</id>
<content type='text'>
Remove false alarm when there is no formset or form in HII handle.

Signed-off-by: Nickle Wang &lt;nicklew@nvidia.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/RedfishPlatformConfigDxe: add missing HII handles</title>
<updated>2026-01-28T00:40:04+00:00</updated>
<author>
<name>Nickle Wang</name>
<email>nicklew@nvidia.com</email>
</author>
<published>2026-01-24T06:35:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=61c7b61fd7be03e30681946dcd619928c1a63f83'/>
<id>urn:sha1:61c7b61fd7be03e30681946dcd619928c1a63f83</id>
<content type='text'>
For those HII handles that are installed before RedfishPlatformConfigDxe
gets launched, add them to pending list so driver has chance to handle
them.

Signed-off-by: Nickle Wang &lt;nicklew@nvidia.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/RedfishPlatformConfig: Fix CLANGPDB build failure</title>
<updated>2026-01-22T01:27:21+00:00</updated>
<author>
<name>Abner Chang</name>
<email>abner.chang@amd.com</email>
</author>
<published>2026-01-17T01:57:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=60bfa52f6520bff0aa265c3e89ef9d6f6aeca5e7'/>
<id>urn:sha1:60bfa52f6520bff0aa265c3e89ef9d6f6aeca5e7</id>
<content type='text'>
CLANGPDB build fails because the intrinsic _memcpy is used by
the compiler for the value structure passed via a function.
Change the code to use the value reference.

This fixes the issue: #11882

Signed-off-by: Abner Chang &lt;abner.chang@amd.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg/PrivateLibrary/RedfishLib/edk2libredfish: Uninit var</title>
<updated>2026-01-21T07:37:01+00:00</updated>
<author>
<name>Michael D Kinney</name>
<email>michael.d.kinney@intel.com</email>
</author>
<published>2026-01-16T17:44:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=b734b82ad8b819dd46c38d421e10dcd9475a7121'/>
<id>urn:sha1:b734b82ad8b819dd46c38d421e10dcd9475a7121</id>
<content type='text'>
Fix potentially uninitialized variable in deleteUriFromServiceEx().
Issue identified with VS2022 NOOPT builds for IA32 and X64.

Signed-off-by: Michael D Kinney &lt;michael.d.kinney@intel.com&gt;
</content>
</entry>
<entry>
<title>RedfishPkg: Add LOONGARCH64 as supported architecture</title>
<updated>2026-01-09T01:33:09+00:00</updated>
<author>
<name>Qihang Gao</name>
<email>gaoqihang@loongson.cn</email>
</author>
<published>2025-12-29T09:57:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/Tianocore/edk2.git/commit/?id=800a46db98e6973348b804e6c85b7dbc972f7990'/>
<id>urn:sha1:800a46db98e6973348b804e6c85b7dbc972f7990</id>
<content type='text'>
Add LOONGARCH64 as supported architecture in RedfishPkg.

Signed-off-by: Qihang Gao &lt;gaoqihang@loongson.cn&gt;
</content>
</entry>
</feed>
