Merge branch 'main' into lg/postgres-win-update

This commit is contained in:
lawrencegripper
2025-01-16 10:51:38 +00:00
7 changed files with 58 additions and 86 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2024 GitHub
Copyright (c) 2025 GitHub
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -7,7 +7,7 @@
# macOS 13
- OS Version: macOS 13.7.2 (22H313)
- Kernel Version: Darwin 22.6.0
- Image Version: 20241216.537
- Image Version: 20250106.592
## Installed Software
@@ -33,7 +33,7 @@
- Bundler 2.5.23
- Carthage 0.40.0
- CocoaPods 1.16.2
- Homebrew 4.4.11
- Homebrew 4.4.14
- NPM 10.8.2
- NuGet 6.3.1.1
- Pip3 24.3.1 (python 3.13)
@@ -44,7 +44,7 @@
### Project Management
- Apache Ant 1.10.15
- Apache Maven 3.9.9
- Gradle 8.11.1
- Gradle 8.12
### Utilities
- 7-Zip 17.05
@@ -56,10 +56,10 @@
- Curl 8.7.1
- Git 2.47.1
- Git LFS 3.6.0
- GitHub CLI 2.63.2
- GitHub CLI 2.64.0
- GNU Tar 1.35 - available by 'gtar' alias
- GNU Wget 1.25.0
- gpg (GnuPG) 2.4.6
- gpg (GnuPG) 2.4.7
- jq 1.7.1
- OpenSSL 1.1.1w 11 Sep 2023
- Packer 1.11.2
@@ -69,17 +69,17 @@
- zstd 1.5.6
### Tools
- AWS CLI 2.22.17
- AWS CLI 2.22.28
- AWS SAM CLI 1.132.0
- AWS Session Manager CLI 1.2.694.0
- Azure CLI 2.67.0
- Azure CLI (azure-devops) 1.0.1
- Bicep CLI 0.32.4
- Cmake 3.31.2
- Cmake 3.31.3
- CodeQL Action Bundle 2.20.0
- Fastlane 2.226.0
- SwiftFormat 0.55.3
- Xcbeautify 2.16.0
- SwiftFormat 0.55.4
- Xcbeautify 2.17.0
- Xcode Command Line Tools 14.3.1.0.1.1683849156
- Xcodes 1.6.0
@@ -88,9 +88,9 @@
### Browsers
- Safari 18.2 (18620.1.16.111.6)
- SafariDriver 18.2 (18620.1.16.111.6)
- Google Chrome 131.0.6778.140
- Google Chrome for Testing 131.0.6778.108
- ChromeDriver 131.0.6778.108
- Google Chrome 131.0.6778.205
- Google Chrome for Testing 131.0.6778.204
- ChromeDriver 131.0.6778.204
- Selenium server 4.27.0
#### Environment variables
@@ -227,7 +227,7 @@
| Android Command Line Tools | 11.0 |
| Android Emulator | 35.2.10 |
| Android SDK Build-tools | 35.0.0<br>34.0.0<br>33.0.2 33.0.3 |
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 1)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3) |
| Android SDK Platform-Tools | 35.0.2 |
| Android Support Repository | 47.0.0 |
| CMake | 3.31.0 |

View File

@@ -19,13 +19,6 @@ if command -v journalctl; then
journalctl --vacuum-time=1s
fi
# remove redundant folders from azcli
if [[ -z "${AZURE_CONFIG_DIR}" ]]; then
rm -rf $AZURE_CONFIG_DIR/logs
rm -rf $AZURE_CONFIG_DIR/commands
rm -rf $AZURE_CONFIG_DIR/telemetry
fi
# delete all .gz and rotated file
find /var/log -type f -regex ".*\.gz$" -delete
find /var/log -type f -regex ".*\.[0-9]$" -delete

View File

@@ -4,40 +4,12 @@
## Desc: Install Azure CLI (az)
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/etc-environment.sh
# AZURE_CONFIG_DIR shell variable defines where the CLI configuration file for managing behavior are stored
# https://learn.microsoft.com/en-us/cli/azure/azure-cli-configuration#cli-configuration-file
# This path SHOULD be different from the installation directory /opt/az/
export AZURE_CONFIG_DIR="/opt/az-config"
mkdir -p $AZURE_CONFIG_DIR
set_etc_environment_variable "AZURE_CONFIG_DIR" "${AZURE_CONFIG_DIR}"
# AZURE_EXTENSION_DIR shell variable defines where modules are installed
# https://docs.microsoft.com/en-us/cli/azure/azure-cli-extensions-overview
# This path SHOULD be different from the installation directory /opt/az/
export AZURE_EXTENSION_DIR="/opt/az-extension"
mkdir -p $AZURE_EXTENSION_DIR
set_etc_environment_variable "AZURE_EXTENSION_DIR" "${AZURE_EXTENSION_DIR}"
# Install Azure CLI (instructions taken from https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)
curl -fsSL https://aka.ms/InstallAzureCLIDeb | sudo bash
echo "azure-cli https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt" >> $HELPER_SCRIPTS/apt-sources.txt
# Remove Azure CLI repository (instructions taken from https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt#uninstall-azure-cli)
rm -f /etc/apt/sources.list.d/azure-cli.sources
echo "Warmup 'az'"
az --help > /dev/null
if [ $? -ne 0 ]; then
echo "Command 'az --help' failed"
exit 1
fi
# Hand over the ownership of the directories and files to the non-root user
chown -R "$SUDO_USER:$SUDO_USER" $AZURE_CONFIG_DIR
chown -R "$SUDO_USER:$SUDO_USER" $AZURE_EXTENSION_DIR
rm -f /etc/apt/sources.list.d/azure-cli.list
rm -f /etc/apt/sources.list.d/azure-cli.list.save
invoke_tests "CLI.Tools" "Azure CLI"

