-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3.0-dev' into schalam/amdgpuchanges
- Loading branch information
Showing
184 changed files
with
7,022 additions
and
6,136 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
|
||
name: Github Merge Conflict Check | ||
|
||
on: | ||
push: | ||
branches: [main, dev, 1.0*, 2.0*, 3.0*, fasttrack/*] | ||
pull_request: | ||
branches: [main, dev, 1.0*, 2.0*, 3.0*, fasttrack/*] | ||
|
||
jobs: | ||
spec-check: | ||
name: Github Merge Conflict Check | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout the branch of our repo that triggered this action | ||
- name: Workflow trigger checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get base commit for PRs | ||
if: ${{ github.event_name == 'pull_request' }} | ||
run: | | ||
git fetch origin ${{ github.base_ref }} | ||
echo "base_sha=$(git rev-parse origin/${{ github.base_ref }})" >> $GITHUB_ENV | ||
echo "Merging ${{ github.sha }} into ${{ github.base_ref }}" | ||
- name: Get base commit for Pushes | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
git fetch origin ${{ github.event.before }} | ||
echo "base_sha=${{ github.event.before }}" >> $GITHUB_ENV | ||
echo "Merging ${{ github.sha }} into ${{ github.event.before }}" | ||
- name: Check for merge conflicts | ||
run: | | ||
echo "Files changed: '$(git diff-tree --no-commit-id --name-only -r ${{ env.base_sha }} ${{ github.sha }})'" | ||
changed_files=$(git diff-tree --diff-filter=d --no-commit-id --name-only -r ${{ env.base_sha }} ${{ github.sha }}) | ||
merge_conflict_found=false | ||
for file in $changed_files ; do | ||
if [ -f $file ]; then | ||
echo "Checking for merge conflicts in $file" | ||
if grep -H -r "^<<<<<<< HEAD$" $file; then | ||
echo "Merge conflict found in $file" | ||
merge_conflict_found=true | ||
fi | ||
if grep -H -r "^>>>>>>>$" $file; then | ||
echo "Merge conflict found in $file" | ||
merge_conflict_found=true | ||
fi | ||
if grep -H -r "^=======$" $file; then | ||
echo "Merge conflict found in $file" | ||
merge_conflict_found=true | ||
fi | ||
fi | ||
done | ||
if [[ $merge_conflict_found =~ [Tt]rue ]]; then | ||
echo "Merge conflict found in one or more files" | ||
exit 1 | ||
fi |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
SPECS-EXTENDED/apache-commons-io/apache-commons-io.signatures.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"Signatures": { | ||
"apache-commons-io-build.xml": "3661f04824b5f93033dfc9f993a97f1435ff467f7e3cf5e2846f2d63a690ad3b", | ||
"commons-io-2.8.0-src.tar.gz": "1e44c2b038bf825526305f0320b2e24dce039f399968326aab30c475ab765612", | ||
"commons-io-2.8.0-src.tar.gz.asc": "5df617e9034a4e31cf7671af111edae1537dd14dc8d5e2fa4392a038f912df61" | ||
"apache-commons-io-build.xml": "d7daa228b59ff41d5917745a77732bd31dc38dc1cea4edf1f65879c8ab82c4a2", | ||
"commons-io-2.14.0-src.tar.gz": "306d53e907f491b9ac6b0e74e6ad9d8cbc0cf1b024cfb21df59a0c486fd181bc", | ||
"commons-io-2.14.0-src.tar.gz.asc": "e46f87969e7accfa80aa194207c47d213730bc2427fb8ce7affbbfef5c3d1ec5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ Distribution: Azure Linux | |
%define short_name commons-%{base_name} | ||
%bcond_with tests | ||
Name: apache-%{short_name} | ||
Version: 2.8.0 | ||
Release: 2%{?dist} | ||
Version: 2.14.0 | ||
Release: 1%{?dist} | ||
Summary: Utilities to assist with developing IO functionality | ||
License: Apache-2.0 | ||
Group: Development/Libraries/Java | ||
|
@@ -93,6 +93,10 @@ cp -pr target/site/apidocs/* %{buildroot}%{_javadocdir}/%{name} | |
%doc %{_javadocdir}/%{name} | ||
|
||
%changelog | ||
* Mon Oct 7 2024 Bhagyashri Pathak <[email protected]> - 2.14.0-1 | ||
- Upgrade to 2.14.0 to fix the CVE-2024-47554. | ||
- License verified | ||
|
||
* Thu Oct 14 2021 Pawel Winogrodzki <[email protected]> - 2.8.0-2 | ||
- Converting the 'Release' tag to the '[number].[distribution]' format. | ||
|
||
|
11 changes: 11 additions & 0 deletions
11
SPECS-EXTENDED/apache-commons-io/commons-io-2.14.0-src.tar.gz.asc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-----BEGIN PGP SIGNATURE----- | ||
|
||
iQEzBAABCgAdFiEELbTx7w+nYezE6pNchv3H4qESYssFAmURZkQACgkQhv3H4qES | ||
YssmAAf+Opr906UCvufO2/ncd3Q2RuJDC24WoUlK8t18yNLTXcG1ZhxtqHn0ms/l | ||
D59OwQQaerBr2f/Y4dB1WLTg/XIrgtbmjImKk0iOXwVirb5etdXdnLUXf3oRvJG+ | ||
C98BB26kY4QPYmRzQMFdf6AVRMZvva51c+u7zrKDOC0/VlxYPY8UlYQfCJ6Uyxqu | ||
TMUwQ1/cfSr65DIQui/X/RM09tGcyItb2wScZlGSq7FqtYNUj6GYAEZqhPeG74pq | ||
5xC19viyCGnTLO8LRaqmzmqidMPcYc95GqO9BiQDcI393qZJsq9GSxMwvIPcVJNp | ||
l6oNdUcPRxIf0yFJm47dmFtEeM4KXg== | ||
=+Thz | ||
-----END PGP SIGNATURE----- |
11 changes: 0 additions & 11 deletions
11
SPECS-EXTENDED/apache-commons-io/commons-io-2.8.0-src.tar.gz.asc
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
Summary: Signed GRand Unified Bootloader for %{buildarch} systems | ||
Name: grub2-efi-binary-signed-%{buildarch} | ||
Version: 2.06 | ||
Release: 20%{?dist} | ||
Release: 21%{?dist} | ||
License: GPLv3+ | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
@@ -79,6 +79,9 @@ cp %{SOURCE3} %{buildroot}/boot/efi/EFI/BOOT/%{grubpxeefiname} | |
/boot/efi/EFI/BOOT/%{grubpxeefiname} | ||
|
||
%changelog | ||
* Mon Oct 28 2024 Chris Co <[email protected]> - 2.06-21 | ||
- Bump release number to match grub release | ||
|
||
* Tue Aug 13 2024 Daniel McIlvaney <[email protected]> - 2.06-20 | ||
- Move grub2-rpm-macros to the azurelinux-rpm-macros package | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ | |
%define uname_r %{version}-%{release} | ||
Summary: Signed Linux Kernel for %{buildarch} systems | ||
Name: kernel-signed-%{buildarch} | ||
Version: 6.6.51.1 | ||
Release: 6%{?dist} | ||
Version: 6.6.57.1 | ||
Release: 3%{?dist} | ||
License: GPLv2 | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
@@ -145,9 +145,30 @@ echo "initrd of kernel %{uname_r} removed" >&2 | |
%exclude /module_info.ld | ||
|
||
%changelog | ||
* Thu Oct 03 2024 Suresh Babu Chalamalasetty <[email protected]> - 6.6.51.1-6 | ||
* Wed Nov 06 2024 Suresh Babu Chalamalasetty <[email protected]> - 6.6.57.1-3 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 30 2024 Thien Trung Vuong <[email protected]> - 6.6.57.1-2 | ||
- Bump release to match kernel | ||
|
||
* Tue Oct 29 2024 CBL-Mariner Servicing Account <[email protected]> - 6.6.57.1-1 | ||
- Auto-upgrade to 6.6.57.1 | ||
|
||
* Thu Oct 24 2024 Rachel Menge <[email protected]> - 6.6.56.1-5 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 23 2024 Rachel Menge <[email protected]> - 6.6.56.1-4 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 23 2024 Rachel Menge <[email protected]> - 6.6.56.1-3 | ||
- Bump release to match kernel | ||
|
||
* Tue Oct 22 2024 Rachel Menge <[email protected]> - 6.6.56.1-2 | ||
- Bump release to match kernel | ||
|
||
* Thu Oct 17 2024 CBL-Mariner Servicing Account <[email protected]> - 6.6.56.1-1 | ||
- Auto-upgrade to 6.6.56.1 | ||
|
||
* Thu Oct 03 2024 Rachel Menge <[email protected]> - 6.6.51.1-5 | ||
- Bump release to match kernel | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
%define kernelver %{version}-%{release} | ||
Summary: Signed Unified Kernel Image for %{buildarch} systems | ||
Name: kernel-uki-signed-%{buildarch} | ||
Version: 6.6.51.1 | ||
Release: 6%{?dist} | ||
Version: 6.6.57.1 | ||
Release: 3%{?dist} | ||
License: GPLv2 | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
|
@@ -68,9 +68,30 @@ popd | |
/boot/efi/EFI/Linux/vmlinuz-uki-%{kernelver}.efi | ||
|
||
%changelog | ||
* Thu Oct 03 2024 Suresh Babu Chalamalasetty <[email protected]> - 6.6.51.1-6 | ||
* Wed Nov 06 2024 Suresh Babu Chalamalasetty <[email protected]> - 6.6.57.1-3 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 30 2024 Thien Trung Vuong <[email protected]> - 6.6.57.1-2 | ||
- Bump release to match kernel | ||
|
||
* Tue Oct 29 2024 CBL-Mariner Servicing Account <[email protected]> - 6.6.57.1-1 | ||
- Auto-upgrade to 6.6.57.1 | ||
|
||
* Thu Oct 24 2024 Rachel Menge <[email protected]> - 6.6.56.1-5 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 23 2024 Rachel Menge <[email protected]> - 6.6.56.1-4 | ||
- Bump release to match kernel | ||
|
||
* Wed Oct 23 2024 Rachel Menge <[email protected]> - 6.6.56.1-3 | ||
- Bump release to match kernel | ||
|
||
* Tue Oct 22 2024 Rachel Menge <[email protected]> - 6.6.56.1-2 | ||
- Bump release to match kernel | ||
|
||
* Thu Oct 17 2024 CBL-Mariner Servicing Account <[email protected]> - 6.6.56.1-1 | ||
- Auto-upgrade to 6.6.56.1 | ||
|
||
* Thu Oct 03 2024 Rachel Menge <[email protected]> - 6.6.51.1-5 | ||
- Bump release to match kernel | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Summary: A shared library implementation of IPMI and the basic tools | ||
Name: OpenIPMI | ||
Version: 2.0.33 | ||
Version: 2.0.36 | ||
Release: 1%{?dist} | ||
License: LGPLv2+ AND GPLv2+ OR BSD | ||
Vendor: Microsoft Corporation | ||
Distribution: Azure Linux | ||
Group: System Environment/Base | ||
URL: https://sourceforge.net/projects/openipmi/ | ||
Source0: https://downloads.sourceforge.net/openipmi/OpenIPMI-2.0.33.tar.gz | ||
Source0: https://downloads.sourceforge.net/openipmi/%{name}-%{version}.tar.gz | ||
Source1: openipmi-helper | ||
Source2: ipmi.service | ||
BuildRequires: ncurses-devel | ||
|
@@ -190,6 +190,9 @@ echo "disable ipmi.service" > %{buildroot}%{_libdir}/systemd/system-preset/50-ip | |
%{_mandir}/man5/ipmi_sim_cmd.5.gz | ||
|
||
%changelog | ||
* Mon Oct 14 2024 Suresh Thelkar <[email protected]> - 2.0.36-1 | ||
- Upgrade to 2.0.36 | ||
|
||
* Thu Mar 28 2024 Xiaohong Deng <[email protected]> - 2.0.33-1 | ||
- Upgrade to 2.0.33 | ||
|
||
|
Oops, something went wrong.