Skip to content

Commit 89c7dd2

Browse files
authored
Merge pull request #6687 from Flowminder/fix-api-spec
Fix api spec
2 parents 24e0cb5 + 096f333 commit 89c7dd2

File tree

6 files changed

+370
-436
lines changed

6 files changed

+370
-436
lines changed

CHANGELOG.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
### Added
10+
11+
### Changed
12+
13+
### Fixed
14+
- Fixed 500 error when getting api spec from FlowAPI [#6686](https://github.com/Flowminder/FlowKit/issues/6686)
15+
16+
### Removed
17+
18+
## [1.28.0]
19+
920
### Added
1021
- Added support for Parquet foreign tables using [parquet_fdw](https://github.com/adjust/parquet_fdw)
1122

@@ -19,9 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1930
> This change is not backwards compatible with earlier releases of FlowDB, and you will need to repopulate your deployment. We recommend combining this change with the new parquet support.
2031
- FlowETL is now built on Airflow 2.9.2
2132

22-
### Fixed
2333

24-
### Removed
2534

2635
## [1.27.0]
2736

@@ -1130,7 +1139,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
11301139

11311140
- Added Python 3.6 support for FlowClient
11321141

1133-
[Unreleased]: https://github.com/Flowminder/FlowKit/compare/1.27.0...master
1142+
[Unreleased]: https://github.com/Flowminder/FlowKit/compare/1.28.0...master
1143+
[1.28.0]: https://github.com/Flowminder/FlowKit/compare/1.28.0...1.28.0
11341144
[1.27.0]: https://github.com/Flowminder/FlowKit/compare/1.26.0...1.27.0
11351145
[1.26.0]: https://github.com/Flowminder/FlowKit/compare/1.25.0...1.26.0
11361146
[1.25.0]: https://github.com/Flowminder/FlowKit/compare/1.24.0...1.25.0

flowapi/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cryptography = "*" # This _should_ get installed given the flask-jwt-extended ex
1313
structlog = "*"
1414
python-rapidjson = "*"
1515
pyyaml = "==5.3.1" # Pinned to v5.3.1 pending https://github.com/Flowminder/FlowKit/issues/6015
16-
jsonschema = "==4.22.0" # Pinned to v4.17.3 pending https://github.com/Flowminder/FlowKit/issues/6015
16+
jsonschema = "==4.17.3" # Pinned to v4.17.3 pending https://github.com/Flowminder/FlowKit/issues/6015
1717
apispec = {extras = ["yaml"],version = "*"}
1818
get-secret-or-env-var = "*"
1919
prance = {extras = ["osv"],version = "*"}

0 commit comments

Comments
 (0)