Socket
Socket
Sign inDemoInstall

@sap/cds-dk

Package Overview
Dependencies
Maintainers
1
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap/cds-dk - npm Package Compare versions

Comparing version 6.1.3 to 6.1.4

14

bin/build/all.js

@@ -68,7 +68,13 @@ module.exports = Object.assign(build, {

try {
return require('../../lib/cds').build(options)
} catch (error) {
return Promise.reject(error.message)
const cds = require('../../lib/cds')
if (typeof cds.build.build === 'function') {
console.warn(`
> WARNING: This application uses a very old version ${cds.version} of package '@sap/cds',
> which will no longer be supported with the next major version of '@sap/cds-dk'.
> We strongly recommend an upgrade to latest version 6 of '@sap/cds'.
`)
return cds.build.build(options)
}
return cds.build(options)
}

@@ -10,2 +10,8 @@

## Version 6.1.4 - 2022-09-09
### Fixed
- `cds build` now works again with `@sap/cds` version 4. Previously, this silently failed with no output. However, a warning is now emitted that strongly recommends an upgrade to version 6.
## Version 6.1.3 - 2022-09-06

@@ -12,0 +18,0 @@

{
"name": "@sap/cds-dk",
"version": "6.1.3",
"version": "6.1.4",
"description": "Command line client and development toolkit for the SAP Cloud Application Programming Model",

@@ -5,0 +5,0 @@ "homepage": "https://cap.cloud.sap/",

Sorry, the diff of this file is too big to display

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