Skip to content

Releases: RAprogramm/telegram-webapp-sdk

0.4.0

05 Mar 01:48

Choose a tag to compare

What's Changed

  • deps(cargo)(deps): bump the cargo-minor-patch group across 1 directory with 2 updates by @dependabot[bot] in #159
  • deps(ci): bump actions/checkout from 5 to 6 by @dependabot[bot] in #158
  • deps(cargo)(deps): bump reqwest from 0.12.24 to 0.12.25 in the cargo-minor-patch group across 1 directory by @dependabot[bot] in #160
  • refactor: auto-parse MSRV badge from Cargo.toml by @RAprogramm in #162
  • deps(cargo)(deps): bump the cargo-minor-patch group across 1 directory with 3 updates by @dependabot[bot] in #163
  • deps(cargo)(deps): bump the cargo-minor-patch group across 1 directory with 2 updates by @dependabot[bot] in #164
  • deps(cargo)(deps): bump serde_json from 1.0.147 to 1.0.148 in the cargo-minor-patch group across 1 directory by @dependabot[bot] in #165
  • deps(cargo)(deps): bump the cargo-minor-patch group across 1 directory with 2 updates by @dependabot[bot] in #166
  • deps(cargo)(deps): bump wasm-bindgen-test from 0.3.56 to 0.3.58 in the cargo-minor-patch group across 1 directory by @dependabot[bot] in #167
  • deps(cargo)(deps): bump regex from 1.12.2 to 1.12.3 in the cargo-minor-patch group across 1 directory by @dependabot[bot] in #169
  • deps(cargo)(deps): bump bytes from 1.11.0 to 1.11.1 by @dependabot[bot] in #168

Full Changelog: v0.3.0...0.4.0

v0.3.1

15 Dec 04:13

Choose a tag to compare

[0.3.1] - 2025-12-15

Changed

  • docs: add Wiki badge to README

v0.3.0

04 Nov 01:30

Choose a tag to compare

[0.3.0] - 2025-11-04

Changed

  • refactor: remove server-side validation from SDK (#156)

Fixed

  • fix: improve git-cliff configuration for better changelog formatting

v0.2.18

29 Oct 02:08

Choose a tag to compare

[0.2.18] - 2025-10-29

Added

  • feat: improve initialization API with environment detection and typed errors (#152)

v0.2.17

29 Oct 01:44

Choose a tag to compare

[0.2.17] - 2025-10-29

Changed

  • Docs: add issue references to v0.2.16 changelog

Fixed

  • Fix: suppress unused variable warnings in debug-only logger (#143)

v0.2.16

25 Oct 06:57

Choose a tag to compare

Fixed

  • Made use_telegram_context Yew hook reactive to properly handle cases when
    the Telegram SDK initializes after component mount. The hook now uses
    requestAnimationFrame to efficiently poll for context availability and
    automatically updates when the context becomes ready (#141, #142)

Full Changelog: v0.2.15...v0.2.16

v0.2.15

06 Oct 00:01
0bab8f0

Choose a tag to compare

Fixed

  • Restored compatibility with the latest nightly toolchains by probing support
    for doc_cfg and doc_auto_cfg, ensuring docs.rs builds succeed after the
    upstream removal of doc_auto_cfg.

Changed

  • Emitted explicit cargo:rustc-check-cfg declarations for both documentation
    capability flags so that future compilers surface helpful diagnostics when
    the build script conditions fall out of sync.

v0.2.14

03 Oct 04:49
632f89b

Choose a tag to compare

Fixed

  • Guarded the nightly-only doc_auto_cfg attribute behind a compiler channel
    probe so documentation builds on docs.rs no longer fail on stable toolchains.

Changed

  • Added a lightweight build-time check using version_check to conditionally
    enable nightly-only documentation features without impacting stable
    consumers.

v0.2.13

01 Oct 10:49
d1840f0

Choose a tag to compare

Changed

  • Upgraded to masterror 0.24 across the workspace, ensuring the SDK and demo
    benefit from the latest error handling improvements.

v0.2.10

22 Sep 07:01
cbce4e3

Choose a tag to compare

Added

  • Propagated query_id from initData into TelegramInitData and exposed it
    through the global context, including a wasm integration test that verifies
    the parsed value.

Changed

  • Extended the mock environment and documentation to surface the optional
    query_id parameter, ensuring examples highlight how to handle inline query
    responses.