rest-server: bump to 0.8.0-1

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2024-09-04 15:33:46 +02:00
parent 98ed1bb28b
commit ddbada0668
4 changed files with 28 additions and 16 deletions

View File

@ -133,7 +133,7 @@ proxmox-log= { version = "0.2.3", path = "proxmox-log" }
proxmox-login = { version = "0.1.0", path = "proxmox-login" }
proxmox-product-config = { version = "0.2.0", path = "proxmox-product-config" }
proxmox-config-digest = { version = "0.1.0", path = "proxmox-config-digest" }
proxmox-rest-server = { version = "0.7.0", path = "proxmox-rest-server" }
proxmox-rest-server = { version = "0.8.0", path = "proxmox-rest-server" }
proxmox-router = { version = "3.0.0", path = "proxmox-router" }
proxmox-schema = { version = "3.1.2", path = "proxmox-schema" }
proxmox-section-config = { version = "2.1.0", path = "proxmox-section-config" }

View File

@ -1,6 +1,6 @@
[package]
name = "proxmox-rest-server"
version = "0.7.1"
version = "0.8.0"
authors.workspace = true
edition.workspace = true
license.workspace = true

View File

@ -1,3 +1,15 @@
rust-proxmox-rest-server (0.8.0-1) bookworm; urgency=medium
* rename old "streaming" api to "serializing" (as it was not truly
streaming)
* add actual streaming API handler support
* utilize the compressor's "flush window" support, so compressed streaming
calls don't buffer for too long
-- Proxmox Support Team <support@proxmox.com> Wed, 04 Sep 2024 15:33:33 +0200
rust-proxmox-rest-server (0.7.1-1) bookworm; urgency=medium
* replace lazy_static with std's LazyLock and drop the dependency

View File

@ -17,11 +17,11 @@ Build-Depends: debhelper (>= 12),
librust-openssl-0.10+default-dev <!nocheck>,
librust-percent-encoding-2+default-dev (>= 2.1-~~) <!nocheck>,
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~) <!nocheck>,
librust-proxmox-compression-0.2+default-dev (>= 0.2.3-~~) <!nocheck>,
librust-proxmox-compression-0.2+default-dev (>= 0.2.4-~~) <!nocheck>,
librust-proxmox-daemon-0.1+default-dev <!nocheck>,
librust-proxmox-lang-1+default-dev (>= 1.3-~~) <!nocheck>,
librust-proxmox-log-0.2+default-dev (>= 0.2.1-~~) <!nocheck>,
librust-proxmox-router-2+default-dev (>= 2.1.5-~~) <!nocheck>,
librust-proxmox-log-0.2+default-dev (>= 0.2.3-~~) <!nocheck>,
librust-proxmox-router-3+default-dev <!nocheck>,
librust-proxmox-schema-3+api-macro-dev (>= 3.1.2-~~) <!nocheck>,
librust-proxmox-schema-3+default-dev (>= 3.1.2-~~) <!nocheck>,
librust-proxmox-schema-3+upid-api-impl-dev (>= 3.1.2-~~) <!nocheck>,
@ -65,11 +65,11 @@ Depends:
librust-openssl-0.10+default-dev,
librust-percent-encoding-2+default-dev (>= 2.1-~~),
librust-proxmox-async-0.4+default-dev (>= 0.4.1-~~),
librust-proxmox-compression-0.2+default-dev (>= 0.2.3-~~),
librust-proxmox-compression-0.2+default-dev (>= 0.2.4-~~),
librust-proxmox-daemon-0.1+default-dev,
librust-proxmox-lang-1+default-dev (>= 1.3-~~),
librust-proxmox-log-0.2+default-dev (>= 0.2.1-~~),
librust-proxmox-router-2+default-dev (>= 2.1.5-~~),
librust-proxmox-log-0.2+default-dev (>= 0.2.3-~~),
librust-proxmox-router-3+default-dev,
librust-proxmox-schema-3+api-macro-dev (>= 3.1.2-~~),
librust-proxmox-schema-3+default-dev (>= 3.1.2-~~),
librust-proxmox-schema-3+upid-api-impl-dev (>= 3.1.2-~~),
@ -97,10 +97,10 @@ Provides:
librust-proxmox-rest-server+default-dev (= ${binary:Version}),
librust-proxmox-rest-server-0-dev (= ${binary:Version}),
librust-proxmox-rest-server-0+default-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7+default-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7.1-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7.1+default-dev (= ${binary:Version})
librust-proxmox-rest-server-0.8-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.8+default-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.8.0-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.8.0+default-dev (= ${binary:Version})
Description: REST server implementation - Rust source code
Source code for Debianized Rust crate "proxmox-rest-server"
@ -114,8 +114,8 @@ Depends:
librust-proxmox-http-0.9+rate-limited-stream-dev (>= 0.9.2-~~)
Provides:
librust-proxmox-rest-server-0+rate-limited-stream-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7+rate-limited-stream-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7.1+rate-limited-stream-dev (= ${binary:Version})
librust-proxmox-rest-server-0.8+rate-limited-stream-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.8.0+rate-limited-stream-dev (= ${binary:Version})
Description: REST server implementation - feature "rate-limited-stream"
This metapackage enables feature "rate-limited-stream" for the Rust proxmox-
rest-server crate, by pulling in any additional dependencies needed by that
@ -130,8 +130,8 @@ Depends:
librust-handlebars-3+default-dev
Provides:
librust-proxmox-rest-server-0+templates-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7+templates-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.7.1+templates-dev (= ${binary:Version})
librust-proxmox-rest-server-0.8+templates-dev (= ${binary:Version}),
librust-proxmox-rest-server-0.8.0+templates-dev (= ${binary:Version})
Description: REST server implementation - feature "templates"
This metapackage enables feature "templates" for the Rust proxmox-rest-server
crate, by pulling in any additional dependencies needed by that feature.