Skip to content

Commit

Permalink
v0.4.9 release
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Kisler <admin@dkisler.com>
  • Loading branch information
kislerdm committed Apr 13, 2024
1 parent f7fc910 commit d8302fa
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.4.9] - 2024-04-13

The release incorporates the up-to-date [API contract](openAPIDefinition.json) as of 2024-04-13 11:00:00 GMT.

### Added

- Added the filtering argument `orgID` to the method `ListProjects` to enhance the projects listing functionality.
- Added the method `RestartProjectEndpoint` to restart the project's endpoint. Find details [here](https://api-docs.neon.tech/reference/restartprojectendpoint).
- Added the filter `ProtectedBranchesOnly` provision the list of allowed IP addresses only for the protected branches.
- Added the field `ComputeReleaseVersion` to the struct `Endpoint` to reflect the version of the compute resources.

### Changed

- Changed the type of the `HistoryRetentionSeconds` to `int32` attribute.

### Fixed

- Fixed the method `GetConnectionURI` by correcting the logic of building the request query.

## [v0.4.8] - 2024-03-22

The release incorporates the up-to-date [API contract](openAPIDefinition.json) as of 2024-03-21 23:20:00 GMT.
Expand Down
8 changes: 6 additions & 2 deletions openAPIDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -4223,6 +4223,7 @@
"active_time",
"max_projects",
"max_branches",
"max_protected_branches",
"max_autoscaling_cu",
"cpu_seconds",
"max_active_endpoints",
Expand All @@ -4241,6 +4242,9 @@
"max_branches": {
"type": "integer"
},
"max_protected_branches": {
"type": "integer"
},
"max_autoscaling_cu": {
"type": "number",
"format": "float64"
Expand Down Expand Up @@ -5632,13 +5636,13 @@
"description": "Details of an organisation guest, who is not directly a member of\nan organisation but has been shared one of the projects it owns\n",
"type": "object",
"required": [
"user_id",
"permission_id",
"user_email",
"project_id",
"project_name"
],
"properties": {
"user_id": {
"permission_id": {
"type": "string"
},
"user_email": {
Expand Down

0 comments on commit d8302fa

Please sign in to comment.