1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-12-17 03:35:45 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
cd30673f29 Update microutils 2025-10-04 09:35:15 +00:00
6 changed files with 8 additions and 20 deletions

View File

@@ -28,7 +28,7 @@ jobs:
env:
GITHUB_USER: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to InmoNexus
- name: Publish to Gitea
continue-on-error: true
run: ./gradlew publishAllPublicationsToInmoNexusRepository
env:

View File

@@ -1,15 +1,5 @@
# TelegramBotAPI changelog
## 29.1.0
* `Version`:
* `Gradle Versions Plugin`: `0.52.0` -> `0.53.0`
## 29.0.1
* `Core`:
* Fix of [#917](https://github.com/InsanusMokrassar/ktgbotapi/issues/917): all `OrderInfo` fields now have defaults nulls
## 29.0.0
**THIS UPDATE CONTAINS ADDING SUPPORT OF [Telegram Bots API 9.2](https://core.telegram.org/bots/api-changelog#august-15-2025)**

View File

@@ -9,4 +9,4 @@ kotlin.incremental.js=true
ksp.useKSP2=false
library_group=dev.inmo
library_version=29.1.0
library_version=29.0.0

View File

@@ -13,10 +13,10 @@ ktor = "3.2.3"
ksp = "2.2.10-2.0.2"
kotlin-poet = "2.2.0"
microutils = "0.26.3"
microutils = "0.26.5"
kslog = "1.5.0"
versions = "0.53.0"
versions = "0.52.0"
github-release-plugin = "2.5.2"
dokka = "2.0.0"

View File

@@ -28487,9 +28487,7 @@ public final class dev/inmo/tgbotapi/types/payments/LabeledPricesSerializer : ko
public final class dev/inmo/tgbotapi/types/payments/OrderInfo {
public static final field Companion Ldev/inmo/tgbotapi/types/payments/OrderInfo$Companion;
public fun <init> ()V
public fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ldev/inmo/tgbotapi/types/payments/ShippingAddress;)V
public synthetic fun <init> (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ldev/inmo/tgbotapi/types/payments/ShippingAddress;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public final fun component1 ()Ljava/lang/String;
public final fun component2 ()Ljava/lang/String;
public final fun component3 ()Ljava/lang/String;

View File

@@ -14,11 +14,11 @@ import kotlinx.serialization.Serializable
@Serializable
data class OrderInfo(
@SerialName(nameField)
val name: String? = null,
val name: String?,
@SerialName(phoneNumberField)
val phoneNumber: String? = null,
val phoneNumber: String?,
@SerialName(emailField)
val email: String? = null,
val email: String?,
@SerialName(shippingAddressField)
val shippingAddress: ShippingAddress? = null
val shippingAddress: ShippingAddress?
)