Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig-checker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "https://raw.githubusercontent.com/editorconfig-checker/editorconfig-checker/v3.11.1/.editorconfig-checker.schema.json",
"Exclude": [
Comment thread
tobiasb-ms marked this conversation as resolved.
"^specs/",
"^docs/terms/",
"^SECURITY\\.md$",
"^assets/NOTICE\\.md$"
]
}
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ A clear and concise description of what you expected to happen.
What actually happened, including any error messages.

**Screenshots or terminal output**
Where helpful, include screenshots or terminal output.
Where helpful, include screenshots or terminal output.

**Logs**
Relevant system or application logs that show the error or unexpected behavior. Paste as text in fenced code blocks rather than screenshots.
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Where would you use this feature? Check all that apply and include details:
- [ ] Other (please describe)

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is.
A clear and concise description of what the problem is.

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/CodeQL/CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ resources:
stages:
- stage: CodeQlAnalysis
jobs:
- template: SDL/CodeQL-CBL-Mariner.yml@CBL-Mariner-Pipelines
- template: SDL/CodeQL-CBL-Mariner.yml@CBL-Mariner-Pipelines
Comment thread
tobiasb-ms marked this conversation as resolved.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ repos:
rev: e8b4e28241a9ae8296ba6e4a491b5da4eda73283 # 3.11.1
hooks:
- id: editorconfig-checker
files: '\.toml$'
- repo: https://github.com/commitizen-tools/commitizen
rev: d910b66e2686a3ef6c3f438dec0f63ba3cf8d7ee # v4.18.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For general questions and feedback, use [GitHub Discussions](https://github.com/
## Production support

> [!NOTE]
> Azure Linux 4.0 isn't generally available (GA) yet.
> Azure Linux 4.0 isn't generally available (GA) yet.

If you're running a GA version of Azure Linux in production on Azure and you hit an outage, regression, or configuration problem, [open an Azure support request](https://learn.microsoft.com/azure/azure-portal/supportability/how-to-create-azure-support-request) through the Azure portal.

Expand Down
2 changes: 1 addition & 1 deletion base/comps/azurelinux-repos/azurelinux-repos.spec
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ for ARCH in $(sed -ne "s/^azurelinux-%{version}-primary://p" %{SOURCE1}); do
"%{buildroot}%{_sysconfdir}/pki/rpm-gpg/RPM-GPG-KEY-azurelinux-%{version}-$ARCH" --test
done
# Ensure some arch key was imported
gpg --no-default-keyring --keyring="$TMPRING" --list-keys | grep -A 2 '^pub\s'
gpg --no-default-keyring --keyring="$TMPRING" --list-keys | grep -A 2 '^pub\s'
rm -f "$TMPRING"

%files
Expand Down
3 changes: 1 addition & 2 deletions base/comps/azurelinux-rpm-config/dist.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# This script outputs the value for the %{dist} tag.
RELEASEFILE=/etc/azurelinux-release

function check_num {
MAINVER=$(cut -d "(" -f 1 < $RELEASEFILE | sed -e "s/[^0-9.]//g" -e "s/$//g" | cut -d "." -f 1)
echo $MAINVER | grep -q '[0-9]' && echo $MAINVER
Expand All @@ -12,7 +12,6 @@ DISTTYPE=azl

[ -n "$DISTTYPE" -a -n "$DISTNUM" ] && DISTTAG=".${DISTTYPE}${DISTNUM}"


case "$1" in
--distnum) echo -n "$DISTNUM" ;;
--disttype) echo -n "$DISTTYPE" ;;
Expand Down
5 changes: 4 additions & 1 deletion base/comps/kernel-headers/kernel-headers.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# AZL: RPM release counter. Bump for rebuilds without a version change. This
# corresponds to upstream Fedora's %{pkgrelease} macro; we use it in the
# %{specrelease} macro below instead of a hardcoded value.
%define azl_pkgrelease 1
%define azl_pkgrelease 4

# define buildid .local
%define specversion 6.18.45
Expand Down Expand Up @@ -119,6 +119,9 @@ done
%{_prefix}/*-linux-gnu/*

%changelog
* Fri Sep 11 2026 Tobias Brick <tobiasb@microsoft.com> - 6.18.45-1.4
- chore(kernel-headers): bump release to stay aligned with kernel spec

* Tue Sep 01 2026 Rachel Menge <rachelmenge@microsoft.com> - 6.18.45-1.1
- feat(kernel): update kernel and kernel-headers to 6.18.45.1

Expand Down
Loading
Loading