@proteinjs/db-driver-spanner 1.1.3 → 1.1.4

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/.eslintrc.js CHANGED
@@ -3,7 +3,7 @@ module.exports = {
3
3
  parser: '@typescript-eslint/parser',
4
4
  plugins: ['@typescript-eslint', 'prettier'],
5
5
  root: true,
6
- ignorePatterns: ['**/dist/*', '**/node_modules/*'],
6
+ ignorePatterns: ['**/dist/*', '**/node_modules/*', '*.md'],
7
7
 
8
8
  rules: {
9
9
  'prettier/prettier': ['warn'],
package/.prettierignore CHANGED
@@ -1,3 +1,4 @@
1
1
  node_modules/
2
2
  dist/
3
- .DS_Store
3
+ .DS_Store
4
+ *.md
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.1.4](https://github.com/brentbahry/db/compare/@proteinjs/db-driver-spanner@1.1.3...@proteinjs/db-driver-spanner@1.1.4) (2024-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add .md file type to lint ignore files ([9460a31](https://github.com/brentbahry/db/commit/9460a313cd418250115922f687277f1b01dce238))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.1.3](https://github.com/brentbahry/db/compare/@proteinjs/db-driver-spanner@1.1.2...@proteinjs/db-driver-spanner@1.1.3) (2024-05-10)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proteinjs/db-driver-spanner",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Db driver for Google Spanner",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -23,8 +23,8 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@google-cloud/spanner": "7.5.0",
26
- "@proteinjs/db": "^1.0.16",
27
- "@proteinjs/db-query": "^1.0.9",
26
+ "@proteinjs/db": "^1.0.17",
27
+ "@proteinjs/db-query": "^1.0.10",
28
28
  "@proteinjs/reflection": "1.1.1",
29
29
  "@proteinjs/util": "1.1.0"
30
30
  },
@@ -43,5 +43,5 @@
43
43
  },
44
44
  "main": "./dist/generated/index.js",
45
45
  "types": "./dist/generated/index.d.ts",
46
- "gitHead": "e9b7e3b3073e7a68c97b218444208d2c84f9197d"
46
+ "gitHead": "e168c40fd3f7c538d5d5ddcedb0bb4f5550ca81f"
47
47
  }