monastery 1.31.0 → 1.31.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/changelog.md +24 -0
- package/package.json +13 -10
package/changelog.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
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
|
+
|
|
5
|
+
### 1.31.4 (2022-02-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* _callAfterFind bug ([e62472c](https://github.com/boycce/monastery/commit/e62472c191119135839b6d9e42b7f060bc7a508d))
|
|
11
|
+
* .eslintrc.json ([5362585](https://github.com/boycce/monastery/commit/53625857bbf798db97eddad9385799cb1ded97e2))
|
|
12
|
+
* docs ([d8f4e15](https://github.com/boycce/monastery/commit/d8f4e15913f672295cc118fda11ec23a412b4c62))
|
|
13
|
+
* docs ([1a5118e](https://github.com/boycce/monastery/commit/1a5118e4b389b55d30bf987991b59638b11613a9))
|
|
14
|
+
* docs ([564572c](https://github.com/boycce/monastery/commit/564572ce33dfb35fdd131e81d1dcc655f024b26e))
|
|
15
|
+
* docs ([12d37d3](https://github.com/boycce/monastery/commit/12d37d3b2d0b5ec577f9ed4deb9c929c8ea52a36))
|
|
16
|
+
* docs and nav links ([0eabcf0](https://github.com/boycce/monastery/commit/0eabcf0cd9a119a6ab1a07b92634e316995a2a83))
|
|
17
|
+
* model-crud ([d421709](https://github.com/boycce/monastery/commit/d421709a70e6611c78e049e98268153c9bafae6d))
|
|
18
|
+
* normalise afterFind ([0ab7f43](https://github.com/boycce/monastery/commit/0ab7f43f25b599e07d9ae751dc3bac8550e53c24))
|
|
19
|
+
* normalised rule arguments and context ([6ba48da](https://github.com/boycce/monastery/commit/6ba48da3b9c643620cebf5442e60bd0318d6780f))
|
|
20
|
+
* package scripts ([f7935af](https://github.com/boycce/monastery/commit/f7935afb0181ddb3e397bf804b34c841589dfcf0))
|
|
21
|
+
* semver ([6f14909](https://github.com/boycce/monastery/commit/6f14909f4405cf26dc04a8603cc3bac232b96798))
|
|
22
|
+
* standard-version ([4627694](https://github.com/boycce/monastery/commit/46276948f76b22eae946147f488c7e734a88c023))
|
|
23
|
+
* standard-version ([f553b08](https://github.com/boycce/monastery/commit/f553b08445eb7dd2e85f6bb447e2bb0bc38dda34))
|
|
24
|
+
* util bug, updated tests ([bec1887](https://github.com/boycce/monastery/commit/bec1887f56cb8582b606a066c913c191362a61b0))
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "monastery",
|
|
3
3
|
"description": "⛪ A straight forward MongoDB ODM built around Monk",
|
|
4
4
|
"author": "Ricky Boyce",
|
|
5
|
-
"version": "1.31.
|
|
5
|
+
"version": "1.31.4",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "github:boycce/monastery",
|
|
8
8
|
"homepage": "https://boycce.github.io/monastery/",
|
|
@@ -17,14 +17,15 @@
|
|
|
17
17
|
"mongo odm"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
-
"minor": "standard-version --release-as minor && npm publish",
|
|
21
|
-
"patch": "standard-version && npm publish",
|
|
22
|
-
"test": "npm run lint && jest",
|
|
23
|
-
"test-one-example": "jest -t images",
|
|
24
20
|
"dev": "npm run lint & DEBUG=-monastery:info jest --watchAll --runInBand --verbose=false",
|
|
25
|
-
"lint": "eslint ./lib ./plugins ./test",
|
|
26
21
|
"docs": "cd docs && bundle exec jekyll serve --livereload --livereload-port 4001",
|
|
27
|
-
"
|
|
22
|
+
"lint": "eslint ./lib ./plugins ./test",
|
|
23
|
+
"mong": "nodemon resources/mong.js",
|
|
24
|
+
"minor": "standard-version --release-as minor && npm publish",
|
|
25
|
+
"patch": "standard-version --release-as patch && npm publish",
|
|
26
|
+
"release": "standard-version && npm publish",
|
|
27
|
+
"test": "npm run lint && jest",
|
|
28
|
+
"test-one-example": "jest -t images"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"aws-sdk": "2.1062.0",
|
|
@@ -45,11 +46,13 @@
|
|
|
45
46
|
"supertest": "4.0.2"
|
|
46
47
|
},
|
|
47
48
|
"standard-version": {
|
|
49
|
+
"infile": "changelog.md",
|
|
48
50
|
"releaseCommitMessageFormat": "{{currentTag}}",
|
|
49
51
|
"sign": true,
|
|
50
52
|
"skip": {
|
|
51
|
-
"changelog":
|
|
52
|
-
"tag":
|
|
53
|
-
}
|
|
53
|
+
"changelog": false,
|
|
54
|
+
"tag": false
|
|
55
|
+
},
|
|
56
|
+
"tag-prefix": ""
|
|
54
57
|
}
|
|
55
58
|
}
|