@cap-js/sqlite 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@
4
4
  - The format is based on [Keep a Changelog](http://keepachangelog.com/).
5
5
  - This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## Version 1.1.0 - 2023-08-01
8
+
9
+ ### Changed
10
+
11
+ - Updated minimum required version of `@cap-js/db-service`.
12
+
7
13
  ## Version 1.0.1 - 2023-07-03
8
14
 
9
15
  ### Changed
@@ -68,6 +68,7 @@ class SQLiteService extends SQLService {
68
68
  }
69
69
  })
70
70
  return SELECT.columns.map(x => {
71
+ if (x === '*') return x
71
72
  const alias = this.column_name(x)
72
73
  // Check whether the column alias should be added
73
74
  const xpr = this.column_expr(x)
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@cap-js/sqlite",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "CDS database service for SQLite",
5
- "homepage": "https://cap.cloud.sap/",
5
+ "homepage": "https://github.com/cap-js/cds-dbs/tree/main/sqlite#cds-database-service-for-sqlite",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/cap-js/cds-dbs"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/cap-js/cds-dbs/issues"
12
+ },
6
13
  "keywords": [
7
14
  "CAP",
8
15
  "CDS",
@@ -23,7 +30,7 @@
23
30
  "test": "jest --silent"
24
31
  },
25
32
  "dependencies": {
26
- "@cap-js/db-service": "^1.0.1",
33
+ "@cap-js/db-service": "^1.1.0",
27
34
  "better-sqlite3": "^8"
28
35
  },
29
36
  "peerDependencies": {