Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
fill the changelog for v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dnesteryuk committed Apr 23, 2018
1 parent ccddb94 commit 5b5b2ae
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.4.1 (23 April 2018)

### Fixed

- The client only sends paths of pages to the engine. For example, `https://example.org/blog` is a URL of the current page, in this case only `/blog` gets sent. The path is used to precache a page. A bug in code cutting off the origin produced broken paths. For example, if a URL was like this `https://example.org/bar/foo/main.html`, only `/main.html` would've been sent to the engine. It leaded to precaching pages which didn't exist. Now the client takes paths as they are ([sirko-io/client#33](https://github.com/sirko-io/client/issues/33)).
- Some browsers embed internal assets (for example, `chrome-extension://bmdblncegkenkacieihfhpjfppoconhi/scripts/in-page-script.js`) into pages. URLs of those assets were gathered by the client and later there was an an attempt to precache them. Apparently, they cannot be precached, thus, browsers threw errors. Now the client only gathers URLs which lead to the valid HTTP protocol ([sirko-io/client#30](https://github.com/sirko-io/client/issues/30)).

## v0.4.0 (18 March 2018)

### Changed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ There are at least 3 ways to install the engine. The easiest one is to install i
1. Download a config file:

```
$ wget https://raw.githubusercontent.com/sirko-io/engine/v0.4.0/config/sirko.conf
$ wget https://raw.githubusercontent.com/sirko-io/engine/v0.4.1/config/sirko.conf
```

2. Define your settings in the config file:
Expand Down Expand Up @@ -85,7 +85,7 @@ There are at least 3 ways to install the engine. The easiest one is to install i
1. Download a config file:

```
$ wget https://raw.githubusercontent.com/sirko-io/engine/v0.4.0/config/sirko.conf
$ wget https://raw.githubusercontent.com/sirko-io/engine/v0.4.1/config/sirko.conf
```

2. Define your settings in the config file:
Expand Down Expand Up @@ -153,7 +153,7 @@ The instruction supposes that you have a ubuntu user, please, don't forget to re
1. Download the latest release:

```
$ wget https://github.com/sirko-io/engine/releases/download/v0.4.0/sirko.tar.gz
$ wget https://github.com/sirko-io/engine/releases/download/v0.4.1/sirko.tar.gz
```

2. Unpack the archive:
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Sirko.Mixfile do
use Mix.Project

@version "0.4.0"
@version "0.4.1"

def project do
[
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"dependencies": {
"sirko": "0.4.0"
"sirko": "0.4.1"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 5b5b2ae

Please sign in to comment.