Skip to content

Commit

Permalink
Prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
oklemenz2 committed Mar 1, 2024
1 parent 6d05277 commit 840c841
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 78 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Version 1.12.6 - 2024-03-04

### Added
### Fixed

- Support OData V2 CDS protocol annotation via (`@protocol: [{ kind: 'odata-v2', path: '<path>' }]`)
- Expose OData V2 service at specified `odata-v2` protocol path, in addition to default endpoint

### Fixed

- Make pipeline stream errors only warnings as root cause is already logged
- Serve OData V2 Adapter routes always after CDS listening (also for non-plugin case)
- Fix build task in case of compilation errors
- Fix build task to also include pre-compiled OData V2 EDMX files in `srv`
Expand Down
107 changes: 35 additions & 72 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"dependencies": {
"body-parser": "^1.20.2",
"body-parser-xml": "^2.0.5",
"express": "^4.18.2",
"express": "^4.18.3",
"express-fileupload": "^1.4.3",
"http-proxy-middleware": "^2.0.6",
"xml2js": "^0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2964,7 +2964,7 @@ function cov2ap(options = {}) {
});
pipeline(streamRes, res, (err) => {
if (err) {
logError(req, "StreamPipeline", err);
logWarn(req, "StreamPipeline", err);
}
});

Expand Down

0 comments on commit 840c841

Please sign in to comment.