Jina 3.16.1 Update

Jina is a MLOps framework that empowers anyone to build cross-modal and multi-modal applications on the cloud.

Engineering Group
Jina 3.16.1 Update
Jina 3.16.1 Update

Release Note (3.16.1)

Release time: 2023-05-23 14:59:35

This patch contains 1 refactoring, 3 bug fixes and 3 documentation improvements.

Release 💫 Patch v3.16.1 · jina-ai/jina
Release Note (3.16.1) Release time: 2023-05-23 14:59:35 This patch contains 1 refactoring, 3 bug fixes and 3 documentation improvements.⚙ RefactoringRemove aiostream dependency (#5891)Remove a…

⚙ Refactoring

Remove aiostream dependency (#5891)

Remove aiostream dependency which could be the root of improper licensing.

🐞 Bug Fixes

Fix usage of ports and protocols alias (#5885)

You can now use plural ports and protocols:

from jina import Flow

f = Flow(ports=[12345, 12346], protocols=['grpc', 'http']).add()

with f:
    f.block()

Previously, the arguments would correctly be applied to the inner Deployments.

Fix endpoint printing (#5884)

Fix endpoint printing when no ports are specified with multi-protocol Deployments:

from jina import Deployment, Executor, requests, Client

d = Deployment(protocols=['grpc', 'http'])

with d:
    pass

Before:

image

After:

image

Fix the printed links to docs and redocs pages when HTTP protocol is used in combination with other protocols.

from jina import Deployment, Executor, requests, Client

d = Deployment(protocol=['grpc', 'http'], port=[12345, 12346])

with d:
    pass

Old behavior:

image

New behavior:

image

📗 Documentation Improvements

  • Fix import in notebook causing a crash (#5888)
  • Add docs for Jina Cloud logs (#5892)
  • Fix YAML specs links (#5887)

🤘 Contributors

We would like to thank all contributors to this release:

Engineering Group

Engineering Group

We do opensource, we do neural search, we do creative AI, we do MLOps. We do we.
... and You!

... and You!

You love opensource and AI engineering. So join Jina AI today! Let's lead the future of Multimodal AI. 🚀

Table of Contents

1
Release Note (3.16.1)
2
⚙ Refactoring
3
🐞 Bug Fixes
4
📗 Documentation Improvements
5
🤘 Contributors
layout