Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit b9e310b

Browse files
committed
Merge branch 'master' into refactor/hashdb-generic
* master: Only return error log for rustls (#9025) Update Changelogs for 1.10.8 and 1.11.5 (#9012)
2 parents afbf3a9 + 202c54d commit b9e310b

File tree

3 files changed

+56
-1
lines changed

3 files changed

+56
-1
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## Parity [v1.11.5](https://github.com/paritytech/parity/releases/tag/v1.11.5) (2018-06-29)
2+
3+
Parity 1.11.5 is a bug-fix release to improve performance and stability.
4+
5+
The full list of included changes:
6+
7+
- Bump beta to 1.11.5 / Backports ([#8955](https://github.com/paritytech/parity/pull/8955))
8+
- Parity-version: bump beta to 1.11.5
9+
- Update ropsten.json ([#8926](https://github.com/paritytech/parity/pull/8926))
10+
- Update hardcoded headers ([#8925](https://github.com/paritytech/parity/pull/8925))
11+
- Update kovan.json
12+
- Update Kovan to block 7693549
13+
- Update foundation.json
14+
- Updated to block 5812225
15+
- Update ropsten.json
16+
- Update to 3465217
17+
- Scripts: minor improvements ([#8930](https://github.com/paritytech/parity/pull/8930))
18+
- CI: enable 'latest' docker tag on master pipeline
19+
- CI: mark both beta and stable as stable snap.
20+
- CI: sign all windows binaries
21+
- Scripts: fix docker build tag on latest using master ([#8952](https://github.com/paritytech/parity/pull/8952))
22+
- Rpc: cap gas limit of local calls ([#8943](https://github.com/paritytech/parity/pull/8943))
23+
- Snap: downgrade rust to revision 1.26.2, ref snapcraft/+bug/1778530 ([#8984](https://github.com/paritytech/parity/pull/8984))
24+
- Snap: downgrade rust to revision 1.26.2, ref snapcraft/+bug/1778530
25+
- Snap: use plugin rust
26+
- Fix deadlock in blockchain. ([#8977](https://github.com/paritytech/parity/pull/8977))
27+
- Remove js-glue from workspace
28+
- This fixes test error on Rust 1.27 but also prevents js-glue from building itself.
29+
- Builtin dapp users can still use js-glue from crates.io.
30+
- Fix Android build on beta ([#9003](https://github.com/paritytech/parity/pull/9003))
31+
132
## Parity [v1.11.4](https://github.com/paritytech/parity/releases/tag/v1.11.4) (2018-06-20)
233

334
Parity 1.11.4 is a bug-fix release to improve performance and stability.

docs/CHANGELOG-1.10.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## Parity [v1.10.8](https://github.com/paritytech/parity/releases/tag/v1.10.8) (2018-06-29)
2+
3+
Parity 1.10.8 is a bug-fix release to improve performance and stability.
4+
5+
The full list of included changes:
6+
7+
- Backports ([#8986](https://github.com/paritytech/parity/pull/8986))
8+
- Snap: downgrade rust to revision 1.26.2, ref snapcraft/+bug/1778530 ([#8984](https://github.com/paritytech/parity/pull/8984))
9+
- Snap: downgrade rust to revision 1.26.2, ref snapcraft/+bug/1778530
10+
- Snap: use plugin rust
11+
- Fix deadlock in blockchain. ([#8977](https://github.com/paritytech/parity/pull/8977))
12+
- Remove js-glue from workspace
13+
- Bump stable to 1.10.8 ([#8951](https://github.com/paritytech/parity/pull/8951))
14+
- Parity-version: bump stable to 1.10.8
15+
- Update ropsten.json ([#8926](https://github.com/paritytech/parity/pull/8926))
16+
- Scripts: minor improvements ([#8930](https://github.com/paritytech/parity/pull/8930))
17+
- CI: enable 'latest' docker tag on master pipeline
18+
- CI: mark both beta and stable as stable snap.
19+
- CI: sign all windows binaries
20+
- Scripts: remove whisper target not available in stable
21+
- Scripts: fix gitlab strip binaries
22+
- Scripts: fix docker build tag on latest using master ([#8952](https://github.com/paritytech/parity/pull/8952))
23+
- Rpc: cap gas limit of local calls ([#8943](https://github.com/paritytech/parity/pull/8943))
24+
125
## Parity [v1.10.7](https://github.com/paritytech/parity/releases/tag/v1.10.7) (2018-06-20)
226

327
Parity 1.10.7 is a bug-fix release to improve performance and stability.

logger/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ pub fn setup_log(config: &Config) -> Result<Arc<RotatingLogger>, String> {
7171
builder.filter(Some("ws"), LogLevelFilter::Warn);
7272
builder.filter(Some("reqwest"), LogLevelFilter::Warn);
7373
builder.filter(Some("hyper"), LogLevelFilter::Warn);
74-
builder.filter(Some("rustls"), LogLevelFilter::Warn);
74+
builder.filter(Some("rustls"), LogLevelFilter::Error);
7575
// Enable info for others.
7676
builder.filter(None, LogLevelFilter::Info);
7777

0 commit comments

Comments
 (0)