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

Commit 7d98c80

Browse files
authored
Release v0.24.0 (#298)
1 parent 4dfb0a6 commit 7d98c80

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,52 @@
44

55
[1]: https://www.npmjs.com/package/@google-cloud/nodejs-vision?activeTab=versions
66

7+
## v0.24.0
8+
9+
12-19-2018 13:36 PST
10+
11+
### Implementation Changes
12+
**This release contains breaking change**
13+
- BREAKING: rename method imagePath => referenceImagePath ([#296](https://github.com/googleapis/nodejs-vision/pull/296))
14+
The method `ProductSearchClient.imagePath` was renamed `referenceImagePath`:
15+
```
16+
// old code
17+
const formattedName = client.imagePath(...);
18+
19+
// new code
20+
const formattedName = client.referenceImagePath(...);
21+
```
22+
- fix: Param "scoreThreshold" should be "score_threshold" ([#234](https://github.com/googleapis/nodejs-vision/pull/234))
23+
24+
### New Features
25+
- ProductSearch GA ([#280](https://github.com/googleapis/nodejs-vision/pull/280))
26+
27+
### Dependencies
28+
- refactor: remove unused deps ([#261](https://github.com/googleapis/nodejs-vision/pull/261))
29+
- fix(deps): update dependency google-gax to ^0.22.0 ([#265](https://github.com/googleapis/nodejs-vision/pull/265))
30+
- chore(deps): update dependency @google-cloud/nodejs-repo-tools to v3 ([#263](https://github.com/googleapis/nodejs-vision/pull/263))
31+
- fix(deps): update dependency @google-cloud/vision to ^0.23.0 ([#260](https://github.com/googleapis/nodejs-vision/pull/260))
32+
33+
### Documentation
34+
- docs: fix productSearch example ([#285](https://github.com/googleapis/nodejs-vision/pull/285))
35+
- docs: update readme badges ([#283](https://github.com/googleapis/nodejs-vision/pull/283))
36+
- docs(samples): updated samples code to use async/await and tests to use mocha ([#241](https://github.com/googleapis/nodejs-vision/pull/241))
37+
38+
### Internal / Testing Changes
39+
- chore: modernize the samples and sample tests ([#297](https://github.com/googleapis/nodejs-vision/pull/297))
40+
- chore(build): inject yoshi automation key ([#294](https://github.com/googleapis/nodejs-vision/pull/294))
41+
- chore: update nyc and eslint configs ([#293](https://github.com/googleapis/nodejs-vision/pull/293))
42+
- chore: fix publish.sh permission +x ([#292](https://github.com/googleapis/nodejs-vision/pull/292))
43+
- fix(build): fix Kokoro release script ([#291](https://github.com/googleapis/nodejs-vision/pull/291))
44+
- build: add Kokoro configs for autorelease ([#290](https://github.com/googleapis/nodejs-vision/pull/290))
45+
- chore: always nyc report before calling codecov ([#288](https://github.com/googleapis/nodejs-vision/pull/288))
46+
- chore: nyc ignore build/test by default ([#287](https://github.com/googleapis/nodejs-vision/pull/287))
47+
- chore: update license file ([#284](https://github.com/googleapis/nodejs-vision/pull/284))
48+
- fix(build): fix system key decryption ([#282](https://github.com/googleapis/nodejs-vision/pull/282))
49+
- test: make product search tests run ([#269](https://github.com/googleapis/nodejs-vision/pull/269))
50+
- chore: update eslintignore config ([#264](https://github.com/googleapis/nodejs-vision/pull/264))
51+
- chore: drop contributors from multiple places ([#262](https://github.com/googleapis/nodejs-vision/pull/262))
52+
753
## v0.23.0
854

955
### New Features

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@google-cloud/vision",
33
"description": "Google Cloud Vision API client for Node.js",
4-
"version": "0.23.0",
4+
"version": "0.24.0",
55
"license": "Apache-2.0",
66
"author": "Google Inc",
77
"engines": {

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"@google-cloud/automl": "^0.1.3",
17-
"@google-cloud/vision": "^0.23.0",
17+
"@google-cloud/vision": "^0.24.0",
1818
"mathjs": "^5.0.4",
1919
"natural": "^0.6.1",
2020
"redis": "^2.8.0",

0 commit comments

Comments
 (0)