diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 4cf1def259..86a57cf995 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,7 +1,17 @@ = dfx changelog :doctype: book -= UNRELEASED += 0.11.2 + +== DFX + +=== fix: disable asset canister redirection of all HTTP traffic from `+.raw.ic0.app+` to `+.ic0.app+` + +=== fix: disable asset canister's ETag HTTP headers + +The feature is not yet implemented on `+icx-proxy+`-level, and is causing 500 HTTP response for some type of assets every second request. + += 0.11.1 == DFX diff --git a/Cargo.lock b/Cargo.lock index e48ce8ed03..9c06a0393b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1065,7 +1065,7 @@ dependencies = [ [[package]] name = "dfx" -version = "0.11.2-beta.0" +version = "0.11.2" dependencies = [ "actix", "actix-cors", diff --git a/public/manifest.json b/public/manifest.json index d6d84ce56f..f885292d32 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -63,6 +63,7 @@ "0.11.1-beta.2", "0.11.1-beta.3", "0.11.1", - "0.11.2-beta.0" + "0.11.2-beta.0", + "0.11.2" ] } diff --git a/src/dfx/Cargo.toml b/src/dfx/Cargo.toml index fedc394470..93f2902646 100644 --- a/src/dfx/Cargo.toml +++ b/src/dfx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dfx" -version = "0.11.2-beta.0" +version = "0.11.2" authors = ["DFINITY Team"] edition = "2018" build = "assets/build.rs"