Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.6

* Updated the secure networking code to the SDKs version 1.15 SecurityContext api

# 0.9.5+1

* Updated the layout of package contents.
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: http_server
version: 0.9.6-dev
version: 0.9.6
author: Dart Team <misc@dartlang.org>
description: Library of HTTP server classes.
homepage: https://www.github.com/dart-lang/http_server
environment:
sdk: '>=1.0.0 <2.0.0'
sdk: '>=1.15.0 <2.0.0'
dependencies:
mime: '>=0.9.0 <0.10.0'
path: '>=0.9.0 <2.0.0'
Expand Down
2 changes: 1 addition & 1 deletion test/utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -310,5 +310,5 @@ void setupSecure() {
password: 'dartdart');

clientContext = new SecurityContext()
..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem'));
..setTrustedCertificates(localFile('certificates/trusted_certs.pem'));
}