Releases: googleapis/nodejs-video-intelligence
@google-cloud/video-intelligence v1.0.0
Features
General Availability
The video intelligence backend API and client library are both now available at the general availability quality level. This means they are stable; the code and API surface will not change in backwards-incompatible ways unless absolutely necessary (e.g. because of critical security issues) or with an extensive deprecation period. (#9)
One exception to this: We will remove beta endpoints (as a semver-minor update) at whatever point the underlying endpoints go away. Currently, v1beta1
is scheduled to be removed in March 2018.
v1
endpoint
As the underlying video intelligence API is now available in GA, all requests by default will be made against the stable v1
endpoint. This endpoint is equivalent to v1beta2
, so if you did not pin to a specific API version, your code will still work, but begin hitting the GA endpoint. If you pinned to the v1beta2
endpoint, it is safe and recommended to update this to v1
.
Refer to the nodejs-video-intelligence API reference documentation for details.
@google-cloud/video-intelligence v0.4.0
⚠️ Breaking Changes!
ES6 client classes
The syntax for creating a client has changed. VideoIntelligenceServiceClient
is now an ES6 class, and we expose it directly.
You now create a client with:
const video = require('@google-cloud/video-intelligence');
let client = new video.VideoIntelligenceServiceClient();
If you wish to explicitly version pin to v1beta1
or v1beta2
; you can still do so:
const video = require('@google-cloud/video-intelligence').v1beta2;
let client = new video.VideoIntelligenceServiceClient();
Features
Runnable samples
There are now runnable samples in the samples/
directory. These samples demonstrate the use of this API and offer an additional resource for getting started. These also power the readme, and are automatically tested to ensure that they are up-to-date and correct.
Implementation Details
- Change to a new linter (ESLint) and code style formatter (prettify).
- Update docs to use JSDoc 3.
- Migrate to the
googleapis/nodejs-video-intelligence
repository.
Refer to the nodejs-video-intelligence API reference documentation for details.
@google-cloud/video-intelligence v0.3.2
@google-cloud/video-intelligence v0.3.1
@google-cloud/video-intelligence v0.3.0
Features
- The video intelligence API is now supported at the beta quality level.
- Added the
v1beta2
backend endpoint. The backend has changed significantly as a result of user feedback and API reviews; the newv1beta2
surface is being prepared for general availability. (#2613)
Dependencies
- Removed the dependency on
google-proto-files
; the protos are published directly as part of this module.