feat: add SQL Server 2025 support#196
Merged
dhensby merged 1 commit intotediousjs:masterfrom Apr 14, 2026
Merged
Conversation
eb00a60 to
18d771c
Compare
Add support for SQL Server 2025 which uses the SSEI bootstrapper model instead of direct exe/box download URLs. The bootstrapper is downloaded and executed with /Action=Download to fetch the CAB media, which is then extracted using the same flow as the box installer. - Add optional sseiUrl field to VersionConfig interface - Make exeUrl optional to support SSEI-only versions - Add downloadSseiInstaller() function in utils - Update findOrDownloadTool() to handle SSEI path - Add 2025 version entry with SSEI URL - Update latest/default version mapping from 2022 to 2025 - Add comprehensive tests for SSEI installer flow Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18d771c to
d857b36
Compare
|
🎉 This PR is included in version 3.1.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add support for SQL Server 2025 which uses the new SSEI (SQL Server Express Installer) bootstrapper model instead of direct exe/box download URLs.
Changes
New SSEI installer flow
SQL Server 2025 uses a bootstrapper (
SQL2025-SSEI-StdDev.exe) that downloads the actual install media. The flow is:/Action=Download /MediaType=CAB /Quiet /Language=en-USto download media/qs /x:setup(same as existing box installer flow)Code changes
src/versions.ts: Added optionalsseiUrlfield toVersionConfig, madeexeUrloptional, added 2025 version entry (noupdateUrlyet — Microsoft has not published CUs for 2025)src/utils.ts: AddeddownloadSseiInstaller()function, updatedlatestmapping from 2022 → 2025, added guards for optionalexeUrlin existing functions, reordered imports per project conventionssrc/install.ts: UpdatedfindOrDownloadTool()to handle SSEI path (checked before box and exe), consolidated duplicate./versionsimports.github/copilot-instructions.md: Updated architecture docs to reflect SSEI bootstrapper model and 2025 supportdownloadSseiInstallertests (happy path, error cases, debug mode), updated version expectationsBreaking considerations
The
latestversion mapping now points to 2025 instead of 2022. This is intentional — consumers usinglatestexpect it to track the newest available version.