Releases

Announcing Vendure v0.11.0

June 09, 2023

Michael Bromley
Michael Bromley
We’re very excited to announce the release of version 0.11.0 of Vendure! This release includes a complete re-write of the Vendure job queue system, upgrades the underlying Nest framework to v7, and much more.

New Job Queue

A job queue allows you to defer certain tasks to be run later, outside the request-response cycle. One example is updating the search index - you don't want the Admin UI to hang while you wait for 10,000 products to be re-indexed. A better way is to add the "reindex" task to a queue, and return the response immediately.

Prior versions of Vendure used a queue-like mechanism that ran purely in-memory and was severely limited.

Vendure v0.11.0 introduces a powerful new job queue which allows multiple queues to be defined, each with their own concurrency controls and the ability to retry tasks in the case of failure.

The job queue is backed by a configurble storage strategy which allows you to persist your jobs using the storage technology of your choice: relational database, Redis, or anything else. This means that even if your Vendure server stops for any reason, any pending jobs will still be processed as soon as the server starts up again.

One side-benefit of this new job queue system is that, assuming a shared storage strategy is used (e.g. the [SqlJobQueueStrategy]({{< relref "sql-job-queue-strategy" >}})), this will allow multiple instances of Vendure to share a single job queue. This is a key part of an on-going effort to adapt Vendure for cloud / multi-instance deployments by making the server as stateless as possible.

See our new documentation: The Vendure Job Queue

Nestjs v7

Vendure is built on top of the Nest framework, which recently released a new major version 7. This Vendure release updates the underlying Nest dependency to v7, allowing Vendure developers to take advantage of the latest Nest features and bugfixes.

Other notable improvements

  • Assets can now be deleted via the Admin UI & GraphQL Admin API.

  • Several bug fixes relating to using languages other than English as the server default.

  • The Vendure core and all packages have been updated to TypeScript 3.8.5.

  • The @vendure/admin-ui package has been upgraded to Angular v9.1.0. If you are building custom Admin UI extensions, you should see some good performance improvements.

All changes in the Vendure 0.11.0 Changelog

Vendure
Get started

Create your first commerce experience with Vendure in less than 2 minutes

Vendure is a registered trademark. Our trademark policy ensures that our brand and products are protected. Feel free to reach out if you have any questions about our trademarks.

Newsletter

Get the latest product news and announcements delivered directly to your inbox.

© Copyright 2022 - 2024, Vendure GmbH. All rights reserved.