You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ ___
114
114
- Added Deprecation Policy to govern the introduction of breaking changes in a phased pattern that is more predictable for developers (Manuel Trezza) [#7199](https://github.com/parse-community/parse-server/pull/7199)
115
115
- Add REST API endpoint `/loginAs` to create session of any user with master key; allows to impersonate another user. (GormanFletcher) [#7406](https://github.com/parse-community/parse-server/pull/7406)
116
116
- Add official support for MongoDB 5.0 (Manuel Trezza) [#7469](https://github.com/parse-community/parse-server/pull/7469)
117
+
- Added Parse Server Configuration `enforcePrivateUsers`, which will remove public access by default on new Parse.Users (dblythy) [#7319](https://github.com/parse-community/parse-server/pull/7319)
117
118
118
119
### Other Changes
119
120
- Support native mongodb syntax in aggregation pipelines (Raschid JF Rafeally) [#7339](https://github.com/parse-community/parse-server/pull/7339)
Copy file name to clipboardExpand all lines: src/Deprecator/Deprecations.js
+5-4
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
* The deprecations.
3
3
*
4
4
* Add deprecations to the array using the following keys:
5
-
* - `optionKey`: The option key incl. its path, e.g. `security.enableCheck`.
6
-
* - `envKey`: The environment key, e.g. `PARSE_SERVER_SECURITY`.
7
-
* - `changeNewKey`: Set the new key name if the current key will be replaced,
5
+
* - `optionKey` {String}: The option key incl. its path, e.g. `security.enableCheck`.
6
+
* - `envKey` {String}: The environment key, e.g. `PARSE_SERVER_SECURITY`.
7
+
* - `changeNewKey` {String}: Set the new key name if the current key will be replaced,
8
8
* or set to an empty string if the current key will be removed without replacement.
9
-
* - `changeNewDefault`: Set the new default value if the key's default value
9
+
* - `changeNewDefault` {String}: Set the new default value if the key's default value
10
10
* will change in a future version.
11
11
* - `solution`: The instruction to resolve this deprecation warning. Optional. This
12
12
* instruction must not include the deprecation warning which is auto-generated.
@@ -22,4 +22,5 @@ module.exports = [
22
22
solution:
23
23
"Additionally, the environment variable 'PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS' will be deprecated and renamed to 'PARSE_SERVER_DIRECT_ACCESS' in a future version; it is currently possible to use either one.",
* @property {Boolean} enableExpressErrorHandler Enables the default express error handler for all errors
30
30
* @property {String} encryptionKey Key for encrypting your files
31
+
* @property {Boolean} enforcePrivateUsers Set to true if new users should be created without public read and write access.
31
32
* @property {Boolean} expireInactiveSessions Sets whether we should expire the inactive sessions, defaults to true. If false, all new sessions are created with no expiration date.
32
33
* @property {String} fileKey Key for your files
33
34
* @property {Adapter<FilesAdapter>} filesAdapter Adapter module for the files sub-system
0 commit comments