diff --git a/PRIVACY.md b/PRIVACY.md index 81dbeaed9..8e9dcbaa3 100644 --- a/PRIVACY.md +++ b/PRIVACY.md @@ -26,6 +26,8 @@ Details on that are [here](https://github.com/openstreetmap/iD/blob/release/modu If you use background or streetside imagery to aid your edits, your browser must fetch information and images from a third-party imagery host. That use is governed by the respective privacy policies of each imagery host. The [Editor Layer Index](https://github.com/osmlab/editor-layer-index) and [iD Editor GitHub code](https://github.com/openstreetmap/iD/blob/release/modules/ui/map_data.js) provides detailed information as to imagery layer available in iD. In addition, you may use third party services to assist your editing or check for errors. See [here](https://github.com/openstreetmap/iD/tree/release/modules/services) for details. If you do not wish to interact with these third parties, do not use these features. +iD requires that your browser fetch some resources from the [JSDelivr](https://www.jsdelivr.com/) content delivery network (CDN). This usage is governed by the cdn.jsdelivr.net privacy policy located at [https://www.jsdelivr.com/terms/privacy-policy-jsdelivr-net](https://www.jsdelivr.com/terms/privacy-policy-jsdelivr-net). + ### Name Suggestion Index The Name Suggestion Index is a feature in iD to aid users in consistently and accurately identifying the brand names of companies on the map. The NSI optionally fetches information and brand logos hosted on third party websites, including WikiData, Wikimedia Commons, and the brands’ respective Facebook and Twitter accounts. That use is governed by their respective privacy policies, including [https://foundation.wikimedia.org/wiki/Privacy_policy](https://foundation.wikimedia.org/wiki/Privacy_policy); [https://twitter.com/en/privacy](https://twitter.com/en/privacy); [https://www.facebook.com/about/privacy](https://www.facebook.com/about/privacy). Specific information about the information and images fetched for each brand may be found at [https://nsi.guide/](https://nsi.guide/). If you do not wish to interact with these third parties, you can deselect this feature in the User Preferences -> Privacy section. @@ -34,8 +36,8 @@ The Name Suggestion Index is a feature in iD to aid users in consistently and ac If you believe that we hold information that would allow us to correct, amend, or delete inaccurate information about you or if you believe that information about you has been processed in violation of this privacy policy or applicable law, please email us at privacy@ideditor.org. - ### Changelog +* _2020-Dec-02_ - Add information about the JSDelivr CDN integration. * _2020-Apr-07_ - Update the iD GitHub repository file links to point to the `release` branch instead of the `master` branch. * _2019-Dec-17_ - Initial version. diff --git a/modules/core/context.js b/modules/core/context.js index 28090e259..c0d902e9e 100644 --- a/modules/core/context.js +++ b/modules/core/context.js @@ -27,7 +27,7 @@ export function coreContext() { let _deferred = new Set(); context.version = '2.20.0-dev'; - context.privacyVersion = '20200407'; + context.privacyVersion = '20201202'; // iD will alter the hash so cache the parameters intended to setup the session context.initialHashParams = window.location.hash ? utilStringQs(window.location.hash) : {};