Skip to content

Releases: vortemain/vorte-framework

Release v1.2.5

Choose a tag to compare

@github-actions github-actions released this 15 Jun 11:54

Full Changelog: v1.2.4...v1.2.5

Release v1.2.4

Choose a tag to compare

@github-actions github-actions released this 15 Jun 11:00

Full Changelog: v1.2.3...v1.2.4

Release v1.2.3

Choose a tag to compare

@github-actions github-actions released this 15 Jun 10:36

Full Changelog: v1.2.2...v1.2.3

Release v1.2.2

Choose a tag to compare

@github-actions github-actions released this 15 Jun 10:09

Full Changelog: v1.2.1...v1.2.2

Release v1.2.1

Choose a tag to compare

@github-actions github-actions released this 15 Jun 09:24

Full Changelog: v1.2.0...v1.2.1

Release v1.2.0

Choose a tag to compare

@github-actions github-actions released this 15 Jun 07:49

Full Changelog: v1.1.3...v1.2.0

Release v1.1.3

Choose a tag to compare

@github-actions github-actions released this 09 Jun 06:47

Full Changelog: v1.1.2...v1.1.3

Release v1.1.2

Choose a tag to compare

@github-actions github-actions released this 09 Jun 06:37

Full Changelog: v1.1.1...v1.1.2

v1.0.8 - Runtime Kernel Evolution

Choose a tag to compare

@kibuchi254 kibuchi254 released this 20 May 19:14

Vorte Framework v1.0.8

What's New

This release evolves the Vorte runtime kernel with significant performance improvements and new capabilities.

Kernel Evolution

  • Bucketed Memory Pools - Efficient memory allocation with 4-bucket buffer pool (4KB, 16KB, 64KB, 256KB)
  • Zero-Copy Buffer Protocol - VorteBuffer provides zero-copy memory views for serialization
  • Structured Concurrency - VorteTaskGroup with PyCancellationToken bridges Python asyncio and Rust/Tokio cancellation
  • Prometheus Metrics - Native metrics endpoint at /_vorte/metrics with ring buffer storage (10,000 entries)
  • Compiled DAG Execution Graph - PyExecutionGraph for request pipeline optimization with short-circuit support

Multi-Format Serialization

  • JSON, MessagePack, CBOR, and Protobuf serialization via FastSerializer
  • Automatic backend selection: Native Rust > orjson > stdlib json
  • Enterprise type support: datetime, Decimal, UUID, custom to_dict() models

Documentation

This release includes comprehensive developer documentation:

  • README.md - Complete framework overview with Table of Contents
  • docs/ - 35+ detailed guides covering all modules, core concepts, and infrastructure
  • CHANGELOG.md - Version history
  • CONTRIBUTING.md - Contribution guidelines

Installation

pip install vorte

Quick Start

vorte new my-awesome-app
cd my-awesome-app
vorte serve --watch