@mojaloop/database-lib 11.0.3 → 11.0.5

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
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [11.0.5](https://github.com/mojaloop/database-lib/compare/v11.0.4...v11.0.5) (2024-04-11)
6
+
7
+ ### [11.0.4](https://github.com/mojaloop/database-lib/compare/v11.0.3...v11.0.4) (2024-04-09)
8
+
5
9
  ### [11.0.3](https://github.com/mojaloop/database-lib/compare/v11.0.2...v11.0.3) (2023-09-06)
6
10
 
7
11
  ### [11.0.2](https://github.com/mojaloop/database-lib/compare/v11.0.1...v11.0.2) (2023-09-06)
package/CODEOWNERS ADDED
@@ -0,0 +1,31 @@
1
+ # This is a comment.
2
+ # Each line is a file pattern followed by one or more owners.
3
+ ## These owners will be the default owners for everything in
4
+ ## the repo. Unless a later match takes precedence,
5
+ ## @global-owner1 and @global-owner2 will be requested for
6
+ ## review when someone opens a pull request.
7
+ #* @global-owner1 @global-owner2
8
+ * @bushjames @elnyry-sam-k @kleyow @oderayi @vijayg10
9
+ ## Order is important; the last matching pattern takes the most
10
+ ## precedence. When someone opens a pull request that only
11
+ ## modifies JS files, only @js-owner and not the global
12
+ ## owner(s) will be requested for a review.
13
+ # *.js @js-owner
14
+ ## You can also use email addresses if you prefer. They'll be
15
+ ## used to look up users just like we do for commit author
16
+ ## emails.
17
+ #*.go docs@example.com
18
+ # In this example, @doctocat owns any files in the build/logs
19
+ # directory at the root of the repository and any of its
20
+ # subdirectories.
21
+ # /build/logs/ @doctocat
22
+ ## The `docs/*` pattern will match files like
23
+ ## `docs/getting-started.md` but not further nested files like
24
+ ## `docs/build-app/troubleshooting.md`.
25
+ # docs/* docs@example.com
26
+ ## In this example, @octocat owns any file in an apps directory
27
+ ## anywhere in your repository.
28
+ #apps/ @octocat
29
+ ## In this example, @doctocat owns any file in the `/docs`
30
+ ## directory in the root of your repository.
31
+ #/docs/ @doctocat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mojaloop/database-lib",
3
- "version": "11.0.3",
3
+ "version": "11.0.5",
4
4
  "description": "Shared database code for central services",
5
5
  "main": "src/index.js",
6
6
  "license": "Apache-2.0",
@@ -41,22 +41,25 @@
41
41
  "release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'"
42
42
  },
43
43
  "dependencies": {
44
- "knex": "2.5.1",
44
+ "knex": "3.1.0",
45
45
  "lodash": "4.17.21",
46
46
  "mysql": "2.18.1"
47
47
  },
48
+ "overrides": {
49
+ "tar": "6.2.1"
50
+ },
48
51
  "devDependencies": {
49
52
  "audit-ci": "^6.6.1",
50
- "npm-check-updates": "16.13.2",
53
+ "npm-check-updates": "16.14.18",
51
54
  "nyc": "15.1.0",
52
55
  "pre-commit": "1.2.2",
53
56
  "proxyquire": "2.1.3",
54
- "sinon": "15.2.0",
57
+ "sinon": "17.0.1",
55
58
  "standard": "17.1.0",
56
59
  "standard-version": "9.5.0",
57
60
  "tap-spec": "^5.0.0",
58
61
  "tap-xunit": "2.4.1",
59
- "tape": "5.6.6",
62
+ "tape": "5.7.5",
60
63
  "tapes": "4.1.0"
61
64
  },
62
65
  "publishConfig": {