Skip to content

Commit

Permalink
Add 1.11.0 release blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
morucci committed Jan 13, 2024
1 parent f285deb commit c14ea42
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions posts/2023-11-07-version-1.11.0-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: Monocle 1.11.0 is released
---

We are pleased to announce a new release of Monocle.

The release features:

- A support of the Proxy HTTP_PROXY and HTTPS_PROXY environments for the crawler requests.
- An improved handling of errors that are no longer fatal and they are now stored in the index.
- The last version of Elasticsearch 7.17.16.

It also fixes the UI search feature that was broken in the previous Monocle version.

See the full [changelog](https://github.com/change-metrics/monocle/blob/1.11.0/CHANGELOG.md) for
the complete list of changes.

Here are instructions to upgrade:

```Bash
cd monocle

# Stop the previous running version
docker-compose down

# Checkout the tag 1.11.0
git fetch origin
git checkout -b 1.11.0 1.11.0

# Ensure to set COMPOSE_MONOCLE_VERSION=1.11.0 in .env file
sed -i .env -e "s/^\(COMPOSE_MONOCLE_VERSION\)=.*/\1=1.11.0/"

# Fetch last images
docker-compose pull

# Spawn services
docker-compose up -d
```

0 comments on commit c14ea42

Please sign in to comment.