Skip to content

Commit

Permalink
(maint) Turn off analytics submissions
Browse files Browse the repository at this point in the history
Collecting analytics is now turned off by default.

!removal

* **Stop collecting bolt analytics** ([#3293](#3293))

  Bolt no longer collects analytics by default.
  • Loading branch information
donoghuc committed Apr 2, 2024
1 parent 4b30c39 commit 0bd6351
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 3 additions & 2 deletions documentation/analytics.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Analytics

Bolt collects data about how you use it to help the Bolt team make decisions
about how to improve it. You can opt out of providing this data.
about how to improve it. You can opt out of providing this data. Analytics is
disabled by default.

## Opt out of data collection

Expand All @@ -12,7 +13,7 @@ or by setting an environment variable.

To disable data collection, set `analytics: false` in your [configuration
file](configuring_bolt.md). This option is supported in the system-wide,
user-level, and project configuration files.
user-level, and project configuration files. `false` is the default value.

```yaml
# bolt-defaults.yaml
Expand Down
4 changes: 0 additions & 4 deletions documentation/bolt_installing.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Installing Bolt

> Bolt automatically collects data about how you use it. If you want to opt
> out of providing this data, you can do so. For more information, see
> [Opt out of data collection](analytics.md#opt-out-of-data-collection).
Packaged versions of Bolt are available for several Linux distributions, macOS,
and Microsoft Windows.

Expand Down
2 changes: 1 addition & 1 deletion lib/bolt/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def initialize(project, config_data, overrides = {})
@config_files = []

default_data = {
'analytics' => true,
'analytics' => false,
'apply-settings' => {},
'color' => true,
'compile-concurrency' => Etc.nprocessors,
Expand Down

0 comments on commit 0bd6351

Please sign in to comment.