-
-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update tailscale to 1.78.1 #2963
update tailscale to 1.78.1 #2963
Conversation
WalkthroughThis pull request updates the Tailscale package in the buildroot-external configuration from version 1.76.6 to 1.78.1. The changes involve modifying two files: Changes
Possibly related PRs
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (2)
✅ Files skipped from review due to trivial changes (1)
🔇 Additional comments (3)buildroot-external/package/tailscale/tailscale.mk (3)Line range hint The source file mappings for each architecture are properly updated with the new version while maintaining the correct Tailscale architecture naming conventions:
The version update matches the PR objective. Let's verify the version's availability and stability across all architectures. ✅ Verification successfulVersion 1.78.1 is verified and available across all architectures The verification confirms:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify Tailscale version 1.78.1 availability and release information
# Check if the version exists for all architectures
for arch in arm arm64 386 amd64; do
echo "Checking $arch architecture..."
curl -s -I "https://pkgs.tailscale.com/stable/tailscale_1.78.1_${arch}.tgz" | head -n 1
done
# Fetch release information from GitHub
gh api repos/tailscale/tailscale/releases/tags/v1.78.1 --jq '.body'
Length of output: 993 Line range hint The installation commands and init script setup remain unchanged. Let's verify there are no new requirements or changes in the package structure for version 1.78.1. ✅ Verification successfulLet me gather more information about the package structure and installation requirements. Let me check the official Tailscale release notes to verify if there are any installation changes or new requirements in version 1.78.1. Package configuration is compatible with version 1.78.1 The package configuration remains valid for version 1.78.1:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for any changes in package structure or requirements
# Search for any version-specific changes in the repository
rg -A 5 "1.78.1" buildroot-external/package/tailscale/
# Check for any changes in installation requirements or new files
if [ -f "buildroot-external/package/tailscale/changelog.md" ]; then
cat buildroot-external/package/tailscale/changelog.md
fi
Length of output: 1309 Script: #!/bin/bash
# Check the contents of the package directory for any additional files or configurations
ls -la buildroot-external/package/tailscale/
# Check the init script to verify its compatibility
cat buildroot-external/package/tailscale/S46tailscaled
# Check if there are any patches or additional configuration files
fd . buildroot-external/package/tailscale/ -e patch -e config
Length of output: 2532 Script: #!/bin/bash
# Check Config.in for any package dependencies or configurations
cat buildroot-external/package/tailscale/Config.in
# Check the package definition for any special handling
cat buildroot-external/package/tailscale/tailscale.mk
Length of output: 1388 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Description
Related Issue
Types of changes
Alternate Designs
Possible Drawbacks
Verification Process
Release Notes
Contributing checklist
Summary by CodeRabbit
New Features
Bug Fixes
Documentation