Skip to content

Commit

Permalink
chore(version): the next version will be 0.9.20
Browse files Browse the repository at this point in the history
build(hanxiao): fix driver dump issue
  • Loading branch information
jina-bot committed Jan 21, 2021
1 parent 65e30e1 commit a084556
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 2 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@




# Change Logs

Jina is released on every Friday evening. The PyPi package and Docker Image will be updated, the changes of the release will be tracked by this file.
Expand Down Expand Up @@ -6840,3 +6841,49 @@ Jina is released on every Friday evening. The PyPi package and Docker Image will
- [[```e098cdd7```](https://github.com/jina-ai/jina/commit/e098cdd74e4b2747ac34b74ca19c47f2032a562c)] __-__ __docs__: update TOC (*Jina Dev Bot*)
- [[```7134a435```](https://github.com/jina-ai/jina/commit/7134a435be9a63be53fb25f53e5515aabb45064b)] __-__ __version__: the next version will be 0.9.18 (*Jina Dev Bot*)

<a name=release-note-0-9-19></a>
## Release Note (`0.9.19`)

> Release time: 2021-01-21 23:29:20



🙇 We'd like to thank all contributors for this new release! In particular,
Han Xiao, Joan Fontanals, Nan Wang, Uche Okereke, cristian, Jina Dev Bot, Yongxuanzhang, 🙇


### 🆕 New Features

- [[```e5909ba5```](https://github.com/jina-ai/jina/commit/e5909ba59a7a74fe06cf5580d711d671db4e1e07)] __-__ __parser__: improve flexi parser to allow bullet list newline (#1747) (*Han Xiao*)

### 🐞 Bug fixes

- [[```65e30e1a```](https://github.com/jina-ai/jina/commit/65e30e1a82f602b6b0bffa196114215f4825b0d6)] __-__ __pods__: remove random identity assignment (#1755) (*Han Xiao*)
- [[```650f87ef```](https://github.com/jina-ai/jina/commit/650f87ef709ba7363a0a38f1cee4f207ab715f04)] __-__ __driver__: fix stateless driver dump (#1753) (*Han Xiao*)
- [[```9ae22ee9```](https://github.com/jina-ai/jina/commit/9ae22ee903f025ff9179c770f794b54c051575a6)] __-__ log level and upload path (#1744) (*Han Xiao*)
- [[```889f1137```](https://github.com/jina-ai/jina/commit/889f11370cad698a7cce10f7f8362477f1947edf)] __-__ __daemon__: fix early drop on the logstreaming (#1738) (*Han Xiao*)
- [[```d7fdc477```](https://github.com/jina-ai/jina/commit/d7fdc477db9fae6ebefb21e1c8fbd6a8f35ade21)] __-__ register class should not only depend on name (#1702) (*Joan Fontanals*)

### 🚧 Code Refactoring

- [[```ad6306a0```](https://github.com/jina-ai/jina/commit/ad6306a008245617460487e445c8341fc6aa2e8c)] __-__ deprecate batch-size (#1746) (*Joan Fontanals*)
- [[```bbf1589b```](https://github.com/jina-ai/jina/commit/bbf1589bfc06e8d6b8773f9571251e497f7f8795)] __-__ remove MinRanker (#1729) (*Joan Fontanals*)
- [[```5b86048c```](https://github.com/jina-ai/jina/commit/5b86048ca3e236f4d8633fcb36f2226c7866b3a3)] __-__ deprecate client and flow input aliases (#1730) (*Joan Fontanals*)

### 📗 Documentation

- [[```de574250```](https://github.com/jina-ai/jina/commit/de574250a402d5f25fbdd1e7612b11815a4850cd)] __-__ fix a bug in code blocks on README (#1748) (*Nan Wang*)
- [[```eb2e2f39```](https://github.com/jina-ai/jina/commit/eb2e2f399ee0ffdd63e7ce1934fbb79c0accf816)] __-__ add direct links to flow index (#1740) (*Uche Okereke*)
- [[```e052ae78```](https://github.com/jina-ai/jina/commit/e052ae78bcd715a0722564506a7dbe61223720e5)] __-__ some cleanup (#1745) (*cristian*)
- [[```e5e3db84```](https://github.com/jina-ai/jina/commit/e5e3db84fe206d8a04d8fda393d4f0836a49297e)] __-__ __flow__: add docker example for Flow API `uses` (#1741) (*Yongxuanzhang*)

### 🏁 Unit Test and CICD

- [[```43856316```](https://github.com/jina-ai/jina/commit/43856316f00d4c7d9d8046e2c77808ba6600dee9)] __-__ skip flaky test (#1734) (*Joan Fontanals*)

### 🍹 Other Improvements

- [[```78e27df7```](https://github.com/jina-ai/jina/commit/78e27df72620535e34cd45d8db0ac3b24c6bf539)] __-__ __docs__: update TOC (*Jina Dev Bot*)
- [[```fe5df4c0```](https://github.com/jina-ai/jina/commit/fe5df4c03cc0f0db01c97c0b86e08646968df6ab)] __-__ __contributor__: update contributors (*Jina Dev Bot*)
- [[```9ff1b8d2```](https://github.com/jina-ai/jina/commit/9ff1b8d2437d4d7ea438eb24c5650ae0c98c15c3)] __-__ __version__: the next version will be 0.9.19 (*Jina Dev Bot*)

1 change: 1 addition & 0 deletions docs/versions
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@
0.9.16
0.9.17
0.9.18
0.9.19
2 changes: 1 addition & 1 deletion jina/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# do not change this line manually
# this is managed by git tag and updated on every release
# NOTE: this represents the NEXT release version
__version__ = '0.9.19'
__version__ = '0.9.20'

# do not change this line manually
# this is managed by proto/build-proto.sh and updated on every execution
Expand Down
2 changes: 1 addition & 1 deletion jina/hub
Submodule hub updated 39 files
+17 −0 crafters/image/AlbumentationsCrafter/Dockerfile
+106 −0 crafters/image/AlbumentationsCrafter/README.md
+131 −0 crafters/image/AlbumentationsCrafter/__init__.py
+6 −0 crafters/image/AlbumentationsCrafter/config.yml
+12 −0 crafters/image/AlbumentationsCrafter/manifest.yml
+1 −0 crafters/image/AlbumentationsCrafter/requirements.txt
+0 −0 crafters/image/AlbumentationsCrafter/tests/__init__.py
+7 −0 crafters/image/AlbumentationsCrafter/tests/config.yaml
+ crafters/image/AlbumentationsCrafter/tests/rubi.png
+ crafters/image/AlbumentationsCrafter/tests/rubi_center_crop.png
+ crafters/image/AlbumentationsCrafter/tests/rubi_crop.png
+ crafters/image/AlbumentationsCrafter/tests/rubi_flip.png
+ crafters/image/AlbumentationsCrafter/tests/rubi_resize.png
+109 −0 crafters/image/AlbumentationsCrafter/tests/test_albumentationscrafter.py
+1 −1 encoders/image/CustomImageTorchEncoder/manifest.yml
+1 −1 encoders/image/CustomImageTorchEncoder/tests/test_customimagetorchencoder.py
+1 −1 encoders/image/CustomKerasImageEncoder/manifest.yml
+1 −1 encoders/image/CustomKerasImageEncoder/tests/test_customtfkeras.py
+1 −1 encoders/image/ImageOnnxEncoder/manifest.yml
+1 −1 encoders/image/ImageOnnxEncoder/tests/test_onnx_encoder.py
+1 −1 encoders/nlp/VSETextEncoder/Dockerfile
+1 −1 encoders/nlp/VSETextEncoder/manifest.yml
+1 −1 indexers/keyvalue/RedisDBIndexer/Dockerfile
+14 −7 indexers/keyvalue/RedisDBIndexer/__init__.py
+1 −1 indexers/keyvalue/RedisDBIndexer/manifest.yml
+17 −32 indexers/keyvalue/RedisDBIndexer/tests/test_redisdbindexer.py
+0 −10 rankers/MaxRanker/Dockerfile
+0 −3 rankers/MaxRanker/README.md
+0 −19 rankers/MaxRanker/__init__.py
+0 −7 rankers/MaxRanker/config.yml
+0 −14 rankers/MaxRanker/manifest.yml
+0 −57 rankers/MaxRanker/tests/test_maxranker.py
+0 −10 rankers/MinRanker/Dockerfile
+0 −4 rankers/MinRanker/README.md
+0 −19 rankers/MinRanker/__init__.py
+0 −7 rankers/MinRanker/config.yml
+0 −14 rankers/MinRanker/manifest.yml
+0 −0 rankers/MinRanker/tests/__init__.py
+0 −57 rankers/MinRanker/tests/test_minranker.py

0 comments on commit a084556

Please sign in to comment.