From 742ad6db7240157d7e3a7a779628632103639d15 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Mon, 15 Jan 2018 12:34:35 +0200 Subject: [PATCH] upstream update for crypto/acme relative to iris.AutoTLS Former-commit-id: 20d22c163f8063673536127caec4eecfb3561226 --- Gopkg.lock | 2 +- HISTORY.md | 1 + HISTORY_GR.md | 1 + _examples/experimental-handlers/casbin/middleware/main_test.go | 2 +- .../file-server/single-page-application/basic/main_test.go | 1 - 5 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gopkg.lock b/Gopkg.lock index 1f27500d..c77e0692 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -239,7 +239,7 @@ branch = "master" name = "golang.org/x/crypto" packages = ["acme","acme/autocert"] - revision = "81e90905daefcd6fd217b62423c0908922eadb30" + revision = "13931e22f9e72ea58bb73048bc752b48c6d4d4ac" [[projects]] branch = "master" diff --git a/HISTORY.md b/HISTORY.md index 397f433d..581175ef 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -25,6 +25,7 @@ Not any serious problems were found to be resolved here but one, the first one w - merge PR https://github.com/kataras/iris/pull/862 - do not allow concurrent access to the `ExecuteWriter -> Load` when `view#Engine##Reload` was true, as requested at https://github.com/kataras/iris/issues/872 - badge for open-source projects powered by Iris, learn how to add that badge to your open-source project at [FAQ.md](FAQ.md) file +- upstream update for `golang/crypto` to apply the fix about the [tls-sni challenge disabled](https://letsencrypt.status.io/pages/incident/55957a99e800baa4470002da/5a55777ed9a9c1024c00b241) https://github.com/golang/crypto/commit/13931e22f9e72ea58bb73048bc752b48c6d4d4ac (**relative to iris.AutoTLS**) ## New Backers diff --git a/HISTORY_GR.md b/HISTORY_GR.md index a50e173f..3da2cb89 100644 --- a/HISTORY_GR.md +++ b/HISTORY_GR.md @@ -22,6 +22,7 @@ - διόρθωση του cache handler που δεν δούλευε όπως έπρεπε όταν γινόταν εγγραφή σε πάνω από ένα handler, παλιότερα ήταν ένα cache handler προς ένα route handler, τώρα το ίδιο handler μπορεί να καταχωρηθεί σε όσα route handlers θέλετε https://github.com/kataras/iris/pull/852, όπως είχε αναφερθεί στο https://github.com/kataras/iris/issues/850 - συγχώνευση PR https://github.com/kataras/iris/pull/862 - απαγόρευση της ταυτόχρονης προσπέλασης του `ExecuteWriter -> Load` όταν το `view#Engine##Reload` είναι true, όπως είχε ζητηθεί στο https://github.com/kataras/iris/issues/872 +- αναβάθμιση του ενσωματωμένου πακέτου `golang/crypto` για να εφαρμοστεί η επιδιόρθωση για το [tls-sni challenge disabled](https://letsencrypt.status.io/pages/incident/55957a99e800baa4470002da/5a55777ed9a9c1024c00b241) https://github.com/golang/crypto/commit/13931e22f9e72ea58bb73048bc752b48c6d4d4ac (**σχετικό με το iris.AutoTLS**) ## Νέοι Υποστηρικτές diff --git a/_examples/experimental-handlers/casbin/middleware/main_test.go b/_examples/experimental-handlers/casbin/middleware/main_test.go index cf94014a..275f2955 100644 --- a/_examples/experimental-handlers/casbin/middleware/main_test.go +++ b/_examples/experimental-handlers/casbin/middleware/main_test.go @@ -9,7 +9,7 @@ import ( func TestCasbinMiddleware(t *testing.T) { app := newApp() - e := httptest.New(t, app, httptest.Debug(true)) + e := httptest.New(t, app, httptest.Debug(false)) type ttcasbin struct { username string diff --git a/_examples/file-server/single-page-application/basic/main_test.go b/_examples/file-server/single-page-application/basic/main_test.go index 922356a0..6e7b3410 100644 --- a/_examples/file-server/single-page-application/basic/main_test.go +++ b/_examples/file-server/single-page-application/basic/main_test.go @@ -3,7 +3,6 @@ package main import ( "io/ioutil" "path/filepath" - "runtime" "strings" "testing"