Skip to content

Commit 526944b

Browse files
committed
parse-community#8845 deprecated fields options removed
1 parent 3b9f50a commit 526944b

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

DEPRECATIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following is a list of deprecations, according to the [Deprecation Policy](h
1212
| DEPPS6 | Auth providers disabled by default | [#7953](https://github.com/parse-community/parse-server/pull/7953) | 5.3.0 (2022) | 7.0.0 (2024) | deprecated | - |
1313
| DEPPS7 | Remove file trigger syntax `Parse.Cloud.beforeSaveFile((request) => {})` | [#7966](https://github.com/parse-community/parse-server/pull/7966) | 5.3.0 (2022) | 7.0.0 (2024) | deprecated | - |
1414
| DEPPS8 | Login with expired 3rd party authentication token defaults to `false` | [#7079](https://github.com/parse-community/parse-server/pull/7079) | 5.3.0 (2022) | 7.0.0 (2024) | deprecated | - |
15-
| DEPPS9 | Rename LiveQuery `fields` option to `keys` | [#8389](https://github.com/parse-community/parse-server/issues/8389) | 6.0.0 (2023) | 7.0.0 (2024) | deprecated | - |
15+
| DEPPS9 | Rename LiveQuery `fields` option to `keys` | [#8389](https://github.com/parse-community/parse-server/issues/8389) | 6.0.0 (2023) | 7.0.0 (2024) | removed | - |
1616
| DEPPS10 | Config option `encodeParseObjectInCloudFunction` defaults to `true` | [#8634](https://github.com/parse-community/parse-server/issues/8634) | 6.2.0 (2023) | 8.0.0 (2025) | deprecated | - |
1717

1818
[i_deprecation]: ## "The version and date of the deprecation."

src/LiveQuery/RequestSchema.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,6 @@ const subscribe = {
6262
where: {
6363
type: 'object',
6464
},
65-
fields: {
66-
type: 'array',
67-
items: {
68-
type: 'string',
69-
},
70-
minItems: 1,
71-
uniqueItems: true,
72-
},
7365
keys: {
7466
type: 'array',
7567
items: {
@@ -116,14 +108,6 @@ const update = {
116108
where: {
117109
type: 'object',
118110
},
119-
fields: {
120-
type: 'array',
121-
items: {
122-
type: 'string',
123-
},
124-
minItems: 1,
125-
uniqueItems: true,
126-
},
127111
keys: {
128112
type: 'array',
129113
items: {

0 commit comments

Comments
 (0)