Skip to content

Commit 28f6aef

Browse files
committed
Release 0.83.0
Made-with: Cursor
1 parent 41c94df commit 28f6aef

4 files changed

Lines changed: 19 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,29 @@
22

33
## [Unreleased](https://github.com/sparckles/robyn/tree/HEAD)
44

5-
[Full Changelog](https://github.com/sparckles/robyn/compare/v0.26.1...HEAD)
5+
[Full Changelog](https://github.com/sparckles/robyn/compare/v0.83.0...HEAD)
6+
7+
## [v0.83.0](https://github.com/sparckles/robyn/tree/v0.83.0) (2026-04-12)
8+
9+
[Full Changelog](https://github.com/sparckles/robyn/compare/v0.82.1...v0.83.0)
610

711
**Implemented enhancements:**
812

9-
- Allow empty returns on websocket handling [\#1263](https://github.com/sparckles/robyn/issues/1263)
13+
- feat: add in-process TestClient for fast unit testing [\#1344](https://github.com/sparckles/robyn/pull/1344)
14+
- feat: forward WebSocket binary frames to Python message handler [\#1353](https://github.com/sparckles/robyn/pull/1353)
15+
- perf: avoid unnecessary response body clone in IntoPyObject [\#1351](https://github.com/sparckles/robyn/pull/1351)
1016

11-
**Closed issues:**
17+
**Fixed bugs:**
1218

13-
- Payload reached size limit. [\#463](https://github.com/sparckles/robyn/issues/463)
14-
- Proposal to rename `params` with `path_params` [\#457](https://github.com/sparckles/robyn/issues/457)
19+
- fix: replace unused pydantic import with importlib.util.find\_spec [\#1343](https://github.com/sparckles/robyn/pull/1343)
20+
- fix: replace panicking unwrap() calls with proper error handling in WebSocket code [\#1352](https://github.com/sparckles/robyn/pull/1352)
21+
- fix(ci): remove Python 3.14 from linux-cross preview matrix [\#1362](https://github.com/sparckles/robyn/pull/1362)
22+
- fix(website): reduce excessive GitHub API requests from docs site [\#1360](https://github.com/sparckles/robyn/pull/1360)
1523

1624
**Merged pull requests:**
1725

18-
- feat: allow configurable payload sizes [\#465](https://github.com/sparckles/robyn/pull/465) ([sansyrox](https://github.com/sansyrox))
19-
- docs: remove test pypi instructions from pr template [\#462](https://github.com/sparckles/robyn/pull/462) ([sansyrox](https://github.com/sansyrox))
20-
- Rename params with path\_params [\#460](https://github.com/sparckles/robyn/pull/460) ([carlosm27](https://github.com/carlosm27))
21-
- feat: Implement global CORS [\#458](https://github.com/sparckles/robyn/pull/458) ([sansyrox](https://github.com/sansyrox))
26+
- docs: add comprehensive response return styles reference [\#1357](https://github.com/sparckles/robyn/pull/1357)
27+
- docs: add dedicated static files page and fix file-uploads SEO [\#1358](https://github.com/sparckles/robyn/pull/1358)
2228

2329
## [v0.26.1](https://github.com/sparckles/robyn/tree/v0.26.1) (2023-04-05)
2430

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "robyn"
3-
version = "0.82.1"
3+
version = "0.83.0"
44
authors = ["Sanskar Jethi <sansyrox@gmail.com>"]
55
edition = "2021"
66
description = "Robyn is a Super Fast Async Python Web Framework with a Rust runtime."

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "robyn"
7-
version = "0.82.1"
7+
version = "0.83.0"
88
description = "A Super Fast Async Python Web Framework with a Rust runtime."
99
readme = "README.md"
1010
authors = [{ name = "Sanskar Jethi", email = "sansyrox@gmail.com" }]
@@ -69,7 +69,7 @@ test = [
6969

7070
[tool.poetry]
7171
name = "robyn"
72-
version = "0.82.1"
72+
version = "0.83.0"
7373
description = "A Super Fast Async Python Web Framework with a Rust runtime."
7474
authors = ["Sanskar Jethi <sansyrox@gmail.com>"]
7575

0 commit comments

Comments
 (0)