Skip to content

Commit 0ac78d9

Browse files
committed
Merge branch 'dev'
2 parents 6e7e84f + 759e92b commit 0ac78d9

File tree

2 files changed

+15
-22
lines changed

2 files changed

+15
-22
lines changed

.circleci/config.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,6 @@ workflows:
127127
filters:
128128
branches:
129129
ignore: /^(dev|master)/
130-
- test:
131-
requires:
132-
- build
133-
filters:
134-
branches:
135-
ignore: /^(dev|master)/
136130
release_next:
137131
jobs:
138132
- build:
@@ -145,15 +139,9 @@ workflows:
145139
filters:
146140
branches:
147141
only: dev
148-
- test:
149-
requires:
150-
- build_next
151-
filters:
152-
branches:
153-
only: dev
154142
- publish_next:
155143
requires:
156-
- test
144+
- build_next
157145
filters:
158146
branches:
159147
only: dev
@@ -165,17 +153,9 @@ workflows:
165153
only: /^v[0-9]+\.[0-9]+\.[0-9]+/
166154
branches:
167155
ignore: /.*/
168-
- test:
169-
requires:
170-
- build
171-
filters:
172-
tags:
173-
only: /^v[0-9]+\.[0-9]+\.[0-9]+/
174-
branches:
175-
ignore: /.*/
176156
- publish:
177157
requires:
178-
- test
158+
- build
179159
filters:
180160
tags:
181161
only: /^v[0-9]+\.[0-9]+\.[0-9]+/

docs/documentation/docs/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@ Once the package is installed, you will have to configure the resource file of t
3030
"ControlStrings": "node_modules/@pnp/spfx-controls-react/lib/loc/{locale}.js"
3131
```
3232

33+
## Telemetry
34+
35+
All controls gather telemetry to verify the usage. Only the name of the control and related data gets captured.
36+
37+
> More information about the service that we are using for this can be found here: [PnP Telemetry Proxy](https://github.com/pnp/telemetry-proxy-node).
38+
39+
Since version `1.17.0` it is possible to opt-out of the telemetry by adding the following code to your web part:
40+
41+
```typescript
42+
const telemetry = PnPTelemetry.getInstance();
43+
telemetry.optOut();
44+
```
45+
3346
## Available controls
3447

3548
The following controls are currently available:

0 commit comments

Comments
 (0)