Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

@google-cloud/vision v0.14.0

Compare
Choose a tag to compare
@lukesneeringer lukesneeringer released this 05 Dec 21:46

release level

This should be considered a subsequent and hopefully final release candidate. It has no breaking changes; we just simply want to give the API introduced in 0.13.0 slightly more bake time before declaring GA.

Features

Beta Endpoint

This release adds the v1p1beta1 endpoint. This is a new backend endpoint which adds features which the backend API considers to be in public beta. These features are being prepared for general release and should be mostly stable; however, changes may occur if necessary.

By default, this client library will use the v1 (general availability) endpoint, rather than silently opt you into using beta features. If you wish to use v1p1beta1, you can opt into it explicitly when requiring the library:

const vision = require('@google-cloud/vision').v1p1beta1;

The v1p1beta1 endpoint is a superset of v1; it also contains all v1 features. The goal is that you can change nothing but your require statement, and when these features go GA, you only have to remove the version designation.