From 526944b6418c2d577ff446a25415b290cf48e123 Mon Sep 17 00:00:00 2001 From: Onur Eren Hanife Date: Thu, 28 Dec 2023 11:30:38 +0300 Subject: [PATCH] #8845 deprecated fields options removed --- DEPRECATIONS.md | 2 +- src/LiveQuery/RequestSchema.js | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/DEPRECATIONS.md b/DEPRECATIONS.md index b825e50b2f..6423bc1324 100644 --- a/DEPRECATIONS.md +++ b/DEPRECATIONS.md @@ -12,7 +12,7 @@ The following is a list of deprecations, according to the [Deprecation Policy](h | 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 | - | | 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 | - | | 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 | - | -| 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 | - | +| 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 | - | | 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 | - | [i_deprecation]: ## "The version and date of the deprecation." diff --git a/src/LiveQuery/RequestSchema.js b/src/LiveQuery/RequestSchema.js index 3a88e9930d..6e0a0566b2 100644 --- a/src/LiveQuery/RequestSchema.js +++ b/src/LiveQuery/RequestSchema.js @@ -62,14 +62,6 @@ const subscribe = { where: { type: 'object', }, - fields: { - type: 'array', - items: { - type: 'string', - }, - minItems: 1, - uniqueItems: true, - }, keys: { type: 'array', items: { @@ -116,14 +108,6 @@ const update = { where: { type: 'object', }, - fields: { - type: 'array', - items: { - type: 'string', - }, - minItems: 1, - uniqueItems: true, - }, keys: { type: 'array', items: {