From 8e9907dc53de7cd3b3fac4b1528a0d447532a90b Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Fri, 29 Dec 2017 03:23:04 +0100 Subject: [PATCH 1/2] docs(contact): mark as deprecated (#2238) * docs(contact): mark as deprecated * Update index.ts --- src/@ionic-native/plugins/contacts/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/@ionic-native/plugins/contacts/index.ts b/src/@ionic-native/plugins/contacts/index.ts index 7fdb1562a..d4a301553 100644 --- a/src/@ionic-native/plugins/contacts/index.ts +++ b/src/@ionic-native/plugins/contacts/index.ts @@ -261,6 +261,10 @@ export class ContactFindOptions implements IContactFindOptions { * @description * Access and manage Contacts on the device. * + * @deprecated + * This plugin is being deprecated. No more work will be done on this plugin by the Cordova development community. + * You can continue to use this plugin and it should work as-is in the future but any more arising issues will not be fixed by the Cordova community. + * * @usage * * ```typescript From 9ebd92ecb9b24de57d19719c1703be56a031c6de Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Fri, 29 Dec 2017 03:27:53 +0100 Subject: [PATCH 2/2] docs(globalization): mark plugin as deprecated (#2239) --- src/@ionic-native/plugins/globalization/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/@ionic-native/plugins/globalization/index.ts b/src/@ionic-native/plugins/globalization/index.ts index 6ba8e97e3..0acecdd92 100644 --- a/src/@ionic-native/plugins/globalization/index.ts +++ b/src/@ionic-native/plugins/globalization/index.ts @@ -4,6 +4,12 @@ import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core'; /** * @name Globalization * @description + * This plugin obtains information and performs operations specific to the user's locale, language, and timezone. + * + * @deprecated + * With the [ECMA Internationalization API](https://www.ecma-international.org/ecma-402/1.0/) now supported on iOS, Android and Windows devices, this plugin is not required any more. + * Migrating from this plugin to the [ECMA Internationalization API](https://www.ecma-international.org/ecma-402/1.0/) is explained in this [Cordova blog post](https://cordova.apache.org/news/2017/11/20/migrate-from-cordova-globalization-plugin.html). + * * @usage * ```typescript * import { Globalization } from '@ionic-native/globalization';