phase(01-06): bump external SDKs (TMDbLib/Telegram.Bot/Google.Apis/RestSharp) for net10#320
Merged
Merged
Conversation
…stSharp) for net10 - TMDbLib 2.2.0 → 3.0.0 (major); fix nullable API surface in TmdbService Mappers + TmdbClient - Telegram.Bot 22.2.0 → 22.10.0.1; IReplyMarkup → ReplyMarkup, IUpdateReceiver removed: simplify BotPolling to use ReceiveAsync directly; stub out obsolete receiver classes - Google.Apis/Auth/Core 1.68.0 → 1.74.0; Google.Apis.Drive.v3 1.68.0.3627 → 1.74.0.4135 - RestSharp 112.1.0 → 114.0.0 - OmdbApiNet 1.3.0, SteamWebApiLib 1.1.0, HttpToSocks5Proxy 1.4.0 unchanged (D-09 forward-compat) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Category (d) per Phase 1 plan: bump external rating-API and integration SDKs to latest stable versions compatible with net10.
closes #300
closes #301
Bumps applied
No-ops (D-09 forward-compat — no net10-stable release)
Code adjustments for breaking API changes
TMDbLib 2.2.0 → 3.0.0
SearchMovieproperties (Title,Overview,GenreIds,PosterPath) are now nullable;SearchContainer.Resultsis nowList<T>?;TMDbConfig.Imagesis now nullable;TMDbClient.DefaultLanguageandDefaultCountryare nowstring?.Libraries/ExternalServices/ProjectV.TmdbService/Mappers/DataMapperTmdbMovie.cs: null-coalesce nullable movie fields (?? string.Empty,?? [])Libraries/ExternalServices/ProjectV.TmdbService/Mappers/DataMapperTmdbConfig.cs: null-safe access toImagesviaimages?.BaseUrl ?? string.EmptyLibraries/ExternalServices/ProjectV.TmdbService/Mappers/DataMapperTmdbContainer.cs: null-coalesceResults ?? []before LINQ SelectLibraries/ExternalServices/ProjectV.TmdbService/TmdbClient.cs: null-coalesceDefaultLanguage,DefaultCountry,ApiKey; declareSearchMovieAsyncresult asSearchContainer<SearchMovie>?and guard null before transformTelegram.Bot 22.2.0 → 22.10.0.1
IReplyMarkup(interface) →ReplyMarkup(abstract class).IUpdateReceiver,QueuedUpdateReceiver,BlockingUpdateReceiver,DefaultUpdateReceiverall removed from the library.WebServices/ProjectV.TelegramBotWebService/v1/Domain/Bot/IBotService.cs:IReplyMarkup?→ReplyMarkup?inSendMessageAsyncWebServices/ProjectV.TelegramBotWebService/v1/Domain/Bot/BotService.cs: same parameter type fixWebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/BotPolling.cs: removedIBotPollingReceiverFactorydependency; now buildsReceiverOptionsinline and callsBotClient.ReceiveAsync(updateHandler, receiverOptions, cancellationToken)directlyWebServices/ProjectV.TelegramBotWebService/Startup.cs: removedIBotPollingReceiverFactoryregistration (no longer used)WebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/Factories/IBotPollingReceiverFactory.cs: changed return type toReceiverOptions(dead code — kept for potential future use)WebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/Factories/BotPollingReceiverFactory.cs: updated to implement new interface; buildsReceiverOptionsfromBotPollingOptionsWebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/Receivers/AsyncUpdateReceiverBase.cs: removedIUpdateReceiverinterface (gone from library); kept as abstract baseWebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/Receivers/AsyncBlockingUpdateReceiver.cs: stubbed (underlyingBlockingUpdateReceiverremoved; class kept for source compat)WebServices/ProjectV.TelegramBotWebService/v1/Domain/Polling/Receivers/AsyncQueuedUpdateReceiver.cs: stubbed (underlyingQueuedUpdateReceiverremoved; class kept for source compat)Google.Apis 1.68 → 1.74 / RestSharp 112 → 114
No code changes required — source-compatible within the bumped range.
credentials.jsonCopyToOutputDirectory=PreserveNewestdirective verified intact inProjectV.Core.csprojandProjectV.ProcessingWebService.csproj.Test plan
dotnet restore ProjectV.sln— clean (no NU1903/NU1605/NU1510)dotnet build ProjectV.sln -c Release— 0 errors, 0 warningsdotnet test ProjectV.sln -c Release --no-build— Passed 14, Skipped 1dotnet test Tests/ProjectV.ContentDirectories.Tests/... -c Release -p:Platform=x64 --no-build— Passed 9🤖 Generated with Claude Code