Skip to content

Commit fabf765

Browse files
Bump version and changelog
1 parent b5c994d commit fabf765

3 files changed

Lines changed: 20 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.15.0] - 2025-09-04
10+
### Security
11+
- upgraded internal `urllib3` dependency to version 2.5.0
12+
### Removed
13+
- removed support of Python version `3.8`
14+
915
## [1.14.2] - 2025-08-04
1016
### Fixed
1117
- added back Api attributes removed in a previous release, this should fix potential breaking changes introduced in 1.14.1;
1218

1319
## [1.14.1] - 2025-07-25
1420
### Added
15-
- Session mechanism for significantly decrease number of an http load on data-api for apps with intensive calling
21+
- Session mechanism for significantly decrease number of an http load on data-api for apps with intensive calling
1622
- Added possibility to adjust some params related to connection pool
1723
- `POOL_CONNECTIONS_COUNT`: Total pools count
18-
- `POOL_MAX_SIZE`: Max connections count per pool/host
24+
- `POOL_MAX_SIZE`: Max connections count per pool/host
1925
- `POOL_BLOCK`: Wait until connection released or not (instantly raise an exception)
2026
- `MAX_RETRY_COUNT`: If 0 then retires will be disabled, otherwise retrying logic will be used
2127
- Move retrying logic from `tenacity` to internal `urllib3.util.Retry(...)`
@@ -40,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4046

4147
## [1.12.1] - 2025-01-27
4248
### Fixed
43-
- Add app logic for meaningful error when mismatched app type is used either declared at `manifest.json` or according
49+
- Add app logic for meaningful error when mismatched app type is used either declared at `manifest.json` or according
4450
to used event payload passed to app
4551

4652

@@ -122,7 +128,7 @@ instead of suppressing them.
122128
### Added
123129
- `insert_data` method to `Api`.
124130
See `Insert data` section in docs.
125-
- Example usage for followable apps.
131+
- Example usage for followable apps.
126132
See `Followable apps` section in docs.
127133

128134

@@ -131,7 +137,7 @@ See `Followable apps` section in docs.
131137
### Added
132138
- `produce_messages` method to `Api`.
133139
See `Produce messages` section in docs.
134-
- Documentation on followable apps.
140+
- Documentation on followable apps.
135141
See `Followable apps` section in docs.
136142

137143

@@ -146,7 +152,7 @@ to reuse the cache object.
146152

147153
### Changed
148154
- Set status as completed
149-
for failed scheduled natural time apps.
155+
for failed scheduled natural time apps.
150156

151157

152158
## [1.5.2] - 2022-07-11
@@ -234,7 +240,7 @@ See corresponding section in docs.
234240

235241
## [1.2.1] - 2021-10-29
236242

237-
### Deprecated
243+
### Deprecated
238244
- Returning dict result from task app
239245
to get it stored in task payload.
240246
Send the request to update the payload explicitly in your app.
@@ -244,7 +250,7 @@ Send the request to update the payload explicitly in your app.
244250

245251
### Added
246252
- Subtypes of scheduled event:
247-
`ScheduledDataTimeEvent`, `ScheduledDepthEvent` and `ScheduledNaturalTimeEvent`
253+
`ScheduledDataTimeEvent`, `ScheduledDepthEvent` and `ScheduledNaturalTimeEvent`
248254

249255
### Deprecated
250256
- `ScheduledEvent` usage
@@ -280,9 +286,9 @@ to app decorators using `handler` keyword argument.
280286
## [1.0.0] - 2021-04-29
281287

282288
### Added
283-
- `corva.stream`, `corva.scheduled` and `corva.task` app decorators.
289+
- `corva.stream`, `corva.scheduled` and `corva.task` app decorators.
284290
See readme for usage examples.
285-
- `ScheduledEvent.company_id` field.
291+
- `ScheduledEvent.company_id` field.
286292

287293
### Removed
288294
- `corva.Corva` class.
@@ -383,13 +389,13 @@ env variables, that should be used to configure logging.
383389
- `api_key` extraction from `context`.
384390

385391

386-
## [0.0.7] - 2021-02-04
392+
## [0.0.7] - 2021-02-04
387393

388394
### Fixed
389395
- `StreamEvent` queue event parsing.
390396

391397

392-
## [0.0.5] - 2021-02-04
398+
## [0.0.5] - 2021-02-04
393399

394400
### Added
395401
- Required `context` parameter to `Corva`.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "corva-sdk"
77
description = "SDK for building Corva DevCenter Python apps."
88
readme = "README.md"
9-
version = "1.14.2"
9+
version = "1.15.0"
1010
license = { text = "The Unlicense" }
1111
authors = [
1212
{ name = "Jordan Ambra", email = "jordan.ambra@corva.ai" }

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.14.2"
1+
VERSION = "1.15.0"

0 commit comments

Comments
 (0)