From fb2f870eb97d4c75864103bef7efa0ec45ae52da Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 11 Mar 2025 15:50:14 +0100 Subject: [PATCH 1/2] docs: correct info on allowTelemetry --- 15/umbraco-cms/customizing/umbraco-package.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/15/umbraco-cms/customizing/umbraco-package.md b/15/umbraco-cms/customizing/umbraco-package.md index 3cd2ea57da2..e655f30ebb0 100644 --- a/15/umbraco-cms/customizing/umbraco-package.md +++ b/15/umbraco-cms/customizing/umbraco-package.md @@ -20,7 +20,6 @@ Before Umbraco 14, a package was declared in a `package.manifest` file instead o "id": "My.Nuget.Package", "name": "Sir Trevor", "version": "1.0.0-beta", - "allowPackageTelemetry": true, "extensions": [ { "type": "propertyEditorUi", @@ -48,7 +47,7 @@ The `umbraco-package` accepts these fields: "id": "", "name": "", "version": "", - "allowPackageTelemetry": true, + "allowTelemetry": true, "allowPublicAccess": false, "importmap": { "imports": { @@ -74,11 +73,13 @@ Allows you to specify a friendly name for your package that will be used for tel The version of your package, if this is not specified there will be no version-specific information for your package. This is used for telemetry and to help users understand what version of your package they are using. It is also used for package migrations. The version should follow the [Semantic Versioning](https://semver.org/) format. -### Allow Package Telemetry +### Allow Telemetry With this field, you can control the telemetry of this package, this will provide Umbraco with the knowledge of how many installations use this package. -The default is `false`. +The default is `true`. + +Also known as: `allowPackageTelemetry` ### Allow Public Access From 480c6ef0f7e840ca73772e95978ca2173553eea6 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 11 Mar 2025 16:24:20 +0100 Subject: [PATCH 2/2] docs: update legacy option --- 14/umbraco-cms/customizing/umbraco-package.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/14/umbraco-cms/customizing/umbraco-package.md b/14/umbraco-cms/customizing/umbraco-package.md index c06453e5eb7..ba7044aa912 100644 --- a/14/umbraco-cms/customizing/umbraco-package.md +++ b/14/umbraco-cms/customizing/umbraco-package.md @@ -20,7 +20,6 @@ Before Umbraco 14, the manifest was declared in a `package.manifest` file instea "id": "My.Nuget.Package", "name": "Sir Trevor", "version": "1.0.0-beta", - "allowPackageTelemetry": true, "extensions": [ { "type": "propertyEditorUi", @@ -48,7 +47,7 @@ The `umbraco-package` accept these fields: "id": "", "name": "", "version": "", - "allowPackageTelemetry": true, + "allowTelemetry": true, "allowPublicAccess": false, "importmap": { "imports": { @@ -74,11 +73,13 @@ Allows you to specify a friendly name for your package that will be used for tel The version of your package, if this is not specified there will be no version-specific information for your package. This is used for telemetry and to help users understand what version of your package they are using. It is also used for package migrations. The version should follow the [Semantic Versioning](https://semver.org/) format. -### Allow Package Telemetry +### Allow Telemetry With this field, you can control the telemetry of this package, this will provide Umbraco with the knowledge of how many installations use this package. -Default is `false`. +The default is `true`. + +Also known as: `allowPackageTelemetry` ### Allow Public Access