Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sap/xsodata

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap/xsodata - npm Package Compare versions

Comparing version 7.3.2 to 7.3.3

7

CHANGELOG.md

@@ -11,2 +11,9 @@ # Change Log

## [7.3.3] - 2020-10-01
### Fixed
Commit on drop of temporary tables added.
## [7.3.2] - 2020-09-30

@@ -13,0 +20,0 @@

1

lib/processor/resourceProcessorGet.js

@@ -27,2 +27,3 @@ 'use strict';

utils.try(dataCollectorGet.dropTempTables),
utils.try(dataCollectorGet.commit),

@@ -29,0 +30,0 @@ utils.tryAndMeasure(serializer.serializeData, 'serializer.serializeData')

@@ -252,1 +252,13 @@ 'use strict';

};
exports.commit = function (context, asyncDone) {
context.logger.silly('dataCollectorGet', 'commit');
var client = context.db.client;
client.commit(function (err) {
if (err) {
context.logger.info('SQL Exec', 'Commit Error: \n' + JSON.stringify(err));
return asyncDone(err, context);
}
return asyncDone(null, context);
});
};

2

package.json
{
"name": "@sap/xsodata",
"version": "7.3.2",
"version": "7.3.3",
"description": "Expose data from a HANA database as OData V2 service with help of .xsodata files.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc