Skip to content

Commit 00b878c

Browse files
committed
Add 1.11.0 release blog post
1 parent f285deb commit 00b878c

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Monocle 1.11.0 is released
3+
---
4+
5+
We are pleased to announce a new release of Monocle.
6+
7+
The release features:
8+
9+
- A support of the Proxy HTTP_PROXY and HTTPS_PROXY environments for the crawler requests.
10+
- An improved handling of errors that are no longer fatal and they are now stored in the index.
11+
- The last version of Elasticsearch 7.17.16.
12+
13+
It also fixes the UI search feature that was broken in the previous Monocle version.
14+
15+
See the full [changelog](https://github.com/change-metrics/monocle/blob/1.11.0/CHANGELOG.md) for
16+
the complete list of changes.
17+
18+
Here are instructions to upgrade:
19+
20+
```Bash
21+
cd monocle
22+
23+
# Stop the previous running version
24+
docker-compose down
25+
26+
# Checkout the tag 1.10.0
27+
git fetch origin
28+
git checkout -b 1.11.0 1.11.0
29+
30+
# Ensure to set COMPOSE_MONOCLE_VERSION=1.11.0 in .env file
31+
sed -i .env -e "s/^\(COMPOSE_MONOCLE_VERSION\)=.*/\1=1.11.0/"
32+
33+
# Fetch last images
34+
docker-compose pull
35+
36+
# Spawn services
37+
docker-compose up -d
38+
```

0 commit comments

Comments
 (0)