Skip to content

Commit d5b5d55

Browse files
committed
chore-release-v0.1.528-notes
1 parent 7219d8b commit d5b5d55

2 files changed

Lines changed: 51 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.528] - 2026-06-22
9+
10+
### Added
11+
12+
- **RustAPI Cloud CLI** in `cargo-rustapi`: `login` (device-code OAuth), `whoami`, `logout`, and `deploy cloud` for managed hosting uploads.
13+
- New opt-in `cloud` feature on `cargo-rustapi` (enabled by default) for cloud auth/deploy commands.
14+
15+
### Fixed
16+
17+
- **CI**: `cargo test --workspace --no-default-features` no longer fails when cloud commands are disabled — `login` and `deploy cloud` are gated behind the `cloud` feature.
18+
- **CI**: coverage job installs native database client libraries (matching test/lint jobs).
19+
- **MCP e2e**: write-tool test now sets `ToolPolicy::All` when exercising compute routes.
20+
21+
### Changed
22+
23+
- Bumped `opentelemetry` from 0.31 to 0.32.
24+
25+
### Documentation
26+
27+
- README polish for launch visibility (MCP section, quickstart, comparison, roadmap).
28+
829
## [0.1.501] - 2026-06-13
930

1031
### Changed
@@ -513,7 +534,8 @@ This release delivers a **12x performance improvement**, bringing RustAPI from ~
513534
- `extras` meta-feature for common optional features
514535
- `full` feature for all optional features
515536

516-
[Unreleased]: https://github.com/Tuntii/RustAPI/compare/v0.1.397...HEAD
537+
[Unreleased]: https://github.com/Tuntii/RustAPI/compare/v0.1.528...HEAD
538+
[0.1.528]: https://github.com/Tuntii/RustAPI/compare/v0.1.508...v0.1.528
517539
[0.1.397]: https://github.com/Tuntii/RustAPI/compare/v0.1.335...v0.1.397
518540
[0.1.335]: https://github.com/Tuntii/RustAPI/compare/v0.1.300...v0.1.335
519541
[0.1.300]: https://github.com/Tuntii/RustAPI/compare/v0.1.202...v0.1.300

RELEASES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# RustAPI v0.1.528 Release Notes
2+
3+
**Release Date**: June 22, 2026
4+
**Full Changelog**: https://github.com/Tuntii/RustAPI/compare/v0.1.508...v0.1.528
5+
6+
---
7+
8+
## Highlights
9+
10+
v0.1.528 ships **RustAPI Cloud CLI** support and fixes the CI regression introduced by the new cloud commands.
11+
12+
| Feature | Crate | Impact |
13+
|---------|-------|--------|
14+
| `cargo rustapi login` | `cargo-rustapi` | Device-code OAuth login to RustAPI Cloud |
15+
| `cargo rustapi whoami` / `logout` | `cargo-rustapi` | Session status and local credential cleanup |
16+
| `cargo rustapi deploy cloud` | `cargo-rustapi` | Build, package, and upload release binaries to RustAPI Cloud |
17+
| `cloud` feature | `cargo-rustapi` | Opt-in gate for cloud HTTP commands; keeps `--no-default-features` builds working |
18+
| CI coverage fix | `.github/workflows` | Native DB libs installed for tarpaulin/mysql feature builds |
19+
20+
**Cloud login in one line:**
21+
22+
```bash
23+
cargo rustapi login
24+
cargo rustapi deploy cloud
25+
```
26+
27+
---
28+
129
# RustAPI v0.1.501 Release Notes
230

331
**Release Date**: June 13, 2026

0 commit comments

Comments
 (0)