From 84aead39bf1ab261d8c3c58d8eccb934b39deb2b Mon Sep 17 00:00:00 2001 From: Tobias Speicher Date: Mon, 4 Apr 2022 05:07:37 +0200 Subject: [PATCH] Add changelog --- changelog/unreleased/change-replace-deprecated-substr | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/unreleased/change-replace-deprecated-substr diff --git a/changelog/unreleased/change-replace-deprecated-substr b/changelog/unreleased/change-replace-deprecated-substr new file mode 100644 index 0000000000..5333cf52dc --- /dev/null +++ b/changelog/unreleased/change-replace-deprecated-substr @@ -0,0 +1,7 @@ +Change: Replace deprecated String.prototype.substr() + +We've replaced all occurrences of the deprecated String.prototype.substr() +function with String.prototype.slice() which works similarly but isn't +deprecated. + +https://github.com/owncloud/ocis/pull/3448