Skip to content

Commit 38ed96a

Browse files
authored
fix: depreciate allowClientClassCreation defaulting to true (#7925)
1 parent d691591 commit 38ed96a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

DEPRECATIONS.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The following is a list of deprecations, according to the [Deprecation Policy](h
88
| DEPPS2 | Config option `directAccess` defaults to `true` | [#6636](https://github.com/parse-community/parse-server/pull/6636) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
99
| DEPPS3 | Config option `enforcePrivateUsers` defaults to `true` | [#7319](https://github.com/parse-community/parse-server/pull/7319) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
1010
| DEPPS4 | Remove convenience method for http request `Parse.Cloud.httpRequest` | [#7589](https://github.com/parse-community/parse-server/pull/7589) | 5.0.0 (2022) | 6.0.0 (2023) | deprecated | - |
11+
| DEPPS5 | Config option `allowClientClassCreation` defaults to `false` | [#7925](https://github.com/parse-community/parse-server/pull/7925) | 5.3.0 (2023) | 7.0.0 (2024) | deprecated | - |
1112

1213
[i_deprecation]: ## "The version and date of the deprecation."
1314
[i_removal]: ## "The version and date of the planned removal."

src/Deprecator/Deprecations.js

+1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ module.exports = [
2323
"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.",
2424
},
2525
{ optionKey: 'enforcePrivateUsers', changeNewDefault: 'true' },
26+
{ optionKey: 'allowClientClassCreation', changeNewDefault: 'false' },
2627
];

0 commit comments

Comments
 (0)