@google-cloud/dlp 3.2.1 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +17 -17
- package/build/protos/google/privacy/dlp/v2/dlp.proto +506 -59
- package/build/protos/google/privacy/dlp/v2/storage.proto +81 -66
- package/build/protos/protos.d.ts +3621 -1735
- package/build/protos/protos.js +9705 -4716
- package/build/protos/protos.json +651 -191
- package/build/src/v2/dlp_service_client.d.ts +1300 -44
- package/build/src/v2/dlp_service_client.js +63 -1353
- package/build/src/v2/dlp_service_client.js.map +1 -1
- package/build/src/v2/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,27 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/PACKAGE NAME?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [3.5.0](https://github.com/googleapis/nodejs-dlp/compare/v3.4.0...v3.5.0) (2022-04-01)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add DataProfilePubSubMessage supporting pub/sub integration ([#695](https://github.com/googleapis/nodejs-dlp/issues/695)) ([918b6cd](https://github.com/googleapis/nodejs-dlp/commit/918b6cd8ba8669e7c029ae7b4d3d01858121b9f6))
|
|
13
|
+
|
|
14
|
+
## [3.4.0](https://github.com/googleapis/nodejs-dlp/compare/v3.3.0...v3.4.0) (2022-03-25)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* new Bytes and File types: POWERPOINT and EXCEL ([#693](https://github.com/googleapis/nodejs-dlp/issues/693)) ([ed3dc42](https://github.com/googleapis/nodejs-dlp/commit/ed3dc42bce256100a62528481c7ec10362f7fa93))
|
|
20
|
+
|
|
21
|
+
## [3.3.0](https://www.github.com/googleapis/nodejs-dlp/compare/v3.2.1...v3.3.0) (2021-12-03)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* added deidentify replacement dictionaries feat: added field for BigQuery inspect template inclusion lists feat: added field to support infotype versioning ([#667](https://www.github.com/googleapis/nodejs-dlp/issues/667)) ([7f8b9d6](https://www.github.com/googleapis/nodejs-dlp/commit/7f8b9d6dc33837f5b93a0b2269ca79572520b14c))
|
|
27
|
+
|
|
7
28
|
### [3.2.1](https://www.github.com/googleapis/nodejs-dlp/compare/v3.2.0...v3.2.1) (2021-11-03)
|
|
8
29
|
|
|
9
30
|
|
package/README.md
CHANGED
|
@@ -4,9 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
# [Cloud Data Loss Prevention: Node.js Client](https://github.com/googleapis/nodejs-dlp)
|
|
6
6
|
|
|
7
|
-
[](https://cloud.google.com/terms/launch-stages)
|
|
8
8
|
[](https://www.npmjs.org/package/@google-cloud/dlp)
|
|
9
|
-
[](https://codecov.io/gh/googleapis/nodejs-dlp)
|
|
10
9
|
|
|
11
10
|
|
|
12
11
|
|
|
@@ -166,37 +165,38 @@ also contains samples.
|
|
|
166
165
|
Our client libraries follow the [Node.js release schedule](https://nodejs.org/en/about/releases/).
|
|
167
166
|
Libraries are compatible with all current _active_ and _maintenance_ versions of
|
|
168
167
|
Node.js.
|
|
168
|
+
If you are using an end-of-life version of Node.js, we recommend that you update
|
|
169
|
+
as soon as possible to an actively supported LTS version.
|
|
169
170
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
The dist-tags follow the naming convention `legacy-(version)`.
|
|
173
|
-
|
|
174
|
-
_Legacy Node.js versions are supported as a best effort:_
|
|
175
|
-
|
|
176
|
-
* Legacy versions will not be tested in continuous integration.
|
|
177
|
-
* Some security patches may not be able to be backported.
|
|
178
|
-
* Dependencies will not be kept up-to-date, and features will not be backported.
|
|
171
|
+
Google's client libraries support legacy versions of Node.js runtimes on a
|
|
172
|
+
best-efforts basis with the following warnings:
|
|
179
173
|
|
|
180
|
-
|
|
174
|
+
* Legacy versions are not tested in continuous integration.
|
|
175
|
+
* Some security patches and features cannot be backported.
|
|
176
|
+
* Dependencies cannot be kept up-to-date.
|
|
181
177
|
|
|
182
|
-
|
|
183
|
-
|
|
178
|
+
Client libraries targeting some end-of-life versions of Node.js are available, and
|
|
179
|
+
can be installed through npm [dist-tags](https://docs.npmjs.com/cli/dist-tag).
|
|
180
|
+
The dist-tags follow the naming convention `legacy-(version)`.
|
|
181
|
+
For example, `npm install @google-cloud/dlp@legacy-8` installs client libraries
|
|
182
|
+
for versions compatible with Node.js 8.
|
|
184
183
|
|
|
185
184
|
## Versioning
|
|
186
185
|
|
|
187
186
|
This library follows [Semantic Versioning](http://semver.org/).
|
|
188
187
|
|
|
189
188
|
|
|
190
|
-
|
|
191
|
-
is stable
|
|
189
|
+
|
|
190
|
+
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
|
|
192
191
|
unless absolutely necessary (e.g. because of critical security issues) or with
|
|
193
|
-
an extensive deprecation period. Issues and requests against **
|
|
192
|
+
an extensive deprecation period. Issues and requests against **stable** libraries
|
|
194
193
|
are addressed with the highest priority.
|
|
195
194
|
|
|
196
195
|
|
|
197
196
|
|
|
198
197
|
|
|
199
198
|
|
|
199
|
+
|
|
200
200
|
More Information: [Google Cloud Platform Launch Stages][launch_stages]
|
|
201
201
|
|
|
202
202
|
[launch_stages]: https://cloud.google.com/terms/launch-stages
|