summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * YT-22593: Switch to std::string in core/net, client, server/tools, ↵dgolear2026-04-205-18/+17
| | | | | | | | | | | | | | | | | | | | | library/containers YT-22593: Switch to std::string in misc modules (ytprof, tcmalloc, client, core/net, rex, tools) commit_hash:d41b4d0e4cf17f771532f7a3bfb8e21cac19de19
| | * Fix /proc/PID/stat parsing broken by spaces in comm fieldbabenko2026-04-201-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Field 2 of /proc/PID/stat (the process name) is wrapped in parentheses by the kernel and may contain spaces and parentheses. Splitting the whole line by spaces shifted all subsequent field indices when the comm field contained spaces, causing startstack to be read from the wrong position. Fixed by finding the last ')' and splitting only the portion of the line after it. The field index is adjusted accordingly (field 28 = index 25 in the trimmed string starting from field 3). commit_hash:cddde18cff0a89a706dcf78286a8e36972dcb82d
| | * Fix traceparent version field parsed as decimal instead of hexbabenko2026-04-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | The W3C Trace Context spec defines the `traceparent` version field as a two-hex-digit value. Parsing it with base 10 works today since the only defined version is `"00"`, but would silently fail for any future version with a hex digit (e.g. `"0a"`). Changed to base 16. commit_hash:728c9e606ac373eef0f2650f9acb97890efbad04
| | * Fix off-by-one in retransmit counter overflow handling in TTcpConnectionbabenko2026-04-201-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous formula `new + (Max<ui32>() - old)` is off by one on wraparound: when the counter goes from `old=5` to `new=2` after wrapping through zero the true delta is `Max<ui32>() - 5 + 1 + 2`, but the formula gives `Max<ui32>() - 3` instead of `Max<ui32>() - 2`. Replaced with a plain unsigned subtraction via `static_cast<ui32>(new - old)`, which handles overflow correctly by construction: C++ unsigned arithmetic wraps modulo 2³², so the result is always the right delta regardless of whether the counter wrapped. commit_hash:f4aa45770c912ae53907b70cc1130c4822140e9f
| | * YQL-21046: Support window aggregation over YqlSelectvitya-smirnov2026-04-2088-403/+2467
| | | | | | | | | | | | | | | | | | | | | | | | | | | Introduce `YqlAggWin` callable and adapt `PgWindow` as `YqlWindow`. The `YqlAggWin` is similar to `YqlAgg`, but with window reference (name) included. Moved `PgWindowWrapper` to `SqlWindowWrapper`. It gives +6 TPC-DS test cases. Window functions are not yet supported, because they have separate callables and an extra design is required. commit_hash:ccef4463fd994779da21514dc9f6f596c511bbfe
| | * Poison memory in allocation holderssabdenovch2026-04-201-0/+4
| | | | | | | | | | | | commit_hash:0912d7a08b0b2ae26b6298108a9fdd57cabbc77a
| | * Поддержать bytecode Java 25 в компиляции Kotlinpazus2026-04-201-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <section id="quibbler-autodescription"> #### Поддержка bytecode Java 25 в компиляции Kotlin 📝 - 🔄 Обновлена логика определения целевой версии JVM для Kotlin: при использовании JDK 26 теперь устанавливается целевая версия 25, вместо ранее используемой версии 24. - 🛠 Исправлена логика сопоставления версий JDK и целевой версии Kotlin: теперь версия 25 и выше соответствует целевой версии 25, а не 24. - 🧪 Обновлена тестовая конфигурация: изменена версия JDK в тестах с 24 на 25 для соответствия новой логике. <a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"><font size="2">Autodescription by Yandex Code Assistant</font></a> </section> #### Поддержка bytecode Java 25 в компиляции Kotlin 📝 - 🔄 Обновлено указание версии JDK с 24 на 25 для корректной компиляции проектов с использованием Java 25. - 🧠 Настроена поддержка Java 25 в компиляторе Kotlin, чтобы он генерировал байт-код, совместимый с этой версией JDK. - 🔧 Исправлена логика определения целевой версии JVM для Kotlin при использовании JDK 26, теперь она указывает на версию 25. - 🧪 Обновлена версия JDK в тестовой конфигурации с 24 на 25. <a href="https://nda.ya.ru/t/qa0kX64r7DqvtN"><font size="2">Autodescription by Yandex Code Assistant</font></a> commit_hash:ed2d6f419f387b3853f491bf71c6544ff78be5d2
| | * Automatic release build for os_ymake, ymakerobot-ya-builder2026-04-203-10/+20
| | | | | | | | | | | | commit_hash:56e98867af1c78d0bd7c5af59f754a9c4e917820
* | | Merge pull request #38523 from ydb-platform/update-muted-ya_mainYDBot2026-04-211-0/+1
|\ \ \
| * | | Update muted YA file for mainYDBot2026-04-211-0/+1
| | | |
* | | | Do not allow `ALTER INDEX` of migrated index (#38515)Ilnaz Nizametdinov2026-04-212-0/+69
|/ / /
* | | Remove unique index from doc (#38520)Andrey Serebryanskiy2026-04-214-4/+0
| | |
* | | Add activation and delivery time in activation context (#38488)kruall2026-04-217-8/+299
| | |
* | | fixed build (#38517)xyliganSereja2026-04-214-56/+94
| | | | | | | | | Co-authored-by: Matveev Sergei <[email protected]>
* | | Handle migrated tables when syncing index versions (#38498)Ilnaz Nizametdinov2026-04-213-11/+87
| | |
* | | Implement CREATE/ALTER TABLE with METRICS_LEVEL in Scheme Shard (#36780)avpershin2026-04-2113-10/+1061
| | | | | | | | | | | | | | | | | | * Added metrics settings to TTableDescription * Added METRICS_LEVEL support to CREATE TABLE in Scheme Shard * Added METRICS_LEVEL support to ALTER TABLE in Scheme Shard (including RESET) * Added unit tests for CREATE/ALTER TABLE with METRICS_LEVEL
* | | Fix manual reassign target validation (#38216)kruall2026-04-216-7/+440
|/ /
* | [YDB-3307] Streaming UNION ALL (#38230)Alexey Pozdniakov2026-04-216-4535/+4902
| |
* | Merge pull request #38384 from ydb-platform/merge-rightlib-260420-0108YDBot2026-04-21225-1065/+2803
|\ \
| * | remove })Matveev Sergei2026-04-211-1/+0
| | |
| * | fixed clang_formatMatveev Sergei2026-04-211-4/+4
| | |
| * | Fix missing dependenciesArtem Tarasov2026-04-2133-6/+42
| | |
| * | Sync branches 260420-0108YDBot2026-04-20192-1059/+2762
| |\|
| | * YT-26051: Fix tests broken by rXXXXXXshakurov2026-04-201-2/+0
| | | | | | | | | | | | commit_hash:ea9da0911ff0c30da70e9182729232ae587ff9fd
| | * Add noexept to move assignment operatorosidorkin2026-04-201-1/+1
| | | | | | | | | | | | commit_hash:b00e4136e1782f99aca85d3c6c8cbf85ded93056
| | * Fix CachedBackoffMultiplier initialized with BackoffJitter in ↵babenko2026-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TRetryingInvocationTimePolicy `CachedBackoffMultiplier_` was initialized with `options.BackoffJitter` instead of `options.BackoffMultiplier`, causing the cached multiplier to hold the jitter value and the actual multiplier to be effectively ignored until the cache was next updated. commit_hash:f9913ff136536b18ae911a2a668d875481c6afcb
| | * Check result of getsockopt in GetSocketErrorbabenko2026-04-191-1/+1
| | | | | | | | | | | | commit_hash:109a037d794f89d04558540fa492aca56570d0f3
| | * Better Windows compatibility and bugfix for $(process_command_line)babenko2026-04-192-21/+21
| | | | | | | | | | | | commit_hash:a0bd2f6efc7bfaef236e172b5735c00b524da09b
| | * Fix OnUint64Scalar calling OnInt64Scalar in TYsonAttributesStripperbabenko2026-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | `TYsonAttributesStripper::OnUint64Scalar` was incorrectly forwarding to `Output_->OnInt64Scalar` instead of `Output_->OnUint64Scalar`, silently converting unsigned 64-bit values to signed ones. commit_hash:6a607270c5df823791b8b3cf21697ef1e6f91941
| | * Fix bug in GetLastSslError; also cosmeticsbabenko2026-04-192-11/+8
| | | | | | | | | | | | commit_hash:7e54b9ddb9cf1504ee44f859c37c8904dac320e8
| | * Fix MarkedSize overcounting by 1 per regionbabenko2026-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | ++result.MarkedSize += mark->Size parses as (++result.MarkedSize) += mark->Size, which pre-increments MarkedSize by 1 before adding mark->Size. Each successfully madvise'd region inflated the total by an extra byte. Fix: remove the stray ++ so only mark->Size is accumulated. commit_hash:8362bf448fa9c99293cd5d313ad5a998e3f180c4
| | * Fix duplicate condition in CreateUserTicketInjectingChannel YT_VERIFYbabenko2026-04-191-1/+1
| | | | | | | | | | | | commit_hash:ef8742d3476d232a27349a22d2e17340fc900194
| | * Fix closing socket on accept errorbabenko2026-04-191-2/+2
| | | | | | | | | | | | commit_hash:5614998f158a97e0c7d950a6d3939d7f14a2cf2d
| | * Fix mishandled corner case in ReadVarUint32babenko2026-04-192-18/+44
| | | | | | | | | | | | commit_hash:a2da9a8efcf62169b36a6c950e0a7d4550576eb6
| | * Use proper key comparer in TCompactFlatMapbabenko2026-04-191-6/+6
| | | | | | | | | | | | commit_hash:fe925e642ebbb6e9929cf82358873ddb8b754b90
| | * Add noexcept to move constuctors and assignments in yt/cpp/mapreduceosidorkin2026-04-195-9/+9
| | | | | | | | | | | | commit_hash:986e542ff1ba68798aae6017ee09bd0cc4d55200
| | * New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2026-04-191-1/+2
| | | | | | | | | | | | commit_hash:733f01993ec3f29eedc18c7f8a631e7dd1e33dda
| | * Migrate to ktlint version 1.7.1robot-javacom2026-04-182-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Инструкция по обновлению: <https://nda.ya.ru/t/Hg0ktZza7ZpHiP> {% cut "Был выполнен скрипт" %} ``` ya tool ktlint -F kinopoisk/backend/saft/internal/saft-bdui-module/src/main/kotlin/com/yango/saft/bdui/screen/profile/yango/ProfileYangoScreenContentFactory.kt ya tool ktlint -F kinopoisk/backend/saft/internal/saft-bdui-module/src/main/kotlin/com/yango/saft/bdui/screen/paywall/PaywallAnalyticsEventsHelper.kt ya tool ktlint -F mapi/market/external/mapi/core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/UiDivanWithContextCreator.kt ya tool ktlint -F mapi/market/external/mapi/core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/UiEditablePreviewWithContexts.kt ya tool ktlint -F mapi/market/external/mapi/feature/loyalty/common/src/main/PromoHeaderManager.kt ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result/src/main/draftbuilders/SearchContentDraftBuilder.kt ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result/src/main/sections/constructorScrollboxIncut/ConstructorScrollboxIncutDataBinder.kt ya tool ktlint -F mapi/market/external/mapi/feature/search/search-result-api/src/main/scaffold/PromoHeaderManagerMapi2.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/scaffold/bottomView/mapper/CartScaffoldBottomViewMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemSnippetOnlyMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/promoHub/render/CartPromoHubRenderer.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/CartItemsSectionMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/promoHub/CartPromoHubContextMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemUnavailableSuggestMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/ConstructorCartItemMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/cartitems/mapper/DiscoveryDivkitCartSnippetMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/cart/src/main/sections/foodtech/mapper/CartFoodtechEdaSnippetMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/changePayment/src/main/state/ChangePaymentPurchaseButtonActionMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/fintechCommon/src/main/compactBnpl/mapper/CheckoutSummaryCompactBnplPlansMapper.kt ya tool ktlint -F mapi/market/pokupka/mapi/features/summary/src/main/sections/deliveryConsoles/rendering/console/parcel/liftUp/DeliveryConsoleParcelLiftUpRenderer.kt ya tool ktlint -F mapi/market/product-card/mapi/modules/sections/product-card-madv-divkit-incut-section/src/main/v1/ProductCardMadvDivkitIncutSectionDataBinder.kt ya tool ktlint -F mapi/market/product-card/mapi/modules/sections/product-card-madv-divkit-incut-section/src/main/MadvIncutSnippetWidthMapper.kt ya tool ktlint -F mapi/market/search/mapi/features/catalog/src/main/root/sections/categoriesShortcutSection/CategoryShortcutNavigationActionFatory.kt ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/ComparisonItem.kt ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/multiSection/ComparisonProductGallery.kt ya tool ktlint -F mapi/market/search/mapi/features/comparison/src/main/ui/multiSection/ComparisonItemGallery.kt ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/actions/OpenIDFAIfNeededAction.kt ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/sections/viFeedbox/ViFeedboxTemplateBuilder.kt ya tool ktlint -F mapi/market/search/mapi/features/main/src/main/scaffold/MainDocumentScaffoldFactory.kt ya tool ktlint -F mapi/market/ugc-mj/features/profile/profile-common/src/main/section/agitation/mapper/ReviewThanksAgitationsMapper.kt ya tool ktlint -F mapi/market/ugc-mj/features/public-profile/public-profile-main/src/main/scaffold/UgcPublicProfileScaffoldUiRenderer.kt ya tool ktlint -F mapi/market/ugc-mj/features/public-profile/public-profile-main/src/main/section/feed/mapper/UgcPublicProfileReviewContentMapper.kt ya tool ktlint -F mapi/market/ugc-mj/features/sins-reviews/src/main/section/feed/mapper/SinsReviewContentMapper.kt ya tool ktlint -F mapi/market/wishlist/features/sharePopup/src/main/sections/share/mapper/SharePopupSectionsMapper.kt ya tool ktlint -F market/mapi-shared/business-engine/business-utils/src/main/kotlin/ru/yandex/market/mapi/business/ui/divkit/switch/Switch.kt ya tool ktlint -F market/mapi-shared/feature/baobab/baobab-common/src/main/ru/yandex/market/mapi/baobab/assembler/AssembledNodeData.kt ya tool ktlint -F market/mapi-shared/feature/common/popup-actions/src/main/kotlin/ru/yandex/market/mapi/feature/common/popupActions/ShowUiOnboardingAction.kt ya tool ktlint -F market/mapi-shared/feature/common/popup-actions/src/main/kotlin/ru/yandex/market/mapi/feature/common/popupActions/ShowUiPopupAction.kt ya tool ktlint -F market/mapi-shared/feature/deeplinks/deeplink-routehandler-utils/src/main/kotlin/SearchDeeplinkUtils.kt ya tool ktlint -F market/mapi-shared/feature/fintech/payment/src/main/kotlin/backflow/processing/PaymentFlowActionFactory.kt ya tool ktlint -F market/mapi-shared/feature/loyalty/fomo-api/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/fomo/api/utils/FomoFeedbackTypeMapper.kt ya tool ktlint -F market/mapi-shared/feature/loyalty/sins/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/sins/SiSPromoContextMapperImpl.kt ya tool ktlint -F market/mapi-shared/feature/loyalty/sins-api/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/sins/api/utils/ShopInShopContextUtils.kt ya tool ktlint -F market/mapi-shared/feature/loyalty/universal-promo-badge/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/universalpromobadge/renderer/box/TimerBoxRenderer.kt ya tool ktlint -F market/mapi-shared/feature/loyalty/universal-promo-badge/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/universalpromobadge/renderer/box/BoxMargins.kt ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-details-api/src/main/kotlin/ru/yandex/market/mapi/feature/offline/order/details/sections/items/mapper/OrderDetailsItemButtonsMapper.kt ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/orders/mappers/apphost/OrderItemMapper.kt ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/orders/mappers/apphost/OrderItemOffersMapper.kt ya tool ktlint -F market/mapi-shared/feature/offline-ux/order-list-sections/src/main/kotlin/ru/yandex/market/mapi/feature/offline/tabs/sections/list/OrderItemListRenderer.kt ya tool ktlint -F market/mapi-shared/feature/offline-ux/scrollbox/src/main/kotlin/ru/yandex/market/mapi/feature/offline/scrollbox/snippets/order/mapper/OrderSnippetAdditionalActionMapper.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/cart-api/src/main/kotlin/ru/yandex/market/mapi/feature/cart/api/mapper/base/BaseAgitationWidgetMapper.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/cart-button-legacy/src/main/mappers/CartParamsBuilder.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/referral-payment-api/src/main/kotlin/blenderSearchHeader/ReferralPaymentUserStatsEntryPointMapper.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/listAddItem/ui/onboarding/WishlistListOnboardingRenderer.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/brandsAndShops/list/divkit/WishlistBrandsAndShopsItemRedesignRenderer.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist-api/src/main/kotlin/ru/yandex/market/mapi/feature/wishlistApi/sections/shops/WishlistBrandsAndShopsEntryPointRenderer.kt ya tool ktlint -F market/mapi-shared/feature/online-ux/wishlist-button/src/main/kotlin/ru/yandex/market/mapi/feature/wishlist/button/state/WishParamsBuilder.kt ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/navigationaction/ProductNavigationActionContext.kt ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/navigationaction/ProductNavigationActionFactory.kt ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/utils/CreateProductQuery.kt ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-api/src/main/utils/ProductRendererUtils.kt ya tool ktlint -F market/mapi-shared/feature/product-card/product-card-cart-feature/src/main/kotlin/ru/yandex/market/mapi/productcard/cart/CartParametersMapper.kt ya tool ktlint -F market/mapi-shared/feature/product-list/items-list/src/main/kotlin/ru/yandex/mapi/feature/mappers/ItemListSnippetContextMapper.kt ya tool ktlint -F market/mapi-shared/feature/shopinshop/sis-chat/src/main/ru/yandex/market/mapi/shopinshop/sis/chat/popup/SupplierChatsPopupContextMapper.kt ya tool ktlint -F market/mapi-shared/feature/shopinshop/widgets/src/main/ru/yandex/market/mapi/shopinshop/widgets/mediacarousel/MediaCarouselMadvItemRenderer.kt ya tool ktlint -F market/mapi-shared/feature/shopinshop/widgets/src/main/ru/yandex/market/mapi/shopinshop/widgets/promoBanner/PromoBannerContextMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/leave-review/src/main/kotlin/ru/yandex/market/mapi/ugc/state/LeaveReviewSendScreenState.kt ya tool ktlint -F market/mapi-shared/feature/ugc/review-agitation-snippet/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/agitation/snippet/render/ReviewAgitationSnippetRenderer.kt ya tool ktlint -F market/mapi-shared/feature/ugc/review-agitation-snippet/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/agitation/snippet/render/ReviewAgitationWideSnippetRenderer.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/ReviewsSummaryMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/ProductUGCContentMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews/src/main/kotlin/ru/yandex/market/mapi/reviews/ugcContent/PhotoVideoGalleryMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/ProductReviewsMainContentReviewItemInteractionsRenderer.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentItemsMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/reviews-main-content/src/main/kotlin/ru/yandex/market/mapi/ugc/reviews/main/content/specs/ProductReviewsMainContentAsPostMapper.kt ya tool ktlint -F market/mapi-shared/feature/ugc/ugc-transition-utils/src/main/kotlin/ru/yandex/market/mapi/feature/ugc/transition/utils/PersMasterTransitionFactory.kt ya tool ktlint -F market/mapi-shared/uikit/core/integration/src/main/kotlin/ru/yandex/market/ui/divkit/uikit/integration/core/UiDivanCreator.kt ya tool ktlint -F market/mapi/business-core/uikit-integration/src/main/kotlin/ru/yandex/market/mapi/ui/divkit/uikit/integration/ThemedExpressionStringFromContext.kt ya tool ktlint -F market/mapi/feature/advertising-inventory/hero/src/main/kotlin/ru/yandex/market/mapi/feature/advertisinginventory/hero/HeroBannerSnippetBuilder.kt ya tool ktlint -F market/mapi/feature/designdemo/src/main/kotlin/ru/yandex/market/mapi/section/designdemo/workingchecks/touchfeedback/DesignDemoTouchFeedbackActionsRenderer.kt ya tool ktlint -F market/mapi/feature/designdemo/src/main/kotlin/ru/yandex/market/mapi/section/designdemo/workingchecks/common/DesignDemoControlScreenHelpers.kt ya tool ktlint -F market/mapi/feature/discovery/discovery-filters/src/main/kotlin/ru/yandex/market/mapi/search/filters/utils/FilterListUtils.kt ya tool ktlint -F market/mapi/feature/discovery/discovery-filters/src/main/kotlin/ru/yandex/market/mapi/search/filters/divkit/FastFiltersRenderer.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/background/FeedboxTriggerSnippetAppearanceManager.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/config/FeedboxConfigCollector.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/FeedboxPromoTriggerMapper.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/FeedBoxDivkitSnippetsRearr.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/renderer/promotrigger/FeedboxProductBlockRenderer.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/favouriteCategory/FeedBoxFavouriteCategoryMapper.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/promo/FeedboxPromoBlockExtensions.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/agitation/FeedBoxReviewAgitationSnippetMapper.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox/src/main/kotlin/ru/yandex/market/mapi/feedbox/mapper/FeedBoxDivKitProductSnippetMapper.kt ya tool ktlint -F market/mapi/feature/discovery/feedbox-legacy/src/main/kotlin/ru/yandex/market/mapi/feedboxlegacy/FeedboxAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/lavka/src/main/kotlin/ru/yandex/market/mapi/lavka/LavkaProductSnippetAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/product-snippets/src/main/kotlin/ru/yandex/market/mapi/feature/discovery/mapper/DiscoveryDivkitProductSnippetBaseMapper.kt ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/madvIncuts/SearchResultMadvIncutsSnippetRenderer.kt ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/request/suggest/renderer/SearchRequestSuggestSectionTemplate.kt ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/search/request/RedirectUrlBuilder.kt ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/search/request/utils/RedirectControllerIUtils.kt ya tool ktlint -F market/mapi/feature/discovery/search/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/request/suggest/SearchRequestSuggestContextMapper.kt ya tool ktlint -F market/mapi/feature/discovery/search-api/src/main/kotlin/ru/yandex/market/mapi/search/utils/FilterMapper.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/OffersScrollboxAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/blender/superhypeincut/BlenderSearchSuperHypeIncutAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/result/blender/BlenderScrollboxConstructorAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/ShopSalesOffersScrollboxAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/SalesOffersScrollboxAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-blender-scrollbox-constructor/src/main/kotlin/ru/yandex/market/mapi/section/discovery/search/shopinshop/TabbedOffersScrollboxAssembler.kt ya tool ktlint -F market/mapi/feature/discovery/search-result-screen/src/main/kotlin/ru/yandex/market/mapi/controller/screen/search/blender/BlenderSearchResultScaffoldBuilder.kt ya tool ktlint -F market/mapi/feature/discovery/search-result-screen/src/main/kotlin/ru/yandex/market/mapi/controller/screen/search/blender/BlenderSearchScreenBuilder.kt ya tool ktlint -F market/mapi/feature/discovery/smart-camera/src/main/kotlin/ru/yandex/market/mapi/smartsearch/utils/SmartSearchNoResultStubContextFactory.kt ya tool ktlint -F market/mapi/feature/loyalty/fortunewheel/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/fortunewheel/sections/fortunewheel/mapper/FortuneWheelNavigationMapper.kt ya tool ktlint -F market/mapi/feature/loyalty/live-translation/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/livetranslation/section/LiveTranslationStickyRenderer.kt ya tool ktlint -F market/mapi/feature/loyalty/live-translation/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/livetranslation/section/LiveTranslationStickiesRenderer.kt ya tool ktlint -F market/mapi/feature/loyalty/weekly-promo-header/src/main/kotlin/ru/yandex/market/mapi/feature/loyalty/promoheader/PromoHeaderManager.kt ya tool ktlint -F market/mapi/feature/offline/navigation-legacy/src/main/kotlin/ru/yandex/market/mapi/feature/offline/navigation/OfflineLegacyNavigationActionBuilder.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/errors/CheckoutErrorMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/mapper/PaymentOptionSectionMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/local/mapper/LocalConsolesSectionMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOptionPoup/mapper/PaymentOptionsPopupMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/divkit/PaymentOptionsSectionRenderer.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/contacts/editContact/mapper/EditContactPopupMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/purchase/PurchasePostProcessActionFactory.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/common/action/ShowDeliveryPointsAction.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/mapper/actions/CreateConsoleAgitationAction.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOption/divkit/PaymentOptionRenderer.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/common/mapper/ConsoleTimeOptionMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/console/common/mapper/ConsoleDateOptionMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/changeRepayOptionConfirmPopup/divkit/RepayOptionConfirmFactory.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/errors/barrier/divkit/BarrierRenderer.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/purchaseButton/utils/PurchaseButtonActionTypeMapper.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/state/CheckoutSummaryScreenState.kt ya tool ktlint -F market/mapi/feature/online-ux/checkout/summary/src/main/kotlin/ru/yandex/market/mapi/checkout/summary/section/paymentOptionPoup/ui/PaymentOptionPopupTemplate.kt ya tool ktlint -F market/mapi/feature/online-ux/delivery-point/delivery-points-list/src/main/kotlin/ru/yandex/market/mapi/feature/deliverypoint/deliverypointslist/ui/DeliveryPointTemplates.kt ya tool ktlint -F market/mapi/feature/product-bnpl/src/main/kotlin/ru/yandex/market/mapi/product/bnpl/mapper/BnplSelectionPlanMapper.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-fastflow-popup/src/main/kotlin/ru/yandex/market/mapi/product/fastflow/FastBuyFlowPostProcessor.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-promo/src/main/kotlin/ru/yandex/market/mapi/product/promohighlight/detailsBlock/mapper/HighlightedPromocodeMapper.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxMapper.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxRemixMapper.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox/src/main/kotlin/ru/yandex/market/mapi/product/mapper/DivKitSnippetsScrollBoxMapperUtils.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox-assemblers/src/main/kotlin/ru/yandex/market/mapi/product/assemblers/ProductsScrollboxAssemblerRedefining.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-scrollbox-assemblers/src/main/kotlin/ru/yandex/market/mapi/product/snippetassemblers/ProductSnippetDJRecommendAssembler.kt ya tool ktlint -F market/mapi/feature/product-card/product-card-utils/src/main/kotlin/ru/yandex/market/mapi/product/utils/ProductScrollboxAssemblerUtils.kt ya tool ktlint -F market/mapi/feature/promo/profile-promocodes/src/main/kotlin/ru/yandex/market/mapi/section/promo/profilepromocodes/divkit/utils/ProfilePromocodesNavigationActionUtils.kt ya tool ktlint -F market/mapi/feature/socecom/video/src/main/kotlin/ru/yandex/market/mapi/socecomvideo/mapper/SocialVideoFeedItemMapper.kt ya tool ktlint -F taxi/bdui/libs/components/dsl/src/main/kotlin/ru/yandex/go/bdui/components/dsl/trigger/BaseTriggerConverter.kt ya tool ktlint -F taxi/bdui/libs/components/dsl/src/main/kotlin/ru/yandex/go/bdui/components/dsl/timer/BaseTimerConverter.kt ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_timer/BaseTimerConverter.kt ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_actions/visibility_action/BaseVisibilityActionConverter.kt ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_actions/action/BaseActionConverter.kt ya tool ktlint -F taxi/bdui/libs/go-bdui-utils/src/main/kotlin/ru/yandex/go/wrapped_divkit_trigger/BaseTriggerConverter.kt ya tool ktlint -F taxi/bdui/libs/go-buysell-shared/src/main/kotlin/ru/yandex/go/buysell/shared/utils/state/StateReaderUtils.kt ya tool ktlint -F taxi/bdui/libs/v3/go-bdui-feed/src/main/kotlin/ru/yandex/go/bdui/feed/snippets/media_adv/common/renderers/MediaAdvCommonRenderer.kt ya tool ktlint -F taxi/bdui/libs/v3/go-bdui-uikit/src/main/kotlin/ru/yandex/go/uikit/components/button/data/style/ButtonStyleDefault.kt ya tool ktlint -F bdui/backend/tovarisch/v2/jason-statham/src/main/kotlin/ru/yandex/tovarisch/extension/jasonstatham/extensions/ScenarioSyntaxExtension.kt ``` {% endcut %} commit_hash:d1630300baefefe03a374d75fd789255131c298d
| | * Introduce rtos based platforms defines for rtos platformsflarembo2026-04-181-0/+3
| | | | | | | | | | | | commit_hash:c975063237fb34a806e97350909d01bafb549bd9
| | * Replace deprecated `Py_UNICODE` with `wchar_t` for Python 3.13 compatibilityshadchin2026-04-182-6/+1
| | | | | | | | | | | | | | | Since `Py_UNICODE` is just a typedef for `wchar_t` in Python 3, replace it with `wchar_t` in Cython typedefs, C++ headers, and stringlib macros. Python 2 code paths retain `Py_UNICODE` via #if guards. commit_hash:7bed62e2231a8fde3adc6317e8a41dd060895e24
| | * Remove some naming artifacts from migration timessvidyuk2026-04-183-23/+23
| | | | | | | | | | | | commit_hash:da4e68326b1c7d58d0ae51eef23764284cbb302d
| | * Backport grpc fix ("tls" channel cred in bootstrap)vlad-serikov2026-04-182-0/+40
| | | | | | | | | | | | commit_hash:00d392bf0718d86fe821c9c86a8a17ef6d4d81a7
| | * 'inline' is redundant hereakhropov2026-04-181-4/+4
| | | | | | | | | | | | commit_hash:ad96dd850bafe1a39637e0298d41f7a7ef7d9549
| | * Increase default error attributes string truncation limit to 32Kbabenko2026-04-181-2/+4
| | | | | | | | | | | | commit_hash:da3595c17e930ef69088c3164f42adc50d57f283
| | * Update contrib/libs/lzma to 5.8.3robot-contrib2026-04-1810-17/+97
| | | | | | | | | | | | commit_hash:059de499f6bcffea959a0edaa732671627225d9a
| | * fixed clang formatxyligansereja2026-04-171-7/+5
| | | | | | | | | | | | commit_hash:94317d86597690967404beb88d2651ab6f28864f
| | * nots/builder: исключить из инпутов output.tar, output.tar.uuidbaymer2026-04-172-0/+6
| | | | | | | | | | | | commit_hash:cbc6cbf919a603321e0644ff02326dc4cd2fcfc1
| | * builder: Стабильность workspace_node_modules.tar при ↵baymer2026-04-171-0/+4
| | | | | | | | | | | | | | | | | | неизменных зависимостях commit_hash:140e997f13a190a260effe490921efaaa6f9cec8
| | * add freertos osiniklyaev2026-04-173-5/+5
| | | | | | | | | | | | commit_hash:f9204e2b0489cccf84edf2b3e5a0c4e4b6398cde
| | * Intermediate changesrobot-piglet2026-04-171-4/+0
| | | | | | | | | | | | commit_hash:085a198df25a6f54be316eeb35bf04c557f12540