monastery 1.37.2 → 1.37.3

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,13 @@
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
+ ### [1.37.3](https://github.com/boycce/monastery/compare/1.37.2...1.37.3) (2022-06-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * test ([dad21ad](https://github.com/boycce/monastery/commit/dad21ad9c014a45ccc50a4755daa12941d6b7465))
11
+
5
12
  ### [1.37.2](https://github.com/boycce/monastery/compare/1.37.1...1.37.2) (2022-06-13)
6
13
 
7
14
 
package/docs/readme.md CHANGED
@@ -93,7 +93,7 @@ Coming soon...
93
93
  - ~~Whitelisting a parent will remove any previously blacklisted children~~
94
94
  - ~~Blacklist/project works the same across find/insert/update/validate~~
95
95
  - Automatic embedded document ids/createdAt/updatedAt fields
96
- - Remove ACL default 'public read'
96
+ - ~~Change ACL default 'public read' to 'private'~~
97
97
  - ~~Public db.arrayWithSchema method~~
98
98
  - Global after/before hooks
99
99
  - docs: Make the implicit ID query conversion more apparent
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.37.2",
5
+ "version": "1.37.3",
6
6
  "license": "MIT",
7
7
  "repository": "github:boycce/monastery",
8
8
  "homepage": "https://boycce.github.io/monastery/",
@@ -641,7 +641,7 @@ module.exports = function(monastery, opendb) {
641
641
  app.use(upload({ limits: { fileSize: 1000 * 480, files: 10 }}))
642
642
 
643
643
  // Basic tests
644
- expect(plugin.awsAcl).toEqual('public-read')
644
+ expect(plugin.awsAcl).toEqual('private')
645
645
  expect(plugin.filesize).toEqual(undefined)
646
646
  expect(plugin.formats).toEqual(['bmp', 'gif', 'jpg', 'jpeg', 'png', 'tiff'])
647
647
  expect(plugin.getSignedUrl).toEqual(undefined)
@@ -688,7 +688,7 @@ module.exports = function(monastery, opendb) {
688
688
  // S3 options
689
689
  expect(response[1]).toEqual([
690
690
  [{
691
- ACL: 'public-read',
691
+ ACL: 'private',
692
692
  Body: expect.any(Object),
693
693
  Bucket: 'fake',
694
694
  Key: expect.stringMatching(/^full\/.*png$/),