View File

@@ -4,6 +4,14 @@
## Desc: Install Azure DevOps CLI (az devops)
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/etc-environment.sh
# AZURE_EXTENSION_DIR shell variable defines where modules are installed
# https://docs.microsoft.com/en-us/cli/azure/azure-cli-extensions-overview
export AZURE_EXTENSION_DIR=/opt/az/azcliextensions
set_etc_environment_variable "AZURE_EXTENSION_DIR" "${AZURE_EXTENSION_DIR}"
# install azure devops Cli extension
az extension add -n azure-devops

View File

@@ -2,14 +2,13 @@
|-|
| [[Windows ] Breaking change : PHP 8.3.* version will be updated to PHP 8.4.* from January 31,2025](https://github.com/actions/runner-images/issues/11256) |
| [Windows Server 2025 is now available](https://github.com/actions/runner-images/issues/11228) |
| [[Windows] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 27.* from January 17,2025](https://github.com/actions/runner-images/issues/11104) |
| [[Windows] Breaking change : Docker Engine Version 26.* will be updated to Docker Engine Version 27.* from February 07,2025](https://github.com/actions/runner-images/issues/11104) |
| [[Windows & Ubuntu] Breaking change : Maven 3.8.* version will be updated to Maven 3.9.* from January 17,2025](https://github.com/actions/runner-images/issues/11093) |
| [[Windows & Ubuntu] .NET 7.x will be removed from the images on January 17,2025](https://github.com/actions/runner-images/issues/10894) |
| [[Windows & Ubuntu] Python 3.7.x will be removed from January 10 ,2025](https://github.com/actions/runner-images/issues/10893) |
***
# Windows Server 2019
- OS Version: 10.0.17763 Build 6659
- Image Version: 20250105.1.0
- Image Version: 20250113.1.0
## Windows features
- Windows Subsystem for Linux (WSLv1): Enabled
@@ -31,14 +30,14 @@
### Package Management
- Chocolatey 2.4.1
- Composer 2.8.4
- Helm 3.16.3
- Helm 3.16.4
- Miniconda 24.11.1 (pre-installed on the image but not added to PATH)
- NPM 10.8.2
- NuGet 6.12.1.1
- NuGet 6.12.2.1
- pip 24.3.1 (python 3.9)
- Pipx 1.7.1
- RubyGems 3.2.33
- Vcpkg (build from commit 65be70199)
- Vcpkg (build from commit d7112d1a4)
- Yarn 1.22.22
#### Environment variables
@@ -50,7 +49,7 @@
### Project Management
- Ant 1.10.14
- Gradle 8.12
- Maven 3.8.7
- Maven 3.9.9
- sbt 1.10.7
### Tools
@@ -61,17 +60,17 @@
- Bazelisk 1.25.0
- Bicep 0.32.4
- Cabal 3.14.1.1
- CMake 3.31.3
- CodeQL Action Bundle 2.20.0
- CMake 3.31.4
- CodeQL Action Bundle 2.20.1
- Docker 26.1.3
- Docker Compose v2 2.27.1
- Docker-wincred 0.8.2
- ghc 9.12.1
- Git 2.47.1.windows.1
- Git LFS 3.6.0
- Google Cloud CLI 504.0.1
- Google Cloud CLI 505.0.0
- ImageMagick 7.1.1-43
- InnoSetup 6.3.3
- InnoSetup 6.4.0
- jq 1.7.1
- Kind 0.26.0
- Kubectl 1.32.0
@@ -84,7 +83,7 @@
- OpenSSL 1.1.1w
- Packer 1.11.2
- Parcel 2.13.3
- Pulumi 3.144.1
- Pulumi 3.145.0
- R 4.4.2
- Service Fabric SDK 9.1.1436.9590
- Stack 3.3.1
@@ -97,19 +96,19 @@
- zstd 1.5.6
### CLI Tools
- Alibaba Cloud CLI 3.0.244
- AWS CLI 2.22.28
- Alibaba Cloud CLI 3.0.247
- AWS CLI 2.22.33
- AWS SAM CLI 1.132.0
- AWS Session Manager CLI 1.2.694.0
- Azure CLI 2.67.0
- Azure DevOps CLI extension 1.0.1
- Cloud Foundry CLI 8.9.0
- GitHub CLI 2.64.0
- GitHub CLI 2.65.0
### Rust Tools
- Cargo 1.83.0
- Rust 1.83.0
- Rustdoc 1.83.0
- Cargo 1.84.0
- Rust 1.84.0
- Rustdoc 1.84.0
- Rustup 1.27.1
#### Packages
@@ -117,15 +116,15 @@
- cargo-audit 0.21.0
- cargo-outdated 0.16.0
- cbindgen 0.27.0
- Clippy 0.1.83
- Clippy 0.1.84
- Rustfmt 1.8.0
### Browsers and Drivers
- Google Chrome 131.0.6778.205
- Chrome Driver 131.0.6778.204
- Microsoft Edge 131.0.2903.112
- Microsoft Edge Driver 131.0.2903.112
- Mozilla Firefox 133.0.3
- Google Chrome 131.0.6778.265
- Chrome Driver 131.0.6778.264
- Microsoft Edge 131.0.2903.146
- Microsoft Edge Driver 131.0.2903.146
- Mozilla Firefox 134.0
- Gecko Driver 0.35.0
- IE Driver 4.14.0.0
- Selenium server 4.27.0
@@ -178,7 +177,7 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 16.20.2
- 18.20.5
- 20.18.1
- 22.12.0
- 22.13.0
#### Python
- 3.8.10
@@ -497,12 +496,12 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- 10.0.22621.0
### .NET Core Tools
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 7.0.120, 7.0.203, 7.0.317, 7.0.410, 8.0.111, 8.0.206, 8.0.307, 8.0.404, 9.0.101
- .NET Core SDK: 6.0.136, 6.0.203, 6.0.321, 6.0.428, 8.0.111, 8.0.206, 8.0.307, 8.0.404, 9.0.101
- .NET Framework: 4.7.2, 4.8
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 7.0.5, 7.0.20, 8.0.6, 8.0.11, 9.0.0
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 7.0.5, 7.0.20, 8.0.6, 8.0.11, 9.0.0
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 7.0.5, 7.0.20, 8.0.6, 8.0.11, 9.0.0
- nbgv 3.7.112+63bbe780b0
- Microsoft.AspNetCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.11, 9.0.0
- Microsoft.NETCore.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.11, 9.0.0
- Microsoft.WindowsDesktop.App: 6.0.5, 6.0.26, 6.0.36, 8.0.6, 8.0.11, 9.0.0
- nbgv 3.7.115+d31f50f4d1
### PowerShell Tools
- PowerShell 7.4.6
@@ -513,11 +512,11 @@ Note: MSYS2 is pre-installed on image but not added to PATH.
- AzureRM: 2.1.0 (Default), 6.13.1
- Azure (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip
- AzureRM (Cached): 3.8.0.zip, 4.2.1.zip, 5.1.1.zip, 6.7.0.zip
- AWSPowershell: 4.1.729
- AWSPowershell: 4.1.734
- DockerMsftProvider: 1.0.0.8
- MarkdownPS: 1.10
- Microsoft.Graph: 2.25.0
- Pester: 3.4.0, 5.6.1
- Pester: 3.4.0, 5.7.1
- PowerShellGet: 1.0.0.1, 2.2.5
- PSScriptAnalyzer: 1.23.0
- PSWindowsUpdate: 2.2.1.5
@@ -533,7 +532,7 @@ All other versions are saved but not installed.
| Package Name | Version |
| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Android Command Line Tools | 8.0 |
| Android Emulator | 35.2.10 |
| Android Emulator | 35.3.11 |
| Android SDK Build-tools | 35.0.0<br>34.0.0<br>33.0.0 33.0.1 33.0.2 33.0.3<br>32.0.0<br>31.0.0<br>30.0.2 |
| Android SDK Platforms | android-35-ext14 (rev 1)<br>android-35 (rev 2)<br>android-34-ext8 (rev 1)<br>android-34-ext12 (rev 1)<br>android-34-ext11 (rev 1)<br>android-34-ext10 (rev 1)<br>android-34 (rev 3)<br>android-33-ext5 (rev 1)<br>android-33-ext4 (rev 1)<br>android-33 (rev 3)<br>android-32 (rev 1)<br>android-31 (rev 1)<br>android-30 (rev 3) |
| Android SDK Platform-Tools | 35.0.2 |

View File

@@ -247,8 +247,8 @@
"subversion" : "16",
"edition" : "Enterprise",
"channel": "release",
"signature": ["F9A7CF9FBE13BAC767F4781061332DA6E8B4E0EE",
"245D262748012A4FE6CE8BA6C951A4C4AFBC3E5D"
"signature": [
"8F985BE8FD256085C90A95D3C74580511A1DB975"
],
"workloads": [
"Component.Dotfuscator